In metadata:
[mono.git] / mono / metadata / ChangeLog
1 2008-05-03  Robert Jordan  <robertj@gmx.net>
2
3         * image.c, metadata-internals.h: add thunk_invoke_cache.
4
5         * marshal.c, marshal.h: implement
6         mono_marshal_get_thunk_invoke_wrapper ().
7
8         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
9
10         Code is contributed under MIT/X11 license.
11
12 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
13
14         * verify.c (do_leave): Empty the stack.
15
16 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
17
18         * class.c (mono_class_is_assignable_from): Variance
19         doesn't work between reference and value types. For example,
20         given type C<T+>, C<int32> is not assignable to C<object>.
21         Break the argument checking loop on first error. 
22
23 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
24
25         * icall.c : base64_to_byte_array() needs some more strict
26           check for sequence of '=' characters. Patch by Santa
27           Marta (http://deee.g.hatena.ne.jp/santamarta).
28
29           Contributed under MIT/X11 license.
30           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
31
32 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
33
34         * domain.c: Disable LoadLibrary support to fix Win32 build.
35
36         Code is contributed under MIT/X11 license.
37
38 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
39
40         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
41         to help with cache behaviour.
42
43 2008-05-01  Miguel de Icaza  <miguel@novell.com>
44
45         * appdomain.c (mono_domain_from_appdomain): Add new accessor
46         method. 
47
48 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
49
50         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
51
52 2008-05-01  Dick Porter  <dick@ximian.com>
53
54         * process.c (process_get_fileversion): Only pass 16 bits of
55         language ID to VerLanguageName.  Fixes bug 381204.
56
57 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
58
59         * verify.c (mono_method_verify): Fix the comparison
60         operator for code bounds check.
61
62 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
63
64         * verify.c (mono_method_verify): Check the bounds of
65         all access of the code array.
66
67 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
68
69         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
70
71 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
72
73         * image.c (mono_image_strong_name_position): Fix return value when the rva is
74         not valid.
75
76 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
77
78         * loader.c (mono_get_method_from_token, mono_method_signature): Add
79         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
80         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
81         fixup main EXE images when using mono.exe for mixed-mode assembly support.
82         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
83         mono_runtime_load.
84         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
85         runtime initialization from metadata.
86         * assembly.c: Remove obsolete ceGetModuleFileNameA.
87         (mono_set_rootdir): Use mono_get_module_file_name.
88         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
89         handles.
90         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
91         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
92         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
93         MonoCLIImageInfo. Add support for module handles.
94         (load_cli_header): Update mono_cli_rva_image_map signature.
95         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
96         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
97         (mono_image_rva_map): Add support for module handles.
98         (mono_image_ensure_section_idx): Add support for module handles.
99         (mono_image_close): Add support for module handles.
100         (do_load_header): Add support for module handles.
101         (mono_image_open_from_module_handle): New function for internal use.
102         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
103         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
104         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
105         handles.
106         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
107         * image.h: Add mono_image_fixup_vtable.
108         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
109         support.
110         * coree.h: New file.
111         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
112         unsupported native code.
113         (mono_marshal_set_callconv_from_modopt): New function splitted from
114         mono_marshal_get_managed_wrapper.
115         (mono_marshal_get_managed_wrapper): Use
116         mono_marshal_set_callconv_from_modopt.
117         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
118         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
119         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
120         that results in a deadlock when the runtime is loaded in _CorDllMain.
121         * Makefile.am: Add coree.c and coree.h.
122
123         Contributed under MIT/X11 license.
124
125 2008-04-28  Mark Probst  <mark.probst@gmail.com>
126
127         * generic-sharing.c: Search for type arguments in array element
128         types as well.
129
130 2008-04-28  Mark Probst  <mark.probst@gmail.com>
131
132         * class-internals.h, generic-sharing.c: New, small runtime generic context.
133
134         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
135
136         * object.c: Don't setup the RGCTX when the vtable is created,
137         because we're setting it up lazily now.
138
139 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
140
141         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
142         64 bit support.
143
144 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
145
146         * verify.c (verify_class_for_overlapping_reference_fields): 
147         If class is under fulltrust allow reference types to overllap
148         if they have the same RVA.
149
150 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
151
152         * pedump.c: Added new flag valid-only, that makes the verifier
153         behaves just like --security=validil. It won't fail type load
154         due to unverifiable restrictions.
155
156 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
157
158         * class-internals.h (struct MonoMethod): Added a verification_success
159         field to cache verifier executions. Reduced MonoMethod:slot size by
160         one bit.
161
162 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
163
164         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
165         instead of a 'vt' argument to save an indirection and to allow these to be used
166         for valuetypes.
167         (scan_vtype): New helper function to scan an area using a gc descriptor.
168         (mono_gc_wbarrier_value_copy): Implement this.
169         (handle_remset): Add support for REMSET_VTYPE.
170         (find_in_remset_loc): Ditto.
171         (mono_gc_base_init): Allow some debugging options to be controlled through the
172         use of the MONO_GC_DEBUG env variable.
173         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
174         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
175
176 2008-04-23  Martin Baulig  <martin@ximian.com>
177
178         * domain.c (mono_domain_create): Move the call to
179         mono_debug_domain_create() down, after allocating the domain id.
180
181 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
182
183         verify.c (verify_class_for_overlapping_reference_fields): Skip
184         static fields while verifying for overlapping fields as they
185         don't matter at all.
186
187 2008-04-23  Marek Habersack  <mhabersack@novell.com>
188
189         * domain-internals.h: added a declaration of
190         mono_make_shadow_copy.
191
192         * assembly.c (mono_assembly_open_full): shadow copying of
193         assemblies moved to here, so that all the assemblies within the
194         application domain's private binary directories can be
195         processed. Fixes bug #380546
196
197         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
198         mono_make_shadow_copy and made non-static. The decision whether
199         to shadow-copy an assembly is made based on its location - it's
200         copied if it's in one of the private application domain binary
201         directories and its different to the target file in the shadow
202         directory. Fixes bug #380546
203
204 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
205
206         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
207
208         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
209         types.
210
211         * reflection.c (mono_image_create_token): Handle 
212         Method/ConstructorOnTypeBuilderInst.
213         (resolve_object): Ditto.
214         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
215         so it can be called from resolve_object. Also handle the case when the inflated
216         class already has its methods setup.
217
218 2008-04-21  Martin Baulig  <martin@ximian.com>
219
220         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
221
222 2008-04-20  Geoff Norton  <gnorton@novell.com>
223
224         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
225         pointer dereference.
226
227 2008-04-15  Marek Habersack  <mhabersack@novell.com>
228
229         * appdomain.c (try_load_from): if IOMAP is in effect, call the
230         portability API to look up the assembly file. Fixes behavior in
231         situations when the application has a bin/ directory, but the
232         assembly search patch refers to Bin/ (and thus the requested file
233         name is Bin/SomeLibrary.dll). Fixes bug #379888
234
235 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
236
237         verify.c (mono_type_is_generic_argument): Extracted this check
238         from a dozen places to here.
239
240         verify.c: Fixed all issues related to boxing generic arguments
241         and their constraints.
242
243 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
244
245         verify.c (mono_class_interface_implements_interface): Fix win32 build.
246
247 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
248
249         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
250         isn't finished yet. Fixes #363447.
251
252 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
253
254         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
255         Fixes #346419.
256
257 2008-04-13  Jb Evain  <jbevain@novell.com>
258
259         * domain.c: update the 2.1 profile versions.
260         Merged from the Moonlight 2 branch.
261
262 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
263
264         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
265         mscorlibs for the non-refonly case as well.
266
267         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
268         in mono_assembly_load_from_full (). Fixes #378924.
269
270 2008-04-11  Geoff Norton  <gnorton@novell.com>
271
272         * icall.c: The global extern environ doesn't exist on Mac.  We
273         need to call NSGetEnviron instead.
274
275 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
276
277         verify.c: Add generic method constraint verification.
278
279 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
280
281         class.c (mono_class_inflate_generic_method_full): Add a long
282         explanation to the is_mb_open hack. Remove the FIXME.
283
284 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
285
286         * verify.c (mono_method_verify): Mark all unknown opcodes
287         as invalid. Mark jmp as unverifiable.
288
289 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
290
291         * verify.c: Add code to do type constraint verification on class instances.
292
293         * verify.c (mono_verifier_verify_class): Use the type constraint 
294         verification code.
295
296 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
297
298         * class.c (mono_class_get_field_default_value): Don't pass cindex
299         as hint to mono_metadata_get_constant_index. The local is not initialized
300         and should contain garbage most of the time. This could only work
301         with a lot of luck.
302
303 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
304
305         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
306
307 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
308
309         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
310
311         * class.c (mono_class_from_generic_parameter): Save the token of the
312         generic param in MonoClass::sizes.generic_param_token.
313
314         * reflection.c (mono_custom_attrs_from_class): If the class type is
315         VAR or MVAR retrieve the attributes of the generic param.
316
317 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
318
319         * class.c (mono_class_init): Do class verification if the verifier
320         is enabled.
321
322 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
323
324         * verify-internal.h: Added mono_verifier_verify_class.
325
326         * verify.c: Added mono_verifier_verify_class. It checks for
327         classes with explicit layout that have overlapping reference fields.
328
329         * pedump.c: Init the verifier state prior to verification. Fixed
330         command line arguments.
331
332 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
333
334         * Makefile.am: Added verify-internals.h, hopefully fix the build.
335
336 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
337
338         * verify-internals.h: Fix a warning.
339
340 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
341
342         * verify-internals.h: New header with the verifier configuration
343         extracted from mini.c.
344
345         * verify.c: Implemented the new functions exported by verify-internals.h.
346
347 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
348
349         * verify.c: Add proper verification of ckfinite.
350
351 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
352
353         * verify.c (do_conversion): Improved error message to something
354         more meanfull.
355
356         * verify.c (check_is_valid_type_for_field_ops): Fix to work
357         with primitive types.
358
359 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
360
361         * verify.c: Added tail prefix checking. Marked icall
362         as unverifible.
363
364 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
365
366         * verify.c: Fix the detection of branches to the middle
367         of an instruction.
368
369 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
370
371         * verify.c: Implemented verification of volatile. and
372         unaligned. prefix. Check if a type is valid after retrieving it.
373
374 2008-04-01  Dick Porter  <dick@ximian.com>
375
376         * process.c (process_get_fileversion): If there's no string block,
377         set the file language to en_US.  Fixes the other new part of bug
378         374600.
379
380 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
381
382         * class.c: New functions mono_method_can_access_field_full and
383         mono_method_can_access_method_full. They perform type visibility
384         and type site check.
385
386         * class-internal.h: Added exported functions.
387
388         * verify.c: Use new functions to implement proper visibility checks.
389
390 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
391
392         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
393
394 2008-03-28  Dick Porter  <dick@ximian.com>
395
396         * process.c (process_get_fileversion): Use the first language ID
397         we see, rather than insisting on an invariant language.  Fixes bug
398         374600.
399
400 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
401
402         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
403         the streams to fix reading of invalid memory later.
404
405         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
406         to ease debugging.
407
408 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
409
410         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
411         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
412
413 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
414         * threads.h: Added MonoThreadManageCallback type and
415         mono_thread_set_manage_callback prototype
416         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
417         (used to store the mono_thread_manage callback).
418         * threads.c: Added mono_thread_set_manage_callback, and handle
419         "MonoThread->manage_callback" in build_wait_tids.
420
421 2008-03-26  Dick Porter  <dick@ximian.com>
422
423         * process.c (process_get_fileversion): Set FileVersionInfo strings
424         to Empty when the resource doesn't have the particular info.
425         Fixes bug 355717.
426
427 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
428
429         * verify.c (mono_method_verify): Proper prefix validation.
430
431 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
432
433         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
434         itself in a separate argument instead of throwing them. Fixes #373448.
435
436         * appdomain.c: Bump corlib version.
437
438 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
439
440         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
441
442 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
443
444         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
445         version macros.
446
447 2008-03-20  Mark Probst  <mark.probst@gmail.com>
448
449         * generic-sharing.c, class-internals.h: Code for putting
450         reflection types into the runtime generic context.
451
452 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
453
454         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
455         Fixes #340662. 
456
457
458 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
459
460         * verify.c (VerifyContext): Added instruction prefix data to the struct.
461
462         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
463
464         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
465
466         * verify.c (do_cast): Let the result value keep the boxed status.
467
468         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
469
470 2008-03-17  Jb Evain  <jbevain@novell.com>
471
472         * reflection.c: when running on a 2.0 runtime, emit
473         unconditionally the #~ header version as 2.0, and the
474         CLI header version as 2.5, for symmetry's sake with csc.
475
476 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
477
478         * class.c: Remove the unused cache_interface_offsets stuff.
479
480         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
481         profiler.c: Fix warnings.
482
483 2008-03-16  Mark Probst  <mark.probst@gmail.com>
484
485         * generic-sharing.c, class-internals.h: Support for putting
486         methods into the runtime generic context.
487
488 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
489
490         * class.c (mono_class_setup_fields): Ignore calls made to this function for
491         classes which are generic instances of not-yet finished typebuilders. Fixes
492         #351172.
493
494         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
495
496 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
497
498         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
499
500         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
501         field, replace it with a hash table in MonoDynamicImage.
502
503         * reflection.c (inflate_mono_method): Access the generic definition object from
504         image->generic_def_objects instead of imethod->reflection_info.
505
506         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
507
508         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
509         
510         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
511         function in reflection.c so it is easier to keep in sync with the dynamic image
512         creation code.
513
514         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
515         mono_image_close ().
516
517 2008-03-15  Mark Probst  <mark.probst@gmail.com>
518
519         * class.c (mono_class_generic_sharing_enabled): Disable generic
520         sharing for all architectures except AMD64 and x86 to fix build.
521
522 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
523
524         * verify.c: Use the generic definition MonoGenericContext when available.
525         Remove code for checking generics instance compatibility in favor of
526         mono_class_is_assignable_from.
527
528 2008-03-14  Mark Probst  <mark.probst@gmail.com>
529
530         * marshal.c, marshal.h, metadata-internals.h, image.c,
531         wrapper-types.h: New wrapper for invoking a shared static method
532         without having to pass the runtime generic context argument.
533
534 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
535
536         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
537
538 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
539
540         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
541         
542         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
543         create a token from a FieldOnTypeBuilderInst.
544         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
545         (resolve_object): Ditto.
546
547         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
548         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
549
550 2008-03-14  Martin Baulig  <martin@ximian.com>
551
552         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
553
554         * debug-mono-symfile.h
555         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
556         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
557
558 2008-03-10  Martin Baulig  <martin@ximian.com>
559
560         * debug-mono-symfile.h
561         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
562         `lexical_block_table_offset'.
563         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
564         `lexical_blocks'.
565         (MonoSymbolFile): Added `version'.
566
567         * mono-debug.h
568         (MonoDebugLexicalBlockEntry): Removed.
569         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
570         `lexical_blocks'.
571
572         * mono-debug.c (mono_debug_add_method): Don't compute lexical
573         blocks here; the debugger now does this internally.
574
575 2008-02-27  Martin Baulig  <martin@ximian.com>
576
577         * object.c (mono_runtime_exec_main): Call
578         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
579         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
580
581 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
582
583         * verify.c (verify_type_compatibility_full): Allow native int to be converted
584         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
585
586 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
587
588         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
589         ldftn with a virtual method.
590
591 2008-03-13  Geoff Norton  <gnorton@novell.com>
592
593         * decimal.c:  Only include memory.h if the platform has it.
594
595 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
596
597         * assembly.c, class.c, metadata-internals.h: make sure public key
598         tokesns are compared in a case-insensitive way. Also, all
599         the lookups in the GAC use a lowercase public key token
600         (gaacutil already does the lowercasing on install). Fixes
601         bug #369541.
602
603 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
604
605         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
606         and return value.
607
608 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
609
610         * image.c: when someone loads a mscorlib from a file, return the
611         currently loaded mscorlib (fixes bug #369253).
612
613 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
614
615         * class.c: handle types with no parents by forcing them to have
616         System.Object as a parent and marking them as broken (this currently
617         allows the first part of bug #369173 to work as well, likely because
618         we don't check for typeload exceptions everywhere yet).
619
620 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
621
622         * class.c: more complete check that types belong to corlib
623         (fixes second part of bug #369173).
624
625 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
626
627         * generic-sharing.c:  Including glib.h for the MSVC builds to define
628           "inline" to "__inline" before including mono-membar.h.
629           
630         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
631           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
632           MSVC builds.
633
634         Contributed under MIT/X11 license.
635
636 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
637
638         * verify.c (do_invoke_method): Remove return type validation.
639
640         * verify.c (do_ret): Do return type validation at return site instead of
641         call site.
642
643 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
644
645         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
646
647         * verify.c: Some todos cleaned and improved a few error messages.
648
649 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
650
651         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
652
653 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
654
655         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
656         system types correctly.
657
658         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
659         function.
660
661 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
662
663         * assembly.c (build_assembly_name): Fix a warning.
664
665 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
666
667         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
668         the called function takes an object type argument. Fixes storing or
669         valuetypes across remoting as well as reducing memory usage.
670         * image.c, metadata-internals.h: remove now unused ldfld_remote and
671         stfld_remote wrapper caches.
672
673 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
674
675         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
676         is not found.
677
678         * reflection.c (mono_image_register_token): New helper function to save
679         a token->object mapping.        
680
681         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
682         managed code.
683
684         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
685         one dimension arrays. Fixes #367670.
686         (mono_reflection_get_type_internal): Ditto.
687
688 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
689
690         * marshal.c: mono_load_remote_field_new() always returns object.
691         so use the proper signature (fixes bug #366445).
692
693 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
694         
695         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
696         add an 'inline_failure' flag instead.
697
698 2008-03-04  Mark Probst  <mark.probst@gmail.com>
699
700         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
701         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
702         contains the location of "this", used for exception handling.
703
704 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
705
706         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
707         their size on all platforms for perf reasons.
708
709 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
710
711         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
712         object-internal.h
713
714         * object-internal.h: Same.
715
716 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
717
718         * reflection.h: Fix the build I just broke.
719
720 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
721
722         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
723         Test if a token is valid, this remove explicit usage of 
724         MonoDynamicImage::tokens from the verifier code.
725
726         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
727
728         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
729         instead of direct access to MonoDynamicImage::tokens.
730
731 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
732
733         * verify.c (token_bounds_check): Fix the build I just broke.
734
735 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
736
737         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
738
739         * verify.c (verifier_load_method): Fixed the errors message.
740
741         * verify.c (mono_method_verify): Fixed a debug message.
742
743 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
744
745         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
746         mono-perfcounters.h, class-internals.h: support for predefined
747         writable counters, query of categories and counters, bugfixes.
748
749 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
750
751         * verify.c (do_refanytype): Verify the refanytype opcode.
752
753         * verify.c (mono_method_verify): Use do_refanytype.
754
755 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
756
757         * verify.c (do_mkrefany): Verify the mkrefany opcode.
758
759         * verify.c (mono_method_verify): Use do_mkrefany.
760
761 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
762
763         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
764         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
765         implementation.
766
767 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
768
769         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
770         the type load exception.
771
772 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
773
774         * verify.c: Added a few FIXME for method signatures
775
776         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
777         of mono_method_get_signature and get vararg call working. Removed unused
778         checks for return value.
779
780         * verify.c (do_refanyval): Verify the refanyval opcode.
781
782         * verify.c (mono_method_verify): Implemented verification of arglist and
783         use do_refanyval.
784
785 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
786
787         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
788         vtypes to marshal.c.
789
790         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
791         it works for AOT as well.
792
793 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
794
795         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
796         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
797         the system time is adjusted.
798
799 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
800
801         * icall.c, icall-def.h: use the new time functions (fixes the
802         non-monotonic behaviour of TickCount).
803
804 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
805
806         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
807         it breaks the build.
808         
809         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
810         cattr is not finished yet.
811
812 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
813
814         * verify.c: Proper token validation for field, method and type.
815
816 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
817
818         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
819
820         * loader.c (method_from_memberref): Generate type load error instead of method missing
821         if the type is not found.
822
823 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
824
825         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
826         some of the conversions caused the generation of a marshal directive exception.
827
828 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
829
830         verify.c: Report which exception should be thrown by the JIT.
831         Added a lot of FIXME notes.
832
833 2008-02-22  Mark Probst  <mark.probst@gmail.com>
834
835         * generic-sharing.c: Runtime generic context slots are not
836         instantiated on init anymore.  Instead, provide function to do the
837         instantiating on demand.
838
839         * class-internals.h: Added vtable to runtime generic context.
840         Macros for encoding direct and indirect slot offsets in one
841         guint32.
842
843 2008-02-21  Mark Probst  <mark.probst@gmail.com>
844
845         * object.c, generic-sharing.c: Moved some generic sharing code
846         from object.c to generic-sharing.c.
847
848         * generic-sharing.c: Added support for extensible runtime generic
849         context.
850
851         * metadata-internals.h: Two new hash tables in MonoImage for
852         extensible runtime generic context support.
853
854         * domain.c: Unregister generic vtables upon domain unloading.
855
856         * image.c: Destroy new hash tables upon image unloading.
857
858         * metadata.c: Unregister generic subclasses upon image unloading.
859
860         * class-internals.h: New data structure for runtime generic
861         context template.  New fields in the runtime generic context for
862         extensible part.
863
864         * Makefile.am: Added generic-sharing.c.
865
866 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
867
868         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
869         there is a pending loader exception, raise it.
870
871         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
872         same.
873
874         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
875         same.
876
877         Fixes #363450.
878
879 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
880
881         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
882
883         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
884         
885         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
886         ref-only requests for compatibility with MS.
887
888 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
889
890         * reflection.c (mono_custom_attrs_from_method): Don't silently
891         return an empty list for generic method instances.
892         (mono_custom_attrs_from_param): Likewise.
893
894 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
895             Raja R Harinath  <harinath@hurrynot.org>
896
897         Fix #354757
898         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
899         * class.c (mono_class_inflate_generic_method_full): Initialize it
900         when a fully-open method is instantiated.
901         * metadata.c (inflated_method_equal, inflated_method_hash): Update
902         to new field.
903         * reflection.c (inflate_mono_method): Don't create a temporary context.
904
905 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
906
907         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
908         Compute correct value, to prepare for imethod->reflection_info going away.
909
910 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
911
912         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
913
914 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
915
916         * verify.c: Implement skip visibility flag.
917
918 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
919
920         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
921         which contains an extra field to tell the kind of exception that should be thrown.
922
923         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
924
925 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
926
927         * loader.c (mono_method_get_param_names): Initialize 'klass' after
928         'method' is updated.
929
930 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
931
932         * class.c (mono_class_layout_fields): Set class->min_align for classes using
933         explicit layout as well. Fixes #360375.
934
935 2008-02-11  Geoff Norton  <gnorton@novell.com>
936
937         * loader.c: Guard and dereference against inflated generic methods
938
939 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
940
941         * class.c: Include Retargetable spec in assembly name.
942         * assembly.c: Always include PublicKeyToken spec in assembly name
943         (with value "null" if assembly is not signed), and include
944         Retargetable spec.
945         * icall-def.h: Added icall for Assembly.get_fullname.
946         * icall.c: Added icall returning the fullname of an assembly.
947
948 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
949
950         * class.c (mono_class_setup_vtable_general): Add a missing call to
951         mono_class_setup_methods () which is needed in the AOT case.
952
953 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
954
955         * verify.c (mono_type_get_stack_name): Added. Return the name for the
956         stack type of the given MonoType.
957
958         * verify.c (verify_type_compatibility_full): Handle the void type.
959
960         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
961         way stack merging works.
962
963         * verify.c (store_local): Improved verification message.
964
965         * verify.c (do_branch_op): If the merging is invalid, the method
966         is unverifiable and not invalid. Improved error message.
967
968         * verify.c (merge_stacks): Properly merge a boxed valuetype and
969         a reference type diferent than System.Object. Improved error
970         message.
971
972 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
973
974         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
975
976         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
977         type of an enum even if the argument is byref.
978
979         * verify.c: Replace all explicit uses of enumtype and enum_basetype
980         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
981
982         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
983
984         *verify.c (verify_type_compatibility_full): Make enum types
985         compatible with their base types.
986
987         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
988         types are compatible for the special case of a boxed valuetype and
989         System.Object.
990
991         * verify.c (verify_stack_type_compatibility): The function
992         is_compatible_boxed_valuetype was extracted from here.
993
994         * verify.c (push_arg): Only set ctx->has_this_store if the method
995         is not static.
996
997         * verify.c (do_ldelem): Fixed a typo in an error message and added
998         strict check for mixing int32 and native int as the array type
999         and ldelem type.
1000
1001         * verify.c (merge_stacks): Consider boxed valuetypes in the
1002         compatibility checks.
1003
1004 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
1005         * profiler.h: (MonoGCEvent): Added start-stop the world events.
1006
1007 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
1008         *class.c: use_new_interface_vtable_code: renamed the env var to have
1009         a "MONO_" prefix, and fix the logic to enable it by default.
1010
1011 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
1012         *class.c:
1013         mono_class_setup_vtable_general: rewrote the way in which interface
1014         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
1015         makes the code more maintainable.
1016         For now the old code is still there, and can be activated setting
1017         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
1018
1019 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
1020
1021         * verify.c: guarded some debug functions around and #ifdef.
1022
1023         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
1024
1025 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
1026
1027         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
1028         changes for now since they seem to break too many things.
1029
1030 2008-02-05  Mark Probst  <mark.probst@gmail.com>
1031
1032         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
1033         mono_marshal_find_nonzero_bit_offset): Added macro and function
1034         for finding the byte- and bit-offset of a bitfield within a
1035         struct.
1036
1037 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
1038
1039         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
1040         (mono_marshal_get_struct_to_ptr): Ditto.
1041
1042         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
1043         cctor_signature.
1044
1045 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
1046
1047         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
1048         between methods for non-corlib types.
1049
1050 2008-02-02  Geoff Norton  <gnorton@novell.com>
1051
1052         * loader.c (mono_method_get_param_names): Populate the parameter name for 
1053         generic parameters as well. (Fixes #342536)
1054
1055 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
1056
1057         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
1058
1059         * verify.c (do_invoke_method): Fix for calling with byref structs.
1060
1061         * verify.c (do_cast): push a boxed value type based on the type token and not
1062         the type of stack.
1063
1064 2008-01-31  William Holmes  <billholmes54@gmail.com>
1065
1066         * process.c (process_module_string_read): Check the size returned form 
1067           VerQueryValue to avoid out of memory exception. 
1068
1069 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
1070
1071         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1072         Handle properly modules which are not in the moduleref table. Fixes
1073         #356938.
1074
1075 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
1076
1077         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
1078         the dynamic case which is now in managed code.
1079         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
1080
1081         * marshal.c (mono_string_to_bstr): Fix a warning.
1082         (init_com_provider_ms): Ditto.
1083
1084         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
1085
1086         * exception.c (mono_get_exception_out_of_memory): New helper function.
1087
1088 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
1089
1090         * marshal.c: Add support for BSTR marshalling
1091         using other COM systems.
1092
1093         Code is contributed under MIT/X11 license.
1094
1095 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
1096
1097         * object.c (mono_runtime_invoke_array): reverted previous
1098         commit as it breaks the build.
1099
1100 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
1101
1102         * object.c (mono_runtime_invoke_array): Verify arguments for
1103         invalid types. Fixes #348522.
1104
1105 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
1106
1107         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
1108         non-final virtual calls using call. 
1109
1110         * verify.c (do_invoke): fixed some TODOs.
1111
1112         * verify.c (push_arg): set has_this_store for "ldarga 0".
1113
1114 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
1115
1116         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
1117         which belong to an inflated class. Fixes #356531.
1118
1119 2008-01-26  Robert Jordan  <robertj@gmx.net>
1120
1121         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
1122         which resort to FindFirstFile when a certain error condition
1123         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
1124         Code is contributed under MIT/X11 license.
1125
1126 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
1127
1128         * marshal.c (emit_marshal_string): Fix out string marshalling
1129         to use specified encoding. Fixes #323900.
1130
1131         Code is contributed under MIT/X11 license.
1132
1133 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
1134
1135         * class.c (mono_class_inflate_generic_method_full): Don't modify
1136         iresult->context after cache check.
1137
1138 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
1139
1140         * class.c (mono_class_inflate_generic_method_full): Change the
1141         struct assignments to memcpy for better visibility and add some comments.
1142
1143 2008-01-23  Dick Porter  <dick@ximian.com>
1144
1145         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
1146         procedure, and make it work on windows.
1147
1148 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
1149
1150         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
1151         a MonoReflectionTypeBuilder since it is always of that type.
1152
1153         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
1154
1155         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
1156
1157         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
1158         
1159         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
1160
1161         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
1162
1163         * reflection.c (mono_reflection_create_runtime_class): Remove already created
1164         instantiations from the type cache.
1165
1166 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
1167
1168         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
1169
1170         * verify.c (do_unbox_value): push a controled mutability managed pointer.
1171
1172 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
1173
1174         * verify.c (do_ldstr): added, verifies if the #US token is valid.
1175
1176         * verify.c (mono_method_verify): removed old TODO
1177
1178 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
1179
1180         * verify.c (do_newobj): add visibility check.
1181
1182 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
1183
1184         * verify.c (do_load_function_ptr): add visibility check.
1185
1186 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
1187         *class.c:
1188         mono_generic_class_get_class: hook profiler events.
1189         mono_field_get_offset: added to support heap-shot in the new profiler.
1190         *class.h: exported mono_field_get_offset.
1191         * reflection.c:
1192         mono_reflection_setup_internal_class: hook profiler events.
1193
1194 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
1195
1196         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
1197         argument here too and use it to avoid checking for pending exceptions if 
1198         possible.
1199
1200 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
1201
1202         * assembly.c (build_assembly_name): add arg for passing the assembly
1203         flags. Do not consider a PublicKey with value "null" valid.
1204         (mono_assembly_name_parse_full): added boolean argument that will be
1205         set if the assembly name contains a PublicKeyToken spec. Added support
1206         for the Retargetable spec for which only Yes or No are allowed as valid
1207         value. Consider assembly name invalid if Retargetable spec is set, but
1208         either version, culture or public key (token) are not specified.
1209         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
1210         with implementation in assembly.c.
1211         * icall.c (fill_reflection_assembly_name): also copy assembly flags
1212         from MonoAssemblyName.
1213         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
1214         introduced argument for mono_assembly_name_parse_full to know if the
1215         assembly name has a PublicKeyToken spec, and if it has instruct
1216         fill_reflection_assembly_name to use default value for keyToken (if
1217         PublicKeyToken is null).
1218
1219 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1220
1221         * verify.c (mono_method_verify): fixed ovf ops with
1222         float values. They are unverifiable now.
1223
1224 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1225
1226         * class.c (set_failure_from_loader_error): add BadImageException to the
1227         list of exceptions that can cause a type to fail to load.
1228
1229         * class.c (mono_class_get_exception_for_failure): same.
1230
1231 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
1232
1233         * verify.c (in_any_exception_block): added, check if offset
1234         is part of any exception handling clause.
1235
1236         * verify.c (get_stack_type): added VAR and MVAR types.
1237
1238         * verify.c (do_stobj): better error messages.
1239
1240         * verify.c (do_cpobj): added, check cpobj.
1241
1242         * verify.c (do_initobj): added, check initobj.
1243
1244         * verify.c (do_sizeof): added, check sizeof.
1245
1246         * verify.c (do_localloc): added, check localloc.
1247
1248         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
1249
1250 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
1251
1252         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
1253         save_lmf/restore_lmf opcodes.
1254
1255         * threads.c (mono_threads_install_notify_pending_exc): New function to
1256         install a callback notifying the JIT there is a pending exception on a thread.
1257         (mono_thread_request_interruption): Call the new callback.
1258         (mono_thread_get_and_clear_pending_exception): New function to return the
1259         exception pending on a thread.
1260
1261         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
1262         to turn off checking for pending exceptions.
1263         (mono_marshal_get_native_wrapper): Ditto.
1264
1265 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
1266
1267         * threads-types.h: Get rid of the unnecessary extern declarations.
1268
1269 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
1270
1271         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
1272         return field from parent class if not private.
1273         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
1274         returns fields from parent class if they are not private.
1275         (method_nonpublic): added function to determine if a given method
1276         should be considered non-public. Returns false for private methods
1277         on parent class, and internal methods from parent on the 1.0 profile.
1278         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
1279         use method_nonpublic function to determine whether method should be
1280         returned.
1281         (property_accessor_public): use newly introduced method_nonpublic
1282         function to determine whether accessor is non-public. 
1283         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
1284         event from parent class if not private. Only return static event if
1285         Static flag is set, and only return static event from parent class if
1286         FlattenHierarchy flag is set.
1287         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
1288         include non-private events from parent class.
1289
1290 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
1291
1292         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
1293         warning.
1294
1295 2008-01-16  Wade Berrier <wberrier@novell.com>
1296
1297         * security.c: Add assembly.h header to appease some warnings
1298
1299 2008-01-16  Dick Porter  <dick@ximian.com>
1300
1301         * process.c (process_module_string_read): Remove trailing null
1302         when saving string.
1303
1304 2008-01-16  Mark Probst  <mark.probst@gmail.com>
1305
1306         * class-internals.h: A new data structure describing the layout of
1307         a runtime generic context (MonoRuntimeGenericContextTemplate).
1308
1309         * metadata-internals.h: Added a hash table to MonoDomain that maps
1310         from open generic classes to their runtime generic context
1311         templates.
1312
1313         * object.c: Building of the runtime generic context, including
1314         proper handling of generic type arguments of superclasses.
1315         Building of the runtime generic context according to the template.
1316
1317 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
1318
1319         * class.c (mono_class_setup_fields): Set field.count for generic instances.
1320         Fixes #350856.
1321
1322         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
1323         mono_portability_find_file (). Fixes #325466.
1324         (mono_image_get_public_key): Fix a warning.
1325
1326 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
1327
1328         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
1329         Fixes #353550.
1330         (mono_class_from_name_case): Ditto.
1331
1332 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
1333
1334         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
1335           common storage for the tables used in the System/NumberFormatter class.
1336
1337 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
1338
1339         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
1340
1341 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
1342
1343         * verify.c (get_boxable_mono_type): check if the token is valid.
1344
1345         * verify.c (set_stack_value): changed to add an error if an
1346         invalid type is set on stack. Changed all callers due to signature change.
1347
1348         * verify.c (do_stobj): implement stobj validation.
1349
1350 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
1351
1352         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
1353         set container->is_method, it was set earlier.
1354
1355         * metadata.c (type_in_image): Handle MVARs which belong to not finished
1356         generic methods.
1357
1358         * reflection.c (mono_reflection_initialize_generic_parameter): Set
1359         is_method of the generic container to TRUE for methods.
1360
1361 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
1362
1363         * metadata.c (type_in_image): Handle type parameters properly.
1364
1365         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
1366         memory ownership of this structure.
1367
1368 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
1369
1370         * verify.c (get_boxable_mono_type): make typedref types been just
1371         unverifiable. check for void type.
1372
1373         * verify.c (do_unbox_any): added, verify opcode unbox.any.
1374
1375         * verify.c (do_load_function_ptr): accept method spec tokens.
1376
1377 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
1378
1379         * marshal.c (mono_class_native_size): Always set *align even if this is called
1380         recursively.
1381
1382 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
1383
1384         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
1385         out-of-date.
1386
1387 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
1388
1389         * verify.c: removed some old unused tables. A huge bunch of small fixes
1390         to things found while testing the verifier with mono basic.
1391
1392         * verify.c (dump_stack_value): dump null literal flag to.
1393
1394         * verify.c (verify_type_compatibility_full): fix comparison
1395         for types that have a generic super type.
1396
1397         * verify.c (verify_stack_type_compatibility): fix compatibility
1398         between null literals and reference types. fix compatibility between
1399         boxed valuetypes and object. fix corner case test for enums.
1400
1401         * verify.c (do_cmp_op): proper verification of cgt.un in case
1402         of reference types.
1403
1404         * verify.c (do_invoke_method): fix error message.
1405
1406         * verify.c (do_store_indirect
1407
1408         * verify.c (check_is_valid_type_for_field_ops): proper verification
1409         of managed pointers to valuetypes and boxed valuetypes. proper verification
1410         of null literals.
1411
1412         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
1413         allow token to be a reference type.
1414
1415         * verify.c (do_cast): proper handling of boxes valuetypes.
1416
1417         * verify.c (do_stelem): proper handling of storing a boxed valuetype
1418         in object[].
1419
1420         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
1421         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
1422         fixed the decoding of unbox_any
1423
1424 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
1425
1426         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
1427
1428 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1429
1430         * verify.c (do_newobj): do delegate verification.
1431
1432         * verify.c (verify_delegate_compatibility): perform delegate
1433         verification.
1434
1435         * verify.c (verify_ldftn_delegate): perform tests related to
1436         ldftn delegates.
1437
1438         * verify.c (mono_delegate_signature_equal): perform the
1439         slightly diferent signature comparison required by delegates.
1440
1441         * metadata.c (mono_metadata_type_equal_full): added and exported
1442         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
1443         allows signature only comparison.
1444
1445         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
1446         as MONO_INTERNAL.
1447
1448 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1449
1450         * verify.c: added a bunch of stack_slot_* functions to
1451         make access to stack slot type easier. This is required to
1452         allow optional flags, like null literal, boxed value and
1453         this pointer.
1454         All access paths to IlStackDesc::stype have been changed 
1455         to use these new funcions.
1456         Removed a bunch of unused functions and cleared all warnings.
1457         This patch introduces the usage of the this pointer and 
1458         boxed value flags.
1459
1460 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
1461
1462         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
1463
1464 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
1465
1466         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
1467         match managed version.
1468
1469         * appdomain.c: Bump corlib version.
1470         
1471         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
1472         argument.
1473
1474 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
1475
1476         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
1477         Set public key token to zero-length byte array if assembly is not
1478         strongnamed.
1479
1480 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
1481
1482         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
1483         writing a vtype array elem.
1484
1485 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
1486
1487         * assembly.c (build_assembly_name): return FALSE if length of token is
1488         not 16 (if not "null").
1489         (mono_assembly_name_parse_full): return FALSE if value of version,
1490         culture, token or key is 0.
1491         * icall.c (fill_reflection_assembly_name): add boolean arguments to
1492         specify whether public key and public key token must be set to default
1493         value (zero-length byte array) if not available. Set versioncompat to
1494         SameMachine. If public key is available or the default is set, then
1495         set PublicKey flag.
1496         (ves_icall_System_Reflection_Assembly_FillName): if no public key
1497         is available, use empty byte array as default value. On the 2.0
1498         profile, use default value for public key token if not set.
1499         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
1500         profile, use default value for public key if not set. On the 2.0
1501         profile, use default value for public key token if not set.
1502         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
1503         default values for public key and public key token.
1504
1505 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
1506
1507         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
1508         field to keep it in synch with the managed object.
1509
1510         * marshal.c (emit_marshal_object): Add support for byref marshalling of
1511         delegates. Fixes #351520.
1512
1513         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
1514         contains defined memory.
1515         
1516         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
1517
1518         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
1519         
1520         * sgen-gc.c (check_consistency): New helper function to do a consistency check
1521         of the GC data structures.
1522
1523         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
1524
1525         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
1526         
1527         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
1528         barrier.
1529         (mono_array_clone_in_domain): Ditto.
1530         (mono_array_clone_in_domain): Ditto.
1531
1532         * threads.c (start_wrapper): Register the thread start argument as a GC root.
1533         (cache_culture): Use a write barrier.
1534
1535         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
1536         (ves_icall_get_property_info): Ditto.
1537
1538         * object.h (MONO_STRUCT_SETREF): New macro.
1539
1540         * class-internals.h (MonoStats): Add some GC statistics.
1541
1542         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
1543
1544 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
1545
1546         * exception.c (mono_exception_from_name_two_strings):
1547         Break from loop after method is found.
1548
1549 2008-01-04  Dick Porter  <dick@ximian.com>
1550
1551         * process.c (process_module_string_read): Rename variable to
1552         reflect correct usage, after fixing bug 345972.
1553
1554 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
1555
1556         * verify.c (mono_type_create_fnptr_from_mono_method): 
1557         created a MonoType function pointer instance to be used during
1558         verification. The verifier releases this memory at end.
1559
1560         * verify.c (mono_method_is_constructor): extracted repeated
1561         checks for constructor into a single class.
1562
1563         * verify.c (do_push_field): use new extracted method
1564         for constructor check.
1565
1566         * verify.c (do_newobj): same.
1567
1568         * verify.c (do_ldftn): renamed to do_load_function_ptr
1569         and make it verify ldvirtftn too.
1570
1571         * verify.c (mono_method_verify: proper verification
1572         of ldvirtftn. release created MonoMethod instances.
1573
1574 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
1575
1576         * verify.c (token_bounds_check): added.
1577
1578         * verify.c (do_ldftn): added.
1579
1580         * verify.c (mono_method_verify): proper verificartion of ldftn.
1581
1582 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
1583
1584         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
1585         than the table row count. It's the resposibility of the caller to
1586         make the bounds check and raise the correct error.
1587
1588         * metadata.c (mono_metadata_decode_row_col): Same.
1589
1590         * loader.c (mono_get_method_from_token): perform bounds check
1591         on token for methoddef table.
1592
1593 2007-12-29  Miguel de Icaza  <miguel@novell.com>
1594
1595         * icall.c
1596         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
1597         assert into a negative result, the managed code already coped with
1598         that.
1599
1600         Some folks on Windows reported this error. 
1601
1602 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
1603
1604         * appdomain.c: Bump corlib version.
1605         * icall.c:
1606         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
1607         CultureInfo.CreateCulture to create CultureInfo for name.
1608         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
1609         create CultureInfo for name. Fixes bug #347174.
1610
1611 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
1612
1613         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
1614         flags.
1615
1616         * verify.c (is_valid_branch_instruction): allow branching to the
1617         first instruction of the protected block.
1618
1619         * verify.c (is_valid_cmp_branch_instruction): same.
1620
1621         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
1622         avoid double initialization.
1623
1624         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
1625         detect which cases the eval stack should just be copied.
1626
1627         * verify.c (mono_method_verify): check if the eval stack
1628         is empty when entering a protected block.
1629
1630 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
1631
1632         * verify.c: added is_clause_in_range, is_clause_inside_range,
1633         is_clause_nested and verify_clause_relationship. They perform
1634         the verifications stated in P1 12.4.2.7.
1635
1636         * verify.c (mono_method_verify): remove some unused variables,
1637         add the new exception clause checks, add instruction border
1638         checks for protected block start/end, improved some error 
1639         messages and fixed a bug in the way invalid instruction access
1640         is detected.
1641
1642 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
1643
1644         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
1645         from GC 7.0 if available.
1646
1647         * object.c: Remove an unused define.
1648         
1649         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
1650
1651         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
1652
1653         * null-gc.c (mono_gc_make_descr_for_array): Implement.
1654
1655         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
1656
1657         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
1658         to take the same arguments as the other make_descr functions.
1659
1660         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
1661
1662         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
1663         directly.
1664
1665         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
1666         mini.c.
1667
1668         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
1669         call to boehm-gc.c.
1670
1671         * boehm-gc.c (mono_gc_register_root): Fix a warning.
1672
1673         * null-gc.c (mono_gc_register_root): Fix a warning.
1674
1675         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
1676
1677         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
1678         (mono_gc_base_init): Call GC_init ().
1679
1680         * null-gc.c: Define mono_gc_register_root () as a no-op.
1681
1682         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
1683
1684 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
1685
1686         * verify.c: add prototype for merge_stacks at top
1687
1688         * verify.c (do_switch): added.
1689
1690         * verify.c (merge_stacks): on some cases the stack merging
1691         was not happening properly. Unequal stack sizes at merge
1692         points should be invalid.
1693
1694         * verify.c (mono_method_verify): added more debug info on stack state.
1695         verify switch properly.
1696
1697 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
1698
1699         * method-builder.h: New file, moved the mono_mb_ declarations here from 
1700         marshal.h.
1701
1702         * boehm-gc.c marshal.c: Include method-builder.h.
1703
1704         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
1705
1706         * marshal.c: Remove some code which is now in method-builder.c.
1707
1708 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
1709
1710         * method-builder.c: New file, extraction of the method builder functionality 
1711         from marshal.c.
1712
1713         * marshal.c: Move the mb functions into method-builder.c.
1714
1715         * marshal.h marshal.c: Export some mono_mb_... functions.
1716
1717         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
1718
1719         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
1720         the caller.
1721
1722         * class.c (mono_class_get_full): Check the token type in the dynamic case.
1723
1724         * loader.c (mono_field_from_token): Ditto.      
1725
1726         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
1727         type as well.
1728         
1729         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
1730         Fixes #342565.
1731
1732         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
1733         a helper function for setting it.
1734
1735         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
1736
1737         
1738         * assembly.c: Significally simplify code now that referenced assemblies are 
1739         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
1740
1741         * threads.h: Don't include  the internal threads-types.h header file. Fixes
1742         #349952.
1743
1744 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
1745
1746         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
1747         instructions that were target of branches or are at protected block boundaries.
1748
1749         * verify.c (in_same_block): handle filter clauses.
1750
1751         * verify.c (is_valid_branch_instruction): added. checks the target of
1752         instructions br or brtrue/false.
1753
1754         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
1755         binary branch instructions such as beq and bge.
1756
1757         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
1758         and made it pin the instruction as been part of the exception block.
1759
1760         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
1761         of in_same_block.
1762
1763         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
1764         of in_same_block.
1765
1766         * verify.c (do_ret): ret from a protected block is unverifiable and
1767         not invalid.
1768
1769         * verify.c (do_static_branch): verify br and br.s instructions.
1770
1771         * verify.c (merge_stacks): add extra param to support detection
1772         of branches in the middle of instructions.
1773         
1774         * verify.c (mono_method_verify): verify branches and exception blocks
1775         that target the middle of instructions. Proper verification of br and br.s.
1776
1777 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
1778
1779         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
1780         skip_visibility field.
1781         (reflection_methodbuilder_from_dynamic_method): Ditto.
1782
1783         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
1784         registrations. Fixes #348193.
1785
1786         * threads.h: Move the internal mono_thread_get_pending_exception () to
1787         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
1788
1789 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
1790
1791         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
1792         icall registration. Fixes #348193.
1793
1794         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
1795         for corlib classes into object. Fixes #349621.
1796
1797 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
1798
1799         * icall.c (property_accessor_nonpublic): new function to determine
1800         whether an accessor allows a property to be considered non-public.
1801         Returns false for private accessor(s) from parent class, and internal
1802         accessor(s) from parent on 2.0 profile (and higher).
1803         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
1804         to determine whether property should be included if NonPublic flag
1805         is set. Fixes bug #349078.
1806
1807 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
1808
1809         * verify.c (init_stack_with_value): added.
1810
1811         * verify.c (mono_method_verify): extracted common
1812         code for exception initialization into init_stack_with_value.
1813
1814         * verify.c (mono_method_verify): initialize the exception
1815         for handler clauses as well.
1816
1817         * verify.c (mono_method_verify): fix the exception clause
1818         ordering rules, it should use handler end offset and not
1819         start offset.
1820
1821 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
1822
1823         * rawbuffer.c: remove useless warning.
1824
1825 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
1826
1827         * threads.h, threads-types.h: move functions to the correct header
1828         (fixes bug#349952).
1829
1830 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
1831
1832         * verify.c (mono_method_verify): proper verification
1833         of exception handling clauses ranges and fallthru in
1834         and out of protected blocks.
1835
1836 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
1837
1838         * verify.c (mono_method_verify): fixed compilation issue.
1839
1840 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
1841
1842         * verify.c (mono_method_verify): a printf slipped in, changed
1843         to use verifier debug macro.
1844
1845 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
1846
1847         * verify.c (is_correct_leave): check for filter clauses.
1848
1849         * verify.c (do_filter): added.
1850
1851         * verify.c (mono_method_verify): property verification of leave.
1852
1853
1854 2007-12-18  Mark Probst  <mark.probst@gmail.com>
1855
1856         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
1857         Win32 build, until we figure out how to do the proper thing on
1858         Win32.
1859
1860 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
1861
1862         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
1863         by the previous patch.
1864         
1865         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
1866         the assembly resolve handler for refonly assemblies.
1867
1868 2007-12-17  Mark Probst  <mark.probst@gmail.com>
1869
1870         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
1871         Make sure only one thread is allowed to commence shutdown, and
1872         don't allow new threads to be started once shutdown is in
1873         progress.
1874
1875 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1876
1877         * verify.c (is_correct_endfilter): added.
1878
1879         * verify.c (is_unverifiable_endfilter): added.
1880
1881         * verify.c (do_endfilter): added.
1882
1883         * verify.c (mono_method_verify): property verification of endfilter
1884         and fixed a corner case or endfinally.
1885
1886 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
1887
1888         * verify.h: new flags to support fail fast of unverifiable code and
1889         do non-strict verification. Non-strict verification is required to
1890         have MS runtime compatibility. There are a huge amount of unverifiable
1891         code that it accepts as verifiable. The strict mode verifies the code
1892         as the specs says.
1893         Non-strict mode will be required in cases where code needs to be
1894         accepted as verifiable but fails under strict mode.
1895
1896         * pedump.c: added support to fail fast and non-strict verification.
1897
1898         * verify.c: added support for both fail fast and non-strict verification.
1899
1900 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1901
1902         * verify.c (is_correct_endfinally): added.
1903
1904         * verify.c (mono_method_verify): property verification of endfinally.
1905
1906 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
1907
1908         * verify.c (in_any_block): check for filter clauses.
1909
1910         * verify.c (is_correct_rethrow): added.
1911
1912         * verify.c (mono_method_verify): property verification of rethrow.
1913
1914         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
1915
1916 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
1917
1918         * verify.c (do_throw): added.
1919
1920         * verify.c (mono_method_verify): property verification of throw
1921
1922 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
1923
1924         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
1925         assemblies. Fixes #346425.
1926
1927 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
1928
1929         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
1930         FieldBuilders.
1931
1932         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
1933
1934         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
1935         prevent asserts when this is called with a token which might not be valid.
1936
1937         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
1938         lookup_dynamic_token_class with valid_token == FALSE.
1939
1940         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
1941
1942         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
1943
1944         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
1945         
1946 2007-12-10  Mark Probst  <mark.probst@gmail.com>
1947
1948         * gc.c: Don't delay threadpool thread finalization unless Mono is
1949         shutting down.
1950
1951 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1952
1953         * threads.c: turn an assert into a non-fatal warning.
1954
1955 2007-12-09  Robert Jordan  <robertj@gmx.net>
1956
1957         * icall.c (GetVirtualMethod): Add missing argument validation.
1958
1959 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1960
1961         * verify.c (do_cast): added.
1962
1963         * verify.c (mono_method_verify): property verification of castclass and isinst.
1964
1965
1966 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1967
1968         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
1969
1970         * verify.c (do_stelem): added.
1971
1972         * verify.c (mono_method_verify): property verification of stelem.X.
1973
1974 2007-12-07  Mark Probst  <mark.probst@gmail.com>
1975
1976         * class.c, class-internals.h: Introduce an environment variable
1977         (MONO_GENERIC_SHARING) through which the extent of generic code
1978         sharing can be controlled (share all classes, share only corlib
1979         classes, or share nothing).
1980
1981         * object.c: Only create runtime generic context for classes for
1982         which sharing is enabled.
1983
1984 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1985
1986         * verify.c (do_ldelem): refactor it to work with ldelem.any.
1987
1988         * verify.c (mono_method_verify): property verification of ldelem.any.
1989
1990 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1991
1992         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
1993         added ldelem.X opcodes.
1994
1995         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
1996
1997         * verify.c: proper verification of ldelem.X 
1998
1999 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
2000
2001         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
2002
2003 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
2004
2005         * verify.c (mono_method_verify): null literal requires special handling,
2006         the value pushed on stack need to be flagged as so.
2007
2008         * verify.c (do_ldelema): Verify ldelema properly.
2009
2010 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
2011
2012         * verify.c: Verify ldlen properly.
2013
2014 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
2015
2016         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
2017         to the target object's type. Fixes #346160.
2018
2019 2007-12-05  Dick Porter  <dick@ximian.com>
2020
2021         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
2022         Solaris needs the same workaround as BSD-derived systems.  Fixes
2023         bug 323524, patch by Burkhard Linke
2024         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
2025
2026 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
2027
2028         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
2029         handle to use when error dialog is shown; otherwise, update mask
2030         to show no error dialog when an error occurs.
2031
2032 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
2033
2034         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
2035
2036         * class.c (mono_class_get_field_default_value): New helper function to initialize
2037         field->def_type and field->data.
2038
2039 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
2040
2041         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
2042         the general one.
2043
2044         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
2045
2046         * marshal.c: Avoid depending on delegate->method_info being set.
2047
2048         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
2049         
2050         * object.c (mono_delegate_ctor): Set delegate->method.
2051
2052         * object-internals.h (struct _MonoDelegate): Add 'method' field.
2053
2054         * appdomain.c: Bump corlib version.
2055
2056 2007-11-27  Raja R Harinath  <harinath@gmail.com>
2057
2058         * metadata.c (mono_generic_inst_equal_full): Short-circuit
2059         equality check if we're comparing canonicalized MonoGenericInsts.
2060
2061 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
2062
2063         * class.c (generic_array_methods): Call mono_class_setup_methods () before
2064         accessing class->methods.
2065
2066 2007-11-22  Dick Porter  <dick@ximian.com>
2067
2068         * threads.c: Ensure that the synch_cs is set before trying to use
2069         it.
2070
2071 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
2072
2073         * profiler.c: r89126 broke the statistial profiler, unbreak.
2074
2075 2007-11-22  Martin Baulig  <martin@ximian.com>
2076
2077         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
2078
2079         * mono-debug.c
2080         (mono_debug_debugger_version): Bump to 3.
2081         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
2082         -> mono_debugger_class_initialized().
2083
2084         * mono-debug-debugger.c
2085         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
2086
2087         * class.c
2088         (mono_debugger_start_class_init_func): Removed.
2089         (mono_debugger_class_loaded_methods_func): Added.
2090         (mono_class_setup_methods): Call it here.
2091
2092 2007-11-22  Martin Baulig  <martin@ximian.com>
2093
2094         * mono-debug.c
2095         (mono_debug_add_delegate_trampoline): New public method.
2096         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
2097
2098         * mono-debug.h
2099         (MonoSymbolTable): Added `global_data_table'.
2100         (MonoDebuggerTypeKind): Removed.
2101
2102 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
2103
2104         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
2105         these methods.
2106
2107         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2108         
2109 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
2110
2111         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
2112
2113 2007-11-20  Martin Baulig  <martin@ximian.com>
2114
2115         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
2116
2117         * mono-debug-debugger.c
2118         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
2119         (mono_debugger_remove_breakpoint): Likewise.
2120         (mono_debugger_check_breakpoints): Likewise.
2121         (mono_debugger_register_class_init_callback): New public method.
2122         (mono_debugger_remove_class_init_callback): Likewise.
2123         (mono_debugger_add_type): Likewise.
2124
2125         * mono-debug-debugger.h
2126         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
2127
2128 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
2129
2130         * class.c: more interface implementations needed for the
2131         array enumerator (fixes bug #341112).
2132
2133 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
2134
2135         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
2136         fix ParamName of ArgumentNullExceptions.
2137
2138 2007-11-17  Miguel de Icaza  <miguel@novell.com>
2139
2140         * reflection.c (mono_reflection_encode_sighelper): Generate the
2141         modopts and modreqs.   I have a useless test that crashes monodis,
2142         but that shows the code working.
2143
2144 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
2145
2146         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
2147         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
2148
2149 2007-11-15  Dick Porter  <dick@ximian.com>
2150
2151         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
2152         When joining a thread, it's the thread that's calling Join that
2153         gets WaitSleepJoin state not the target.  Fixes the standalone
2154         test case in bug 334740, and hopefully the whole bug too.
2155
2156 2007-11-15  Dick Porter  <dick@ximian.com>
2157
2158         * process.c: Read file version info from the files pointed at by
2159         process modules, not the current process.  Fixes bug 315969.
2160
2161         Use windows typedef names in some places to fix warnings on the
2162         windows build.
2163
2164 2007-11-15  Mark Probst  <mark.probst@gmail.com>
2165
2166         * image.c, metadata-internals.h: Added a generic_class_cache hash
2167         to MonoImage for looking up generic classes when sharing generics.
2168
2169 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
2170
2171         * sgen-gc.c: warning cleanups.
2172
2173 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
2174
2175         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
2176         inherited properties.
2177
2178 2007-11-14  Mark Probst  <mark.probst@gmail.com>
2179
2180         * object.c, class-internals.h: Added more information to the
2181         runtime generic context.
2182
2183 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
2184
2185         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
2186         instead of just the target method. Generalize the abstract method handling to
2187         handle any non-static method.
2188
2189         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
2190         mono_marshal_get_delegate_invoke () signature change.
2191
2192 2007-11-13  Mark Probst  <mark.probst@gmail.com>
2193
2194         * class.c, class-internals.h: Made
2195         mono_type_get_basic_type_from_generic () public.  Fixed member
2196         access check for shared generics.
2197
2198         * loader.c: Don't insert field into field cache if it's part of a
2199         non-inflated generic class.
2200
2201         * domain.c, domain-internals.h: The generic sharing context is now
2202         part of the jit info data structure.  Added two accessor
2203         functions.
2204
2205 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
2206
2207         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
2208         the array Get/Set/Address methods, since the JIT inlines them.
2209
2210         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
2211
2212         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
2213         (mono_image_init): Initialize runtime_invoke_direct_cache.      
2214
2215         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
2216         mono_marshal_get_delegate_invoke signature change.
2217
2218         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
2219         an additional argument. Add support for invoking abstract methods.
2220
2221         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
2222
2223         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
2224
2225 2007-11-09  Mark Probst  <mark.probst@gmail.com>
2226
2227         * class.c: Do field layout for open generic classes as well.
2228
2229 2007-11-09  Mark Probst  <mark.probst@gmail.com>
2230
2231         * gc.c, gc-internal.h: Don't finalize threadpool threads with
2232         other objects, because the threadpool is still around.  Put them
2233         in a list instead and after finalizing all other objects in the
2234         root domain shut down the thread pool and then finalize the
2235         threads.  Fixes bug #337383.
2236
2237         * threads.c, thread-types.h: New mono_thread_create_internal()
2238         function for marking a thread with the threadpool flag before it
2239         started.  Set synch_cs to NULL after freeing it.
2240
2241         * threadpool.c: Mark threadpool threads before they start.
2242
2243 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
2244
2245         * reflection.h, reflection.c: don't export random functions
2246         and lazy load dbnull and missing objects.
2247
2248 2007-11-07  Jonathan Chambers <joncham@gmail.com>
2249
2250         * class.c: Initialize COM types if COM interfaces
2251         are present (not just COM classes).
2252         
2253         Code is contributed under MIT/X11 license.
2254
2255 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
2256         * reflection.c:
2257         create_dynamic_mono_image: hook module profiler events (dynamic case).
2258         mono_image_basic_init: hook assembly profiler events (dynamic case).
2259
2260 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
2261         * profiler.c:
2262         simple_appdomain_unload: completely terminate the profiler
2263         instead of only processing the statistical samples.
2264         simple_shutdown: make sure this is really called exactly once,
2265         even in multithreaded applications, and always listen to
2266         appdomain events.
2267         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
2268         here, the "[un]load" functions will do it.
2269         Fixes bugs #333791 and #325261.
2270
2271 2007-11-07  Geoff Norton  <gnorton@novell.com>
2272
2273         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
2274         rather than depend on __APPLE__.
2275
2276 2007-11-07  Mark Probst  <mark.probst@gmail.com>
2277
2278         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
2279
2280 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
2281
2282         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
2283         UTF16 MonoString. Fix the crash from bug #335488
2284
2285 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
2286
2287         * marshal.c: Correct (for non-Win32 OS) length != size in 
2288         mono_string_from_bstr. Fix #339530.
2289
2290 2007-11-06  Geoff Norton  <gnorton@novell.com>
2291
2292         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
2293         to succeed
2294
2295 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
2296
2297         * process.c: Added run-time GetProcessId API detection for Windows.
2298
2299 2007-11-04  Miguel de Icaza  <miguel@novell.com>
2300
2301         * reflection.c  (mono_param_get_objects): If a parameter has the
2302         attribute [System.Runtime.InteropServices.Optional] we should
2303         set the DefaultValue of the ParameterInfo to be
2304         System.Reflection.Missing instead of DBNull.
2305
2306         See bug #339013.
2307
2308         (mono_get_reflection_missing_object): New method,
2309         returns the System.Reflection.Missing.Value singleton instance.
2310
2311 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
2312
2313         * culture-info-table.h : regenerated.
2314
2315 2007-11-02  Jonathan Chambers <joncham@gmail.com>
2316
2317         * icall.c: Use GetEnvironmentStrings on windows
2318         so we are using the same environment block as 
2319         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
2320         #333740.
2321         
2322         Code is contributed under MIT/X11 license.
2323
2324 2007-10-31  Martin Baulig  <martin@ximian.com>
2325
2326         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
2327
2328         * mono-debug-debugger.h
2329         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
2330
2331 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
2332
2333         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
2334         classes.
2335
2336 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
2337
2338         * culture-info-table.h : regenerated.
2339
2340 2007-10-30  Robert Jordan  <robertj@gmx.net>
2341
2342         * icall-def.h, icall.c:
2343         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
2344
2345         Code is contributed under MIT/X11 license.
2346
2347 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
2348
2349         * class.c (mono_class_setup_vtable): Find the inflated methods in the
2350         inflated class instead of inflating them again.
2351         
2352         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
2353         dynamic case.
2354
2355         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
2356         Call setup_supertypes () after klass->parent is set.
2357         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
2358
2359         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
2360         for inflated instances of not yet created dynamic generic classes.
2361         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
2362         times from inflated_method.
2363         (methodbuilder_to_mono_method): Ditto.
2364
2365 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
2366
2367         * gc.c: code cleanup and removed old untested option of not creating the
2368         finalizer thread.
2369
2370 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
2371
2372         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
2373         creating a jump trampoline for dynamic methods.
2374
2375 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
2376
2377         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
2378         generic TypeBuilders when called from another method of the same type (bug #335131).
2379
2380
2381 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
2382
2383         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
2384         doesn't seem to work perfectly.
2385         
2386         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
2387         called multiple times.
2388         (methodbuilder_to_mono_method): Ditto.
2389         (resolve_object): Inflate FieldBuilder's.
2390
2391 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
2392
2393         * string-icalls.c, string-icalls.h, appdomain.c: patch from
2394         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
2395         RemoveEmptyEntries in the string.Split implementation (bug #322375).
2396
2397 2007-10-26  Dick Porter  <dick@ximian.com>
2398
2399         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
2400         Thread initialisation changes
2401
2402 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
2403
2404         * verify.c: fix compatibility check between arrays and System.Array
2405
2406 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
2407
2408         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
2409         too. Fixes #336999.
2410
2411 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
2412
2413         * object.c (mono_value_box): Use typed allocation here.
2414
2415 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
2416
2417         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
2418         trampoline instead of compiling the method right away.
2419
2420         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
2421
2422 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
2423
2424         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
2425         related fields for dynamic classes. Fixes #334493.
2426
2427 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
2428
2429         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
2430         
2431         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
2432
2433         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
2434         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
2435
2436         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
2437
2438         * reflection.c (create_generic_typespec): Initialize klass->generic_container
2439         if needed.
2440         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
2441
2442 2007-10-18  Jonathan Chambers <joncham@gmail.com>
2443
2444         * marshal.c: Use correct key when removing item
2445         from ccw_hash.
2446         
2447         Code is contributed under MIT/X11 license.
2448
2449 2007-10-17  William Holmes  <billholmes54@gmail.com>
2450
2451         *marshal.c: Adding a case to marshal booleans to U1
2452
2453         Code is contributed under MIT/X11 license.
2454
2455 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
2456
2457         * class.c (mono_class_from_name): Search the modules compromising dynamic
2458         assemblies. Fixes #331601.
2459
2460 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
2461
2462         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
2463         exception if the type name contains an assembly component. Fixes #334203.
2464
2465         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
2466         modules inside dynamic assemblies. Fixes #334200.
2467         
2468         * reflection.c: Set image->public_key and image->public_key_length;
2469
2470         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
2471         fields.
2472
2473         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
2474         
2475 2007-10-16  Mark Probst  <mark.probst@gmail.com>
2476
2477         * metadata.c: Implemented correct comparing of generic classes.
2478         An inflated generic class can be equal to a non-inflated one if it
2479         is inflated with generic type variables as type arguments.  Fixes
2480         bug #333798.
2481
2482 2007-10-15  Dick Porter  <dick@ximian.com>
2483
2484         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
2485         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
2486         81646.
2487
2488         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
2489         instead of a monitor lock.  This means that monitor_try_enter and
2490         co can set the thread state safely.
2491         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
2492         thread_interrupt_requested, so interrupt actually works.
2493
2494         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
2495         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
2496         state accessor function
2497
2498 2007-10-15  Martin Baulig  <martin@ximian.com>
2499
2500         * mono-debug.h
2501         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
2502         the debugger with the current runtime.
2503
2504 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
2505
2506         * object.c, object-internals.h: added the ability to set a single
2507         trampoline for all the slots in a vtable.
2508
2509 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
2510
2511         * marshal.c: deal with a possible race condition during multicast
2512         delegate invocation.
2513
2514 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
2515
2516         * class.c: ensure value type methods don't have the synchronized
2517         flag set.
2518
2519 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
2520
2521         * string-icalls.c, string-icalls.h: reverted unapproved patch that
2522         breaks the build.
2523
2524 2007-10-11  Joel Reed  <joelwreed@comcast.com>
2525
2526         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
2527         to take an options parameter so that empty entries can be removed during
2528         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
2529
2530 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
2531
2532         * marshal.c: make sure we don't store the signature from a dynamic
2533         method into the runtime invoke cache (bug #327189).
2534
2535 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
2536
2537         * marshal.c: make sure the wrapper methods are properly initialized.
2538
2539 2007-10-11  Mark Probst  <mark.probst@gmail.com>
2540
2541         * metadata.c, metadata-internals.h: Generalized
2542         mono_type_stack_size() to mono_type_stack_size_internal() which
2543         takes an additional argument specifying whether it allows open
2544         types.
2545
2546 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
2547
2548         * verify.c (do_invoke_method): handle typedbyref params
2549         correctly and check for unverifiable return values.
2550
2551         * verify.c (do_newobj): fix a warning.
2552
2553 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
2554
2555         * verify.c: don't tread typedbyref as allways unverifable,
2556         so uses, like (ld/st)loc.0 are valid. verify for the cases
2557         that it matters, like boxing related operations.
2558
2559 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
2560
2561         * verify.c: add verification of the newobj opcode. verification
2562         of delegate instantation still missing due ldftn and virldftn not
2563         pushing the function type on stack
2564
2565 2007-10-08  Mark Probst  <mark.probst@gmail.com>
2566
2567         * class-internals.h: Runtime generic context data structure
2568         definition.
2569
2570         * object.c: Initialization of runtime generic context at runtime
2571         vtable creation time.
2572
2573 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
2574         * class.c (mono_class_create_from_typedef,
2575         mono_class_from_generic_parameter, mono_ptr_class_get,
2576         mono_fnptr_class_get, mono_bounded_array_class_get)
2577         * domain.c (mono_domain_create, mono_domain_free)
2578         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
2579         * image.c (do_mono_image_load, mono_image_close):
2580         Hooked up load-unload profiler events.
2581
2582 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
2583
2584         * domain.c: track statistics about the actual amount of native code
2585         allocated.
2586
2587 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
2588
2589         * class.c: the valuetype enumerators don't have the additional
2590         supertypes interfaces.
2591
2592 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
2593
2594         * class.c: need more interfaces setup for the IEnumerator<T>
2595         object created for arrays (tests/ienumerator-interfaces.2.cs).
2596
2597 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
2598
2599         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
2600
2601 2007-10-05  Alp Toker  <alp@atoker.com>
2602
2603         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
2604         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
2605         #315863.
2606
2607 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
2608
2609         * verify.c (verify_type_compatibility_full): verification of
2610         compatibility improved, validates correctly non-strict checks between
2611         native int and I4 types different than (unsigned)int32.
2612
2613         * verify.c (do_store_indirect): added, do all verification of
2614         ldind.X opcodes. 
2615
2616         * verify.c (get_load_indirect_mono_type): renamed to
2617         get_indirect_op_mono_type, as it now returns the MonoType for 
2618         ldind.X and stind.X opcodes.
2619
2620 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
2621
2622         * reflection.c: Fix the encoding of generic type definition for
2623         TypeBuilders.
2624
2625         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
2626         mono_image_typedef_or_ref but allows to specify if typespec lookups should
2627         be made. Typespec check is done prior to typeref cache lookup.
2628
2629         * reflection.c (mono_image_typedef_or_ref): now just delegate to
2630         mono_image_typedef_or_ref_full.
2631
2632         * reflection.c (encode_generic_class): encode the generic class
2633         directly instead of calling encode_type.
2634
2635         * reflection.c (encode_type): encode the generic type definition
2636         MonoClass as a generic instantiation.
2637
2638         * reflection.c (create_typespec): cache typespec tokens in
2639         the assembly->typespec cache. Don't create typespec for a generic
2640         instance MonoClass. Create typespec for the generic type defintion.
2641
2642         * reflection.c (create_generic_typespec): encode the generic
2643         class directly instead of calling encode_type.
2644
2645         * reflection.c (mono_image_create_token): encode the generic
2646         type definition not using a typespec for MonoType instances.
2647
2648
2649 2007-10-04  Raja R Harinath  <rharinath@novell.com>
2650
2651         Fix #328812
2652         * class.c (mono_image_init_name_cache): Don't return nested
2653         'protected internal' classes.
2654         (mono_class_from_name_case): Likewise.
2655
2656 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
2657
2658         * icall-def.h, icall.c : get_bundled_machine_config() is now the
2659           common function used by both DefaultConfig in System.dll and
2660           InternalConfigurationHost in System.Configuration.dll.
2661
2662 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
2663
2664         * class.c: automatically add to vectors only a few essential explicit
2665         generic interfaces. The rest of the interfaces that arrays should
2666         provide are currently implicitly added (but still not lazily, see the
2667         design in the discussion of bug#325495 for the details of what is
2668         needed for that). Additionally, implicit interfaces are assigned the
2669         same vtable slot as the explicit interfaces (as they are compatible):
2670         this enables huge memory savings since we don't need to instantiate
2671         as many memthods and as large vtables anymore. Also, Since
2672         GetEnumerator<T> returns an instance of a type that is required to
2673         support a similarly large set of interfaces as arrays, we add
2674         implicit interfaces and interface offset sharing support to those
2675         types, too. This change adds all the required interfaces so that
2676         the anonarray.cs test case in the bug report works (we don't add
2677         all the interfaces to arrays of arrays 3-level deep and more because
2678         of the memory requirements explained in the bug and since they are much
2679         less common: the lazy-loading support will enabled them to work, too).
2680
2681 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
2682
2683         * verify.c (merge_stacks): major clean up, all type compatibility
2684         checks are done by verify_type_compatibility. This fix my earlier lack
2685         of understanding of the CLR type system and merge_stacks no longer looks
2686         scary.
2687
2688         * verify.c: fixed some bad spelling.
2689
2690 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
2691
2692         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
2693         a given stack slock.
2694         
2695         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
2696         verify_type_compatibility_full. This removed a near indentical function and fixed
2697         handling of Int32 and IntPtr across all opcodes.
2698
2699 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
2700
2701         * class.c: only vectors have the additional generic interfaces.
2702
2703 2007-10-01  Jonathan Chambers <joncham@gmail.com>
2704
2705         * mono-config.c: Use g_strcasecmp instead of
2706         strcasecmp like everywhere else to fix
2707         compilation with MSVC.
2708         
2709         Code is contributed under MIT/X11 license.
2710
2711 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
2712
2713         * object.c, object-internals.h: refactored the IMT code to enable
2714         building a single slot at a time and lazily creating the IMT trampolines
2715         and thunks.
2716
2717 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
2718
2719         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
2720
2721         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
2722         Fixes #328501.
2723         
2724 2007-09-29  Raja R Harinath  <harinath@gmail.com>
2725
2726         * loader.c (method_from_methodspec): Rearrange to avoid
2727         un-necessary exposition.  Don't assert out if the method's
2728         declaring type is a generic type definition.
2729
2730 2007-09-28  Martin Baulig  <martin@ximian.com>
2731
2732         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
2733
2734 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
2735
2736         * class-internals.h: optimize field layout of MonoClass to
2737         requires less cachelines at runtime and save a few bytes on 64 bit
2738         systems.
2739
2740 2007-09-28  Jb Evain  <jbevain@novell.com>
2741
2742         * reflection.c: when encoding type names in custom attributes,
2743         if the type is a closed generic type, its generic arguments
2744         have to be serialized as AssemblyQualifiedName, so that when
2745         they are deserialized, it's possible to re-create them properly.
2746         Fixes #329450.
2747
2748
2749 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
2750
2751         * object.c, class-internals.h: added delegate-creation counter.
2752
2753 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
2754
2755         * class.c: cleanup of the code that synthetizes interfaces for
2756         arrays in 2.0: saves quit a bit of corlib mempool memory.
2757         Code to fix bug #325495 ifdeffed out for now until the issues
2758         with memory usage and O(n^2) behaviour are fixed.
2759
2760 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
2761
2762         * marshal.c: when possible, do not duplicate the name of the methods
2763         in the method builder and in the generated MonoMethod.
2764
2765 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
2766         * verify.c: added support for type checking ldind_* opcodes.
2767
2768 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
2769
2770         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
2771         which is used to distinguish the fully open instantiation of a TypeBuilder
2772         with the rest. This temporary hack is required to restore the property that
2773         the fully open instantiation is the same type of the generic type definition.
2774
2775         * class-internals.h (mono_generic_class_is_generic_type_definition):
2776         new function as part of the internal API.
2777
2778         * class.c (inflate_generic_type): return NULL when the generic inst is
2779         fully open. The fully open generic type is now the same as the generic type
2780         definition for non TypeBuilder types.
2781
2782         * class.c (mono_generic_class_get_class): removed assert since it is
2783         no longer valid, gklass->cached_class can point to the generic type definition.
2784
2785         * class.c (mono_generic_class_is_generic_type_definition): new.
2786
2787         * metadata.c (mono_generic_class_hash): added is_tb_open field
2788         to the hash calculation.
2789
2790         * metadata.c (free_generic_class): if the generic class is associated
2791         with the generic type definition, its field will come from the mempool and
2792         must not be freed.
2793
2794         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
2795         new, this function identifies the corner case of a TypeBuilder fully open
2796         instantiation.
2797
2798         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
2799         for lookup. Set gclass->cached_class to be the container class in case of
2800         the fully open instantiation of non TypeBuilder types.
2801
2802         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
2803         to compare generic classes.
2804
2805         * reflection.c (method_encode_methodspec): remove assert that
2806         no longer is valid.
2807
2808         * reflection.c (mono_reflection_generic_class_initialize): add
2809         an aditional assert to ensure the proper type is used.
2810
2811 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
2812
2813         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
2814         to enjoy it.
2815
2816 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
2817
2818         * verify.c (push_arg): Fixed support for ldarga
2819         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
2820         MonoType used as first arg in case of instance calls.
2821
2822 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
2823
2824         * verify.c: Support for verifying VAR and MVAR types, 
2825
2826 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
2827
2828         * icall.c (ves_icall_get_property_info): Set the reflected type of the
2829         accessors correctly.
2830
2831 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
2832
2833         * threads.c: support OSX and other systems in
2834         mono_thread_get_stack_bounds (bug #328026).
2835
2836 2007-09-25  Martin Baulig  <martin@ximian.com>
2837
2838         * mono-debug.h
2839         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
2840
2841 2007-09-24  Martin Baulig  <martin@ximian.com>
2842
2843         * mono-debug.h
2844         (MonoDebugClassEntry): Moved the definition of this struct into
2845         mono-debug.c to make it private.
2846
2847         * mono-debug.c
2848         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
2849         type table per symbol file, we don't need to store the symfile id
2850         any longer.
2851
2852 2007-09-24  Martin Baulig  <martin@ximian.com>
2853
2854         Create one type table per symbol file, since a `MonoClass *' gets
2855         invalid when its image is unloaded.
2856
2857         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
2858         (MonoDebugHandle): Added `type_table'.
2859
2860 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
2861
2862         * mempool.c, mempool.h: added mono_mempool_new_size () API
2863         to be able to specify a smaller initial size for the pool.
2864         Adjusted the code to slowly increase pool size before using
2865         the previous default size.
2866         * image.c: use a small initial size for image mempools.
2867
2868 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
2869
2870         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
2871         Fixes ##320990.
2872
2873         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
2874         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
2875
2876 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
2877
2878         * metadata.c (mono_type_create_from_typespec): Remove an invalid
2879         free. Fixes #327438.
2880
2881 2007-09-21  Raja R Harinath  <harinath@gmail.com>
2882
2883         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
2884         generic instantiations, etc.
2885         <MONO_TYPE_ARRAY>: Likewise.
2886
2887 2007-09-21  Martin Baulig  <martin@ximian.com>
2888
2889         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
2890         these structs were never defined.
2891         (MonoDebugHandle): Removed the `_priv' field, it was never used.
2892
2893 2007-09-21  Martin Baulig  <martin@ximian.com>
2894
2895         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
2896
2897 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
2898
2899         * image.c: removed the guid hash tables: we can get the same info
2900         without the additional memory usage hit (partially fixes also bug #327052).
2901
2902 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
2903
2904         * profiler.h, profiler-private.h, profiler.c: add a new profiler
2905         event to handle unloading methods. After the event is called, the
2906         corresponding MonoMethod* must be considered invalid.
2907         * loader.c (mono_free_method): call the new mono_profiler_method_free
2908         event.
2909
2910 2007-09-20  Mark Probst  <mark.probst@gmail.com>
2911
2912         * domain-internals.h: New flag in MonoJitInfo which marks shared
2913         generic methods.  New hash table (shared_generics_hash) in
2914         MonoDomain to keep track of shared generic methods.  Prototypes
2915         for functions to register and lookup shared generic methods.
2916
2917         * domain.c: Support for registering and looking up shared generic
2918         methods via a hash table (shared_generics_hash) in MonoDomain.
2919
2920         * class-internals.h: New exception to signal failure of shared
2921         compilation of a generic method.  New counters for generics
2922         sharing in MonoStats.
2923
2924 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
2925
2926         * image.c, metadata-internals.h: don't keep a file descriptor open
2927         for loaded assemblies (bug#325988).
2928
2929 2007-09-19  Raja R Harinath  <rharinath@novell.com>
2930
2931         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
2932         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
2933         use the corresponding datatypes.
2934         (type_in_image): Update to changes.
2935         (CleanForImageUserData): Simplify.
2936         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
2937         Avoid quadratic behaviour in handling the "stolen" list by
2938         separating the filter predicate out, and by prepending the stolen
2939         items rather than appending them.
2940         (steal_ginst_in_image): Likewise.
2941         (mono_metadata_clean_for_image): Update to changes.
2942
2943 2007-09-19  Martin Baulig  <martin@ximian.com>
2944
2945         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
2946
2947 2007-09-19  Martin Baulig  <martin@ximian.com>
2948
2949         * mono-debug.c (mono_debug_cleanup): Don't call
2950         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
2951
2952 2007-09-19  Raja R Harinath  <harinath@gmail.com>
2953
2954         Fix crash on 'make run-test' in mcs/errors
2955         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
2956         Avoid more potential allocations in mono_class_from_mono_type.
2957         (ginst_in_image): Update to changes.
2958         (gclass_in_image): Rearrange slightly.
2959
2960 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
2961
2962         * class.c (mono_class_init): Move the code that sets up class->methods to 
2963         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
2964
2965         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
2966         canonical instance of an inflated generic signature.
2967         (mono_type_create_from_typespec): Remove an invalid free.
2968
2969         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
2970
2971 2007-09-18  Marek Habersack  <mhabersack@novell.com>
2972
2973         * domain-internals.h: added a declaration of the
2974         mono_assembly_load_full_nosearch internal function.
2975
2976         * assembly.c (mono_assembly_load_with_partial_name): use
2977         mono_try_assembly_resolve return value properly.
2978         (mono_assembly_load_full_nosearch): copied the function body from
2979         mono_assembly_load_full, without the code to invoke assembly
2980         search hooks.
2981         (mono_assembly_load_full): calls the above new function and if the
2982         assembly is not resolved, invokes the search hooks.
2983
2984         * appdomain.c (mono_runtime_init): restore the global postload
2985         assembly search handlers.
2986
2987 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
2988
2989         * class.c (mono_class_init): Make sure class->methods and class->properties
2990         are never NULL in the generics case.
2991
2992         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
2993
2994 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
2995
2996         * metadata.c (free_generic_class): Disable some code to fix the build.
2997
2998         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
2999
3000         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
3001         from the image mempool.
3002
3003         * metadata.c (free_generic_class): Free more data from the inflated class.
3004
3005         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
3006
3007         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
3008         mempool.
3009         (mono_type_create_from_typespec): Ditto.
3010
3011         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
3012         MonoImage to the caller.
3013         (mono_init_internal): Save the opened image in a global variable.
3014         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
3015
3016         * reflection.c (resolve_object): Fix a leak.
3017
3018         * metadata.c: Fix the freeing of data in the generics caches.
3019         
3020         * metadata.c (free_generic_inst): Comment this out to fix the build.
3021         (free_generic_class): Ditto.
3022
3023         * metadata.c: Free cached generic methods, instantinations and classes when
3024         they are removed from the caches.
3025         (mono_metadata_free_type): Free the type itself.
3026
3027         * class.c: Free the result of mono_class_inflate_generic_type () in a few
3028         places.
3029
3030 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
3031
3032         * boehm-gc.c: restrict managed allocs to __thread supporting
3033         architectures.
3034
3035 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
3036
3037         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
3038         (mono_generic_class_get_class): Fix a leak.
3039
3040         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
3041         mono_metadata_free_type ().
3042         (mono_metadata_inflate_generic_inst): Fix a leak.
3043
3044 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
3045
3046         * mono-debug.c (free_header_data): Fix a leak missed earlier.
3047
3048         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
3049         mempool.
3050
3051         * mono-debug.c (mono_debug_close_image): Fix call to 
3052         g_hash_table_remove ().
3053
3054 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
3055
3056         * icall-def.h: redirect all the string ctor to the managed
3057         CreateString () methods.
3058         * string-icalls.c, string-icalls.h: removed dead code for string
3059         ctors and icalls.
3060
3061 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
3062
3063         * mono-debug.c: Fix memory leaks.
3064
3065 2007-09-14  Jonathan Chambers <joncham@gmail.com>
3066
3067         * threads-types.h: Implement mono_hazard_pointer_set and 
3068         mono_hazard_pointer_clear macros using do/while(0) to fix
3069         compilation with MSVC.
3070         
3071         Code is contributed under MIT/X11 license.
3072
3073 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
3074
3075         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
3076         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
3077
3078 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
3079
3080         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
3081         icalls.
3082
3083 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
3084
3085         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
3086         managed-code allocated as well.
3087
3088 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
3089
3090         * class.c (mono_class_is_assignable_from): Add support for generic variance.
3091
3092 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
3093
3094         * boehm-gc.c: fixed the build after the AOT changes.
3095
3096 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
3097
3098         * wrapper-types.h: Add an ALLOC wrapper type.
3099
3100         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
3101         reference managed allocator methods.
3102
3103 2007-09-12  Marek Safar  <marek.safar@gmail.com>
3104
3105         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
3106         of Type array and not MonoType, a fix suggested by Hari.
3107         
3108 2007-09-12  Jonathan Chambers <joncham@gmail.com>
3109
3110         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
3111         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
3112         
3113         Code is contributed under MIT/X11 license.
3114
3115 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
3116
3117         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
3118
3119 2007-09-12  Marek Habersack  <mhabersack@novell.com>
3120
3121         * image.c (do_mono_image_open): if assembly file fails to open and
3122         MONO_IOMAP is in effect, try to find the path in a
3123         case-insensitive way.
3124
3125         * appdomain.c (mono_runtime_init): do not install postload hooks -
3126         tests show that MS.NET doesn't use anything of that sort to
3127         trigger the AppDomain.AssemblyResolve event.
3128         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
3129         made non-static.
3130         (mono_runtime_init): init portability helpers here.
3131
3132         * assembly.c (mono_assembly_load_with_partial_name): if other   
3133         attempts fail, trigger the AppDomain.AssemblyResolve event handler
3134         to resolve the assembly.
3135
3136         * domain-internals.h: added mono_try_assembly_resolve and marked
3137         it as internal.
3138
3139 2007-09-11  Jb Evain  <jbevain@novell.com>
3140
3141         * object-internals.h (MonoReflectionDynamicMethod): add
3142         a `MonoReflectionType *owner` field. The owner is used
3143         * reflection.c:
3144         (mono_reflection_create_dynamic_method): use the owner of the dynamic
3145         method as the class declaring the dynamic method.
3146         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
3147         dynamic method to the declaring type of the methodbuilder.
3148
3149 2007-09-11  Mark Probst  <mark.probst@gmail.com>
3150
3151         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
3152         rules for calling methods via reflection.
3153
3154 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
3155
3156         * reflection.c (resolve_object): Add support for MonoGenericClass. 
3157         Inflate MonoType's.
3158
3159 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
3160
3161         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
3162         provide a managed method that does fast allocations without needing
3163         a managed->unmanaged transition. Boehm GC implementation currently
3164         enabled for ptrfree objects on sane architectures.
3165
3166 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
3167
3168         * marshal.c, marshal.h: exported a couple of useful functions and
3169         added mono_mb_get_label () to easily handle backward branches.
3170
3171 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
3172
3173         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
3174
3175 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
3176
3177         * loader.c (find_method): Fixed the regression introduced while
3178         fixing bug #81466.
3179
3180 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
3181
3182         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
3183         well.
3184         
3185         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
3186         icall.c reflection.c: Pass a MonoGenericContext argument to 
3187         mono_lookup_dynamic_token ().
3188
3189         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
3190         #82744.
3191         
3192 2007-09-09  Robert Jordan  <robertj@gmx.net>
3193
3194         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
3195         for generic methods.
3196
3197         * object.c (mono_object_get_virtual_method): Handle generic methods.
3198         Fixes bug #78882.
3199
3200         Code is contributed under MIT/X11 license.
3201
3202 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
3203
3204         * image.c: fix locking in mono_image_load_file_for_image ().
3205
3206 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
3207
3208         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
3209         used only as a cache: added an icall to fill it.
3210
3211 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
3212
3213         * reflection.h: exposed mono_reflection_free_type_info
3214         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
3215         since mono_reflection_bind_generic_parameters makes a copy of it.
3216         * reflection.c (free_type_info): subinfos should be freed.
3217         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
3218         made non static.
3219         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
3220         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
3221         this fixes #82695 and #81726.
3222    
3223
3224 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
3225
3226         * process.h, process.c:  added support for user profile/info in
3227           ProcessStartInfo. For now only Windows works.
3228
3229 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
3230
3231         * metadata.c: consider the generic arguments when comparing
3232         signatures (bug #82614).
3233
3234 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
3235
3236         * cil-coff.h, image.c: updated assembly loader to cope with the
3237         PE32+ 64 bit file format.
3238
3239 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
3240
3241         * assembly.c, class.c, domain.c, loader.c: remove useless
3242         inclusion of cil-coff.h.
3243
3244 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
3245
3246         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
3247         if interface is marked with CoClassAttribute. 
3248    
3249         Code is contributed under MIT/X11 license.
3250
3251 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
3252
3253         * sgen-gc.c: ensure no object from the to space is copied again or finalized
3254         if it's seen twice in major collections.
3255
3256 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
3257
3258         * sgen-gc.c: big objects are not copied to the gray area, but they
3259         need to be considered for scanning, too, if they are brought alive
3260         by an object ready for finalizations or a survived one.
3261
3262 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
3263
3264         * sgen-gc.c: properly account the number of disappearing links when
3265         they are nullified.
3266
3267 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
3268
3269         * sgen-gc.c: share the code to scan the registered roots between the
3270         different types of collections.
3271
3272 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
3273
3274         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
3275
3276 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
3277
3278         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
3279         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
3280
3281 2007-08-28  Mark Probst  <mark.probst@gmail.com>
3282
3283         * security-manager.c (mono_security_manager_get_methods):
3284         LinkDemandSecurityException now has 2 arguments instead of 3.
3285
3286 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
3287
3288         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
3289         platforms which need it.
3290
3291 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
3292
3293         * sgen-gc.c: unregister thread data structures with a pthread_key_t
3294         dtor.
3295
3296 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
3297
3298         * threads.c: free the thread static data on thread exit.
3299
3300 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
3301
3302         * class.c: walk the hierarchy to find the generic definition for
3303         a class (fixes runtime part of bug #82498).
3304
3305 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
3306
3307         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
3308         ...
3309
3310         * image.c (mono_image_close): Here. Hopefully fixes #82510.
3311
3312 2007-08-24  Mark Probst  <mark.probst@gmail.com>
3313
3314         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
3315
3316 2007-08-24  Robert Jordan  <robertj@gmx.net>
3317
3318         * appdomain.c: don't perform the ':'->';' substitution on Win32.
3319
3320 2007-08-24  Jb Evain  <jbevain@novell.com>
3321
3322         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
3323         for byref types.
3324
3325 2007-08-24  Mark Probst  <mark.probst@gmail.com>
3326
3327         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
3328         #82286.
3329
3330 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
3331
3332         * assembly.c: Fix a warning.
3333         
3334 2007-08-23  Marek Habersack  <mhabersack@novell.com>
3335
3336         * appdomain.c: parse the <runtime> section looking for the probing
3337         element with the 'privatePath' attribute, which sets additional
3338         directories in which the runtime should look for assemblies.
3339
3340 2007-08-23  Robert Jordan  <robertj@gmx.net>
3341
3342         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
3343         Fixes #82499.
3344
3345 2007-08-23  Martin Baulig  <martin@ximian.com>
3346
3347         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
3348         _mono_debug_init_corlib() and remove it from the header file.
3349
3350 2007-08-23  Martin Baulig  <martin@ximian.com>
3351
3352         * mono-debug-debugger.c
3353         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
3354         don't notify the debugger about it.
3355
3356         * mono-debug-debugger.h
3357         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
3358
3359 2007-08-23  Robert Jordan  <robertj@gmx.net>
3360
3361         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
3362         Code is contributed under MIT/X11 license.
3363
3364 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
3365
3366         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
3367
3368 2007-08-22  Martin Baulig  <martin@ximian.com>
3369
3370         * mono-debug.c: Store debugging info on a per-domain basis and
3371         free it on domain unload.  Add support for unloading symbol files.
3372
3373         * mono-debug.h
3374         (MonoDebugList): New typedef.
3375         (MonoSymbolTable):
3376         - add `data_tables and `type_table'.
3377         - replace 'symbol_files' and `num_symbol_files' with a
3378           `MonoDebugList *'.
3379         (mono_debug_data_table): Removed.
3380         (mono_debug_list_add): New public function.
3381         (mono_debug_list_remove): New public function.
3382         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
3383         (mono_debug_init_2_memory): Renamed into
3384         mono_debug_open_image_from_memory().
3385         (mono_debug_close_image): New public function.
3386         (mono_debug_domain_create): Likewise.
3387         (mono_debug_domain_unload): Likewise.
3388         (MONO_DEBUGGER_VERSION): Bump to 60.
3389
3390         * mono-debug-debugger.h
3391         (MonoDebuggerEvent):
3392         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
3393         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
3394         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
3395         - rename `THREAD_CREATED' and `THREAD_EXITED' into
3396           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
3397         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
3398           meaning.
3399         (mono_debugger_add_symbol_file): Removed.
3400         (mono_debugger_add_type): Removed.
3401         (mono_debugger_lookup_type): Removed.
3402         (mono_debugger_lookup_assembly): Removed.
3403
3404         * domain.c
3405         (mono_domain_create): Call mono_debug_domain_create().
3406         (mono_init_internal): Call mono_debug_init_corlib().
3407
3408         * assembly.c
3409         (mono_assembly_close): Call mono_debug_close_image().
3410
3411 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
3412
3413         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
3414         mmap call.
3415
3416 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
3417
3418         * sgen-gc.c: ensure section->pin_queue_end is initialized
3419         correctly when non pinning objects in the section have been found.
3420
3421 2007-08-22  Marek Habersack  <mhabersack@novell.com>
3422
3423         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
3424         containing a list of directories separated by ':'. MSDN docs say
3425         the directories should be separated with ';'. Part of a bugfix for
3426         bug #81446
3427
3428 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
3429
3430         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
3431         it should MonoType and not MonoClass.
3432
3433 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
3434
3435         * culture-info-table.h : regenerated.
3436
3437 2007-08-20  William Holmes  <billholmes54@gmail.com>
3438
3439         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
3440          to call ReplaceFile Kernel32 on windows or in io-layer.
3441         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
3442         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
3443          as an internal call.
3444
3445         Code is contributed under MIT/X11 license.
3446
3447 2007-08-20  Jb Evain  <jbevain@novell.com>
3448
3449         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
3450         and MONO_EXCEPTION_FIELD_ACCESS.
3451
3452         * debug-helpers.[c|h]: new mono_field_full_name function.
3453
3454 2007-08-20  Mark Probst  <mark.probst@gmail.com>
3455
3456         * class.c: Removed class_security_level() and moved it to
3457         security-core-clr.c.
3458
3459         * security-core-clr.c, security-core-clr.h: class_security_level()
3460         is now public and renamed to mono_security_core_clr_class_level().
3461         It also looks for security attributes in the classes a class is
3462         nested in.
3463
3464 2007-08-20  Mark Probst  <mark.probst@gmail.com>
3465
3466         * security-core-clr.c, security-core-clr.h: CoreCLR security
3467         utility functions.
3468
3469         * Makefile.am: Added security-core-clr.[ch].
3470
3471         * security-manager.c, security-manager.h: Functions and enum for
3472         setting and getting the security mode.
3473
3474         * class.c: CoreCLR security checks.
3475
3476 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
3477
3478         * icall-def.h, process.c, process.h: implemented icall to get
3479         user/system processor times.
3480
3481 2007-08-17  Mark Probst  <mark.probst@gmail.com>
3482
3483         * domain.c, threads.c, class-internals.h, domain-internals.h: New
3484         reader-lock-free jit_info_table.
3485
3486 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
3487
3488         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
3489
3490         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
3491
3492         * object-internals.h (MonoException): Add missing _data member.
3493
3494 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
3495
3496         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
3497         checking that only methods with matching qname or fqname are picked
3498         from implemented interfaces.
3499
3500 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
3501
3502         * verify.c (do_newarr):added, do type verification of
3503         newarr ops, push the right value on the eval stack.
3504         * verify.c (mono_method_verify): use do_newarr
3505
3506
3507 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
3508
3509         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
3510         factored the common code into get_boxable_mono_type, which
3511         is now using mono_type_get_full, this fixed byref related tests.
3512
3513 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
3514
3515         * class.c: added mono_type_get_full, this function has the same
3516         behavior of mono_class_get_full but the returned MonoType has
3517         all metadata of the associated token in case of a typespec token.
3518         * class.c: added mono_type_retrieve_from_typespec, used by 
3519         mono_type_get_full to retrieve the token type.
3520         * class.c (mono_class_create_from_typespec): changed to use
3521         mono_type_retrieve_from_typespec.
3522         * class.c (mono_ldtoken): changed to use mono_type_get_full
3523         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
3524         * class-internals.h: exported mono_type_get_full for internal use.
3525
3526 2007-08-16  Jb Evain  <jbevain@novell.com>
3527
3528         * domain.c (supported_runtimes): add entry for
3529         the 'moonlight' runtime version.
3530
3531 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
3532
3533         * verify.c (mono_method_verify): small typo sliped in.  
3534
3535 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
3536
3537         * verify.c (do_unbox_value): added, do type verification of
3538         unboxing ops
3539         * verify.c (mono_method_verify): use do_unbox_value
3540
3541
3542 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
3543
3544         * verify.c (dump_stack_value): fixed typo, was printing string
3545         instead of object on stack.
3546         * verify.c (do_box_value): moved the byref check up as it leads
3547         to invalid code and should be done earlier.
3548         * verify.c: improved error messages for and ldobj
3549
3550 2007-08-15  William Holmes  <billholmes54@gmail.com>
3551
3552         * marshal.c (emit_marshal_custom): Omit the call to 
3553           marshal_native_to_managed when calling native to managed 
3554           and the argument is specified as an out argument.
3555
3556         Code is contributed under MIT/X11 license.
3557
3558 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
3559
3560         * verify.c: fixed the type checks for generics, function pointers and vectors.
3561         Added type verification for ldobj and ldtoken. The verifier
3562         would segfault if header or signature of a method contained references
3563         to non-existant types.
3564
3565 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
3566
3567         * marshal.c (cominterop_get_ccw): Patch from
3568         Bill Holmes to no walk up interface hierarchy. 
3569         All parent methods should be present in the interface for COM.
3570    
3571         Code is contributed under MIT/X11 license.
3572
3573 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
3574
3575         * marshal.c (emit_marshal_com_interface): Patch from
3576         Bill Holmes to handle COM Interfaces as return values
3577         for native->managed calls.
3578    
3579         Code is contributed under MIT/X11 license.
3580
3581 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
3582
3583         * marshal.c (cominterop_get_idispatch_for_object): Implement
3584         for runtime callable wrappers.
3585    
3586         Code is contributed under MIT/X11 license.
3587
3588 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
3589
3590         * pedump.c (main): changed from mono_init to mono_init_from_assembly
3591         so 2.0 types are accessible
3592
3593
3594 2007-08-13  Miguel de Icaza  <miguel@novell.com>
3595
3596         * domain.c (mono_init_internal): Call mono_assembly_load_friends
3597         once we load mscorlib.   Due to the order in which we initialize,
3598         the mono_assembly_load_full routine that loads mscorlib did not
3599         load friends.   We now load it once we load the
3600         mono_defaults.internals_visible_class class. 
3601
3602         * assembly.c: Expose the mono_load_friend_assemblies method.
3603
3604 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
3605
3606         * verify.c: improved the handling of boxing, better
3607         type checking for unary ops and conversion. Fix bug
3608         regarding managed pointer compatibility checking
3609
3610 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
3611
3612         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
3613
3614         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
3615
3616 2007-08-09  Raja R Harinath  <rharinath@novell.com>
3617
3618         * reflection.c (dup_type): Remove.
3619         * class.c (dup_type): Remove.
3620         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
3621         instead of the dodgy 'dup_type'.
3622         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
3623         handle the case where 'dup_type' needed the second argument.
3624
3625 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
3626
3627         * domain.c: Fix a warning.
3628
3629 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
3630
3631         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
3632         checking that methods with the same fqname are not overridden
3633         with a method from an ancestor.
3634
3635 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
3636
3637         * threads.c (free_thread_static_data_helper): Avoid a crash if
3638         thread->static_data is not yet set.
3639
3640 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
3641
3642         * marshal.c: Use correct image when emitting
3643         native wrapper for COM calls.
3644    
3645         Code is contributed under MIT/X11 license.
3646
3647 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
3648
3649         * icall-def.h, security.c, security.h :
3650           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
3651
3652 2007-08-07  Martin Baulig  <martin@ximian.com>
3653
3654         * mono-debug-debugger.h
3655         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
3656
3657         * domain.c (mono_domain_free): Call
3658         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
3659
3660 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
3661
3662         * verify.c (check_underflow, check_overflow): error message now returns IL offset
3663         * verify.c (in_same_block): code should test if either offset is inside the clauses
3664         * verify.c (mono_method_verify): push the exception into the eval stack of exception
3665         and filter blocks
3666
3667 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
3668
3669         * image.c (mono_image_close): Fix a leak.
3670
3671         * object.c (mono_runtime_invoke_array): Avoid using alloca.
3672
3673         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
3674
3675 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
3676
3677         * domain.c, threads.c, threads-types.h: fix memory retention issue
3678         with thread static variables not being cleared on domain unload.
3679         Reuse thread static slots after domain unload.
3680
3681 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
3682
3683         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
3684         nullable type.
3685
3686         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
3687         now done in mono_runtime_invoke_array.
3688
3689         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
3690         receiver is a nullable type.
3691
3692         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
3693         generic parameter.
3694
3695 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
3696
3697         * marshal.c: Implement COM Objects as return type for 
3698         managed->unmanaged calls. Added Release calls for COM Object
3699         out/return values in managed->unmanaged calls.
3700
3701         Code is contributed under MIT/X11 license.
3702
3703 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
3704
3705         * threads.h, threads-type.h: move the hazard pointer declarations
3706         to the private header.
3707
3708 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
3709
3710         * file-io.c, appdomain.c: memory leak fixes.
3711
3712 2007-08-02  Dick Porter  <dick@ximian.com>
3713
3714         * socket-io.c
3715         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
3716         SO_REUSEADDR setting into io-layer/sockets.c.
3717
3718 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
3719
3720         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
3721         from Object when called on a generic parameter. Fixes #82211.
3722
3723 2007-08-01  Dick Porter  <dick@ximian.com>
3724
3725         * file-io.c (convert_share): Test FileShare values bit-by-bit.
3726         Fixes bug 79250 yet again.
3727
3728 2007-07-30  Martin Baulig  <martin@ximian.com>
3729
3730         Merged the `debugger-dublin' branch.
3731
3732         * mono-debug.h
3733         (MonoDebugDataTable): New typedef.
3734         (MonoDebugMethodAddressList): New typedef.
3735         (MonoDebugWrapperData): Removed.
3736         (MonoDebugSymbolTable): Removed `current_data_table',
3737         `current_data_table_size', `current_data_table_offset'.
3738         (MonoDebugDataItemType): Moved into mono-debug.c.
3739         (MonoDebugMethodJitInfo): Remove `address'.
3740         (mono_debug_data_table): New global variable.
3741         (mono_debug_lookup_method_addresses): New public function.
3742         (mono_debug_find_method): Take a `MonoMethod *', not a
3743         `MonoDebugMethodInfo *'.
3744
3745         * mono-debug.c: Drop support for the old symbol tables.
3746
3747 2007-06-28  Martin Baulig  <martin@ximian.com>
3748
3749         * mono-debug.c (mono_debug_debugger_version): New public variable.
3750
3751 2007-07-31  William Holmes  <billholmes54@gmail.com>
3752
3753         * metadata.c Changed mono_type_create_from_typespec to not insert
3754           the type into the hash map until after
3755           do_mono_metadata_parse_type has completed.
3756         Fixes Bug #82194
3757         Code is contributed under MIT/X11 license.
3758
3759 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
3760
3761         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
3762         generic parameter. Fixes #82211.
3763
3764 2007-07-27  Jb Evain  <jbevain@novell.com>
3765
3766         * pedump.c (dump_metadata, dump_metadata_header): dump
3767         versions contained in the metadata header.
3768
3769 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
3770
3771         * threads.c: register small_id_table with the GC.
3772
3773 2007-07-27  Mark Probst  <mark.probst@gmail.com>
3774
3775         * threads.c, threads.h, class-internals.h, object-internals.h:
3776         Hazard pointers, to be used by lock-free parallel algorithms.
3777
3778 2007-07-26  Dick Porter  <dick@ximian.com>
3779
3780         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
3781         routine on non-windows platforms, as I've not managed to think of
3782         a non-kludgy way of doing this.  Finishes off bug 78739.
3783
3784 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
3785
3786         * object.c: properly setup interface_bitmap in proxy vtables.
3787
3788 2007-07-25  Marek Habersack  <mhabersack@novell.com>
3789
3790         * appdomain.c (get_shadow_assembly_location): do not use TickCount
3791         to create unique shadow copy target directories, use the domain's
3792         serial number instead. Each domain gets a unique target directory
3793         that way.
3794
3795         * domain.c (mono_domain_create): added code to increment domain
3796         shadow copy serial number and cache the value in the current
3797         domain structure.
3798
3799         * domain-internals.h (struct _MonoDomain): added a new field -
3800         shadow_serial to hold the serial number used in generation of
3801         shadow-copy directories. This is to make sure that the directory
3802         name is unique for each and every domain created. We avoid a race
3803         condition with overriding assemblies already in use by other app
3804         domains.
3805
3806 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
3807
3808         * class.c (mono_bounded_array_class_get): fixed memory leak when 
3809         binding generic parameters.
3810
3811 2007-07-24  Raja R Harinath  <rharinath@novell.com>
3812
3813         * metadata.c (do_mono_metadata_parse_generic_class): Use
3814         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
3815         error.
3816
3817 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
3818
3819         * loader.c, class-internals.h, reflection.c: removed the per-method
3820         generics hashtable: we use the global one through the call of
3821         mono_class_inflate_generic_method ().
3822
3823 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
3824
3825         * class.c, metadata.c, class-internals.h: introduce yet another
3826         generics global cache for inflated methods (fixes 98% of the perf
3827         issue in bug #81806).
3828
3829 2007-07-23  Raja R Harinath  <rharinath@novell.com>
3830
3831         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
3832         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
3833         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
3834         return a MonoGenericInst containing (a copy) of those types.
3835         (mono_metadata_inflate_generic_inst): Update to changes.
3836         (mono_metadata_parse_generic_inst): Likewise.
3837         (mono_get_shared_generic_inst): Likewise.
3838         * reflection.c (mono_class_bind_generic_parameters): Likewise.
3839         (mono_reflection_bind_generic_method_parameters): Likewise.
3840         * metadata-internals.h: Likewise.
3841         * icall.c (free_generic_context): Kill.
3842         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
3843
3844         * reflection.c (reflection_methodbuilder_to_mono_method): Use
3845         mono_metadata_type_dup.
3846         * marshal.c (mono_mb_create_method): Likewise.
3847
3848         * metadata.c (mono_metadata_type_dup): Rename from
3849         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
3850         MonoImage.  Handle a few more cases, esp. when no mempool is given.
3851         * marshal.c, metadata-internals.h: Update to changes.
3852
3853 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
3854
3855         * class.c: fixed a small leak for array classes and removed warning.
3856
3857 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
3858
3859         * loader.c (mono_method_get_param_token): Make this work on generic methods.
3860         Return 0x8000000 for return parameters. Fixes #82161.
3861
3862 2007-07-21  Marek Habersack  <grendello@gmail.com>
3863
3864         * appdomain.c (get_shadow_assembly_location): append the current
3865         ticks value to the path. Avoids overwriting the same assemblies by
3866         several threads at the same time.
3867
3868 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
3869         and Raja R Harinath  <rharinath@novell.com>
3870
3871         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
3872         Simplify slightly.
3873         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
3874         property for testing if a method is a generic method definition.
3875
3876 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
3877
3878         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
3879
3880 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3881
3882         * verify.c: used function from private branch, reverted to the one in class.h 
3883
3884 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3885
3886         * verify.c: a typo slipped in and the code wont compile
3887
3888 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3889
3890         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
3891         disabled box instruction as it is doing the wrong thing
3892         improved stack dump messages, now it is easier to debug type related issues
3893
3894
3895 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
3896
3897         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
3898
3899 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3900
3901         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
3902         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
3903         grouped with class and valuetype. This change will simply 
3904         the code as it should be handled just like unmanaged pointers.
3905
3906 2007-07-19  Mark Probst  <mark.probst@gmail.com>
3907
3908         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
3909
3910 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3911
3912         * verify.c: several stack merge issues fixed, reference comparisons now
3913         check the type size. strict type check now works correctly.
3914         added more uses of IS_MANAGED_POINTER macro.
3915         fixed issues pointed by running the test suite against .net.
3916         
3917
3918 2007-07-19  Mark Probst  <mark.probst@gmail.com>
3919
3920         * class.c, loader.c, class-internals.h: Removed the
3921         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
3922         defines.
3923
3924         * icall.c: Better error checking in some internal reflection
3925         methods.
3926
3927 2007-07-18  William Holmes  <billholmes54@gmail.com>
3928
3929         * filewatcher.c : removed unused variable 'filename' in 
3930           ves_icall_System_IO_FSW_SupportsFSW
3931
3932 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
3933
3934         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
3935         obsolete, removed.
3936
3937 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
3938
3939         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
3940         
3941         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
3942
3943 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
3944
3945         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
3946         Implement generics support.
3947         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
3948
3949         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
3950         type_args and method_args arguments.
3951         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
3952         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
3953         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
3954
3955 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
3956
3957         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
3958           It adds a rootimage parameter to mono_reflection_get_type_internal,
3959           adds new function mono_reflection_get_type_with_rootimage and use
3960           the rootimage to resolve the types instead of the current image
3961
3962 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3963
3964         * culture-info-table.h: Forgot to update after r78304.
3965
3966 2007-07-13  Raja R Harinath  <rharinath@novell.com>
3967
3968         * class.c (mono_class_is_open_constructed_type)
3969         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
3970
3971 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
3972
3973         * class.c (mono_bounded_array_class_get):  method fails if used with
3974         an incomplete TypeBuilder enum (no basetype field), fixed it by 
3975         avoiding calculating the size for such array as it cannot be instantiated.
3976         Fix bug #82015
3977
3978 2007-07-12  Raja R Harinath  <rharinath@novell.com>
3979
3980         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
3981         field.
3982         * metadata.c, reflection.c: Update to changes.
3983
3984 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
3985
3986         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
3987         mono_class_is_valid_enum, they are used to valide a enum when loading.
3988         * reflection.c: used new functions to throw TypeLoadException when and
3989         invalid enum is build with TypeBuilder. Fixes #82018
3990   
3991 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
3992
3993         * object.c: forgot commit of mono_class_setup_methods () to access
3994         iface->methods.
3995         * object-internals.h: added a few more handy fields to
3996         MonoIMTCheckItem.
3997
3998 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
3999
4000         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
4001         iface->methods.
4002
4003 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
4004
4005         * class-internals.h, object-internals.h, object.c: IMT-based
4006         interface invocation core from Massimiliano Mantione
4007         (massi@ximian.com) with a reworked arch-specific interface,
4008         bsearch implementation and a few bugfixes and memory savings by me.
4009
4010 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
4011
4012         * class.c (mono_class_create_from_typedef): mono would segfault if 
4013         an enum did not have a __value field. It now throws a TypeLoadException
4014         for such cases. Fix bug #82022
4015
4016 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
4017
4018         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
4019
4020 2007-07-09  Mark Probst  <mark.probst@gmail.com>
4021
4022         * class.c (mono_class_init): If a class is already inited but has
4023         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
4024
4025 2007-07-09  Mark Probst  <mark.probst@gmail.com>
4026
4027         * class.c: Properly handle the case of an unimplemented interface
4028         method.  Fixes: 81673.
4029
4030 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
4031
4032         * class-internals.h, object.c: cleanup patch from massi: use
4033         MonoVTable->interface_bitmap since the vtable interfaces offset array
4034         is going away.
4035
4036 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
4037
4038         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
4039         GetMDStreamVersion icall instead.
4040
4041 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
4042
4043         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
4044         not use mono_dl_build_path() with a full library name: makes
4045         fallbacks to libgaim and libfam work.
4046
4047 2007-07-06  William Holmes  <billholmes54@gmail.com>
4048
4049         * assembly.c: Added a continue statement in probe_for_partial_name when
4050          parse_assembly_directory_name fails.  Fixes : 82002
4051
4052 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
4053
4054         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
4055         and added a verification  for TYPEDBYREF.
4056         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
4057         make native int interchangeable with int32 and some small cleanup and formating.
4058         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
4059         handle byref of byref.
4060         * verify.c (push_local): handle byref of byref.
4061         * verify.c (do_binop): invalid mix of values is unverifiable
4062         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
4063         added visibility checks
4064         * verify.c (field related method): added visibility checks
4065         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
4066
4067 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
4068
4069         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
4070         string.
4071
4072 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
4073
4074         * profiler.c (mono_profiler_load): Fix an off-by-one error.
4075
4076         * marshal.c (emit_marshal_string): When returning a string from managed code,
4077         allways make a copy even for unicode strings. Fixes #81990.
4078
4079 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
4080
4081         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
4082         of byref generic inst types (bug #81997).
4083
4084 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
4085
4086         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
4087         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
4088
4089 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
4090
4091         * marshal.c (emit_marshal_string): Add support for unicode strings in
4092         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
4093
4094 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
4095
4096         * verify.c: field load/store are now verified, missing only access checks now
4097
4098 2007-06-28  Martin Baulig  <martin@ximian.com>
4099
4100         * mono-debug.c (mono_debug_debugger_version): New public variable.
4101
4102 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
4103
4104         * locales.c: When constructing DateTimeFormat or NumberFormat for
4105         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
4106         MonoCultureInfo contructed from the current locale is always
4107         read-only and has UseUserOverride set to true. All MonoCultureInfo
4108         instances returned for GetCultures have both IsReadOnly and
4109         UseUserOverride set to true. Fixes part of bug #81930.
4110
4111 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
4112
4113        * icall-def.h: Update System.__ComObject icalls
4114        * marshal.c: Avoid managed transition (and object creation)
4115        when looking up COM interface in RCW.
4116        * marshal.h: Ditto.
4117        
4118        Code is contributed under MIT/X11 license.
4119
4120 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
4121
4122         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
4123         to avoid crashes during assembly unloading.
4124
4125 2007-06-22  Raja R Harinath  <rharinath@novell.com>
4126
4127         Fix MethodInfo.IsGenericMethodDefinition
4128         * reflection.c (mono_reflection_bind_generic_method_parameters):
4129         Rearrange code to ensure we always uses a generic method definition.
4130         * class.c (mono_class_inflate_generic_method_full): Set
4131         'generic_container' field only for generic method definitions.
4132         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
4133         Use presense of 'generic_container' field as indication of being a
4134         generic method definition.
4135
4136 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
4137
4138         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4139
4140         * object-internals.h: Reflect changes in the layout of the managed Delegate
4141         class.
4142         
4143         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
4144         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
4145         runtime memory used by the dynamic method. Fixes #77146.
4146
4147 2007-06-21  Dick Porter  <dick@ximian.com>
4148
4149         * file-io.h: 
4150         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
4151         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
4152         81767.
4153
4154 2007-06-21  Raja R Harinath  <rharinath@novell.com>
4155
4156         * reflection.c (method_encode_methodspec): Add a tripwire.
4157         * class.c (inflate_generic_type): The fully open generic type is
4158         not the same as the generic type definition.
4159
4160 2007-06-21  Martin Baulig  <martin@ximian.com>
4161
4162         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
4163
4164         * mono-debug-debugger.h
4165         (MonoDebuggerBreakpointInfo): Removed.
4166         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
4167         (mono_debugger_remove_breakpoint): Likewise.
4168         (mono_debugger_breakpoint_callback): Likewise.
4169         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
4170
4171 2007-06-21  Raja R Harinath  <rharinath@novell.com>
4172
4173         * metadata.c (mono_metadata_lookup_generic_class): The fully open
4174         generic type is not the same as the generic type definition.
4175         * class.c (mono_generic_class_get_class): Likewise.
4176
4177 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
4178
4179         * icall.c: The second argument to 
4180         System.Reflection.MethodBase.GetMethodFromHandleInternalType
4181         is a MonoType not a MonoClass.
4182
4183 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
4184
4185         * verify.c: support for function pointers in the verifier
4186
4187 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
4188
4189         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
4190
4191 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
4192
4193         * assembly.c: removed Mono.Data.SqliteClient from the list of
4194         forward-compatible assemblies as it breaks the ABI (bug #81899).
4195
4196 2007-06-19  Raja R Harinath  <rharinath@novell.com>
4197
4198         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
4199         lookup/update with the loader lock.
4200         * reflection.c (mono_class_bind_generic_parameters): No need to
4201         protect mono_metadata_lookup_* with the loader lock.
4202         * class.c (inflate_generic_type): Likewise.
4203         
4204         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
4205         on a generic instantiated type.
4206
4207 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
4208
4209         *verify.c: produce meanfull error messages on verification error
4210         *verify.c: fixed some cases of verification errors reported as validation errors
4211         *pedump.c: fixed the error name array, now it shows validation errors properly
4212         *verify.h: fixed the contant that should be used for verification errors
4213
4214 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
4215
4216         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
4217         for bug #77596, 81858 and 80743 (generics data structures on domain
4218         unload).
4219
4220 2007-06-15  Raja R Harinath  <rharinath@novell.com>
4221
4222         Avoid allocating 'MonoGenericContext' on the heap.
4223         * class-internals (_MonoMethodInflated::context): Make field
4224         inline, not a pointer.
4225         * loader.c (method_from_methodspec): Allocate 'new_context' on the
4226         stack.  Use the context embedded within the inflated method as the
4227         hash key, rather than 'new_context'.
4228         * class.c (inflate_generic_context): Simplify.  Return a struct
4229         rather than allocating on the heap.
4230         (mono_class_inflate_generic_method_full): Update to changes.  Now,
4231         doesn't salt away a copy of the context -- simplifying the
4232         lifetime rules of a 'MonoGenericContext *'.
4233         (mono_method_get_context): Return pointer to embedded context.
4234         (setup_generic_array_ifaces): Allocate temporary context on stack.
4235         * reflection.c (inflate_mono_method): Likewise.
4236         (mono_reflection_bind_generic_method_parameters): Likewise.
4237         Use the context embedded within the inflated method as the hash key.
4238
4239         Avoid a source of allocation of 'MonoGenericContext'.
4240         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
4241         and 'cached_context' fields into embedded 'MonoGenericContext' field.
4242         * class.c: Update to changes.
4243         (mono_generic_class_get_context): Simplify drastically.  Now just
4244         returns a pointer to the field.
4245         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
4246         argument as a const pointer.
4247         (mono_metadata_generic_context_equal): Likewise.
4248         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
4249         Update to changes.
4250
4251 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
4252
4253         * verify.c improved the handling of brtrue/brfalse, factored out common code
4254
4255 2007-06-14  Raja R Harinath  <rharinath@novell.com>
4256
4257         Kill MonoGenericMethod.
4258         * class-internals.h (MonoGenericContext::method_inst): Rename from
4259         'gmethod' and convert to a MonoGenericInst.
4260         (MonoGenericMethod): Remove.
4261         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
4262         * loader.c (method_from_methodspec): Update to changes.  Use a
4263         MonoGenericContext as the key to the hashtable.
4264         * metadata.c (mono_metadata_generic_context_equal): Rename from 
4265         'mono_metadata_generic_method_equal' and take MonoGenericContext.
4266         (mono_metadata_generic_context_hash): Likewise from
4267         'mono_metadata_generic_method_hash'.  Change hash function.
4268         (mono_metadata_load_generic_params): Update to changes.
4269         (mono_get_shared_generic_method): Remove.
4270         * metadata-internals.h (mono_get_shared_generic_method): Remove.
4271         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
4272         (inflate_generic_context): Likewise.
4273         (mono_class_inflate_generic_method_full): Likewise.
4274         (setup_generic_array_ifaces): Likewise.
4275         (mono_class_create_from_typespec): Likewise.
4276         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
4277         (method_encode_methodspec): Update callsite.
4278         (reflection_methodbuilder_to_mono_method): Update to changes.
4279         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
4280         MonoGenericContext as the key to the hashtable.
4281         (inflate_mono_method): Update to changes.
4282
4283         * class-internals.h (MonoGenericMethod::container): Remove.
4284         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
4285
4286 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
4287
4288         * profiler-private.h, profiler.c, profiler.h: added API to profile
4289         exception events.
4290
4291 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
4292
4293         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
4294
4295 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
4296
4297         * verify.c: method invocation is now validated, now we verify parameter types on stack.
4298         Fixed overflow and underflow not aborting the verification process.
4299
4300 2007-06-13  Mark Probst  <mark.probst@gmail.com>
4301
4302         * class-internals.h (MonoStats): Added stats entries for dynamic
4303         code allocations.
4304
4305 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
4306
4307         * loader.c (mono_free_method): Free header->locals and header->clauses.
4308
4309         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
4310         dynamic case.
4311
4312         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
4313
4314         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
4315
4316 2007-06-12  Raja R Harinath  <rharinath@novell.com>
4317
4318         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
4319         the tables.
4320
4321 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
4322
4323         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
4324
4325 2007-06-11  Raja R Harinath  <harinath@gmail.com>
4326
4327         MonoGenericMethod on a diet
4328         * class-internals.h (_MonoMethodInflated::reflection_info): Move
4329         here ...
4330         (_MonoGenericMethod::reflection_info): ... from here.
4331         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
4332         Update to changes.
4333         * reflection.c (inflate_mono_method): Likewise.
4334         (mono_reflection_bind_generic_method_parameters): Likewise.
4335
4336 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
4337
4338         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
4339         *verify.c: factored long ldarg forms to share code with short forms
4340
4341 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
4342
4343         *verify.c: fixed code formating factored some duplicate code
4344         into a new function
4345
4346         *verify.h: fixed binary incompatibility introduced earlier
4347
4348         *pedump.c: fixed formating
4349
4350 2007-06-11  Raja R Harinath  <harinath@gmail.com>
4351
4352         Fix assertion when disassembling Mono.C5.dll
4353         * loader.c (method_from_methodspec): Avoid inflating a method
4354         twice with the same context.  If the methodref is inflated, use
4355         the declaring method instead.
4356
4357         * class.c (mono_class_from_generic_parameter): Fix case similar to
4358         bug #81830 handled below, but for method containers.
4359
4360 2007-06-10  Raja R Harinath  <harinath@gmail.com>
4361
4362         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
4363         get_shared_generic_class.  Directly inflate the instance.
4364         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
4365         (inflate_generic_class): Delete.
4366         (get_shared_generic_class): Delete.  Move setting of
4367         'cached_class' and 'cached_context' ...
4368         * metadata.c (mono_metadata_lookup_generic_class): ... here.
4369
4370         * metadata.c (mono_metadata_lookup_generic_class): Change
4371         signature to take the components of a MonoGenericClass rather than
4372         an allocated MonoGenericClass.  Change semantics to be intern-like.
4373         * reflection.c (mono_class_bind_generic_parameters): Update to
4374         changes.  Make locking region tighter.
4375         * class.c (inflate_generic_class): Update to changes.
4376         (get_shared_generic_class): Likewise.
4377         * metadata-internals.h: Likewise.
4378
4379         * reflection.c (mono_class_bind_generic_parameters): Take and
4380         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
4381         (mono_reflection_bind_generic_parameters): Use
4382         'mono_class_bind_generic_parameters' rather than duplicate the code.
4383         * class.c (mono_bounded_array_class_get): Update to changes.
4384         * object-internals.h: Likewise.
4385
4386         * reflection.c (mono_class_bind_generic_parameters): Only support
4387         parameterizing generic type definitions.  Remove support for other
4388         open types.
4389
4390 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
4391
4392         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
4393
4394         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
4395         in the dynamic case.
4396
4397 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
4398
4399         * threads.c: When cleaning up thread, reset the Background bit.
4400         Fixes bug #81720.
4401
4402 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
4403
4404        * metadata.c: Move variable declarations to top of scope.
4405        * verify.c: Move variable declarations to top of scope.
4406
4407        Code is contributed under MIT/X11 license.
4408
4409 2007-06-08  Raja R Harinath  <rharinath@novell.com>
4410
4411         * reflection.c (mono_class_bind_generic_parameters): Replace
4412         open-coded loop with mono_metadata_inflate_generic_inst.
4413
4414         * class.c (get_shared_generic_class): Don't call
4415         mono_get_shared_generic_inst.  Use the container's own
4416         'class_inst'.
4417
4418         * metadata.c (mono_metadata_load_generic_params): Move
4419         initialization of 'context' field here from ...
4420         * class.c (mono_class_create_from_typedef): ... here, and ...
4421         * loader.c (mono_get_method_from_token): ... here.
4422
4423         * class.c (get_shared_generic_class): Rename from
4424         mono_get_shared_generic_class and make static.
4425         (mono_get_shared_generic_inst): Move to metadata.c.
4426         * loader.c (mono_get_shared_generic_method): Likewise.
4427         * class-internals.h, metadata-internals.h: Update to changes.
4428
4429         Fix #81830
4430         * class.c (mono_class_from_generic_parameter): Don't assume a
4431         generic container owner exists.  Generic containers from monodis
4432         don't have any.
4433
4434 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
4435
4436         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
4437         * verify.h: new typedefs to returns the non-verifiable status
4438         * verify.c: initial implementation of generics, stack merging and object compatibility check
4439
4440 2007-06-06  Mark Probst  <mark.probst@gmail.com>
4441
4442         * class.c, image.c, class-internals.h (MonoImage): class_cache is
4443         a MonoInternalHashTable again (fixed bug in internal hash table
4444         code).
4445
4446 2007-06-06  Mark Probst  <mark.probst@gmail.com>
4447
4448         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
4449         MonoInternalHashTable again (fixed bug in internal hash table
4450         code).
4451
4452 2007-06-06  Mark Probst  <mark.probst@gmail.com>
4453
4454         * class.c, image.c, class-internals.h, domain.c,
4455         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
4456         changes.  Have to figure out what makes them break the SWF
4457         regression.
4458
4459 2007-06-04  Mark Probst  <mark.probst@gmail.com>
4460
4461         * class.c, image.c, class-internals.h (MonoImage): class_cache is
4462         a MonoInternalHashTable now.
4463
4464 2007-06-04  Mark Probst  <mark.probst@gmail.com>
4465
4466         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
4467         MonoInternalHashTable now.
4468
4469 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
4470
4471         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
4472         invoke_impl code.
4473
4474         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
4475
4476         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
4477         dependent trampoline.
4478
4479         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4480
4481         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
4482
4483 2007-05-29  Robert Jordan  <robertj@gmx.net>
4484
4485         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
4486
4487 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
4488
4489         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
4490
4491 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
4492
4493        * marshal.c: Fix interface lookup loops for
4494        cominterop_get_com_slot_for_method and 
4495        cominterop_get_method_interface. Only need to lookup
4496        if type is a class, else use interface type method is on.
4497
4498        Code is contributed under MIT/X11 license.
4499
4500 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
4501
4502         * reflection.c: HasSecurity can be present even if no specially 
4503         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
4504         SecurityAttribute). Fix CAS regression tests on buildbot.
4505
4506 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
4507
4508        * appdomain.c: Add configure checks for header files.
4509        * image.c: Add configure checks for header files.
4510        * file-io.c: Add configure checks for header files.
4511        * debug-mono-symfile.c: Add configure checks for header files.
4512        * threadpool.c: Add configure checks for header files.
4513        * console-io.c: Add configure checks for header files.
4514        * profiler.c: Add configure checks for header files.
4515        * rawbuffer.c: Add configure checks for header files.
4516        * icall.c: Add configure checks for header files.
4517        * rand.c: Add configure checks for header files.
4518        * socket-io.c: Add configure checks for header files.
4519
4520        Code is contributed under MIT/X11 license.
4521
4522 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
4523
4524         * reflection.c (mono_custom_attrs_from_builders): Remove the 
4525         assertion as it breaks the build.
4526         
4527         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
4528
4529         * reflection.c (lookup_custom_attr): Make a copy here too.
4530
4531         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
4532         dynamic images.
4533
4534         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
4535         images.
4536
4537         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
4538         info.
4539
4540 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
4541
4542         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
4543         (load_cattr_value): Ditto.
4544
4545 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
4546
4547         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
4548
4549 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
4550
4551         * threads.c: In "start_wrapper", set apartment_state to MTA if
4552         apartment_state is Unknown and we're running on 2.0 profile or
4553         higher.
4554         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
4555         to main method, then set apartment_state to Unknown on 1.0 profile,
4556         and MTA on 2.0 profile.
4557
4558 2007-05-16  Jb Evain  <jb@nurv.fr>
4559
4560         * class-internals.h (MonoDefaults): Add an attribute_class and
4561           customattribute_data_class.
4562         * domain.c (mono_init_internal): Populate them.
4563         * reflection.c: Use them to remove duplicates. Make a vew
4564         MonoClass variables `static'.
4565
4566 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
4567
4568         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
4569         step in implementing IMT, so that all isinst checks now can go
4570         through the bitmap.
4571         This was needed because vtables for TransparentProxy need to look
4572         like the vtable of the "target" class, so they need to point to
4573         its interface bitmap directly.
4574
4575         * object.c: inside "mono_class_create_runtime_vtable" and
4576         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
4577
4578 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
4579
4580         * object-internals.h
4581           culture-info.h : added territory field in MonoCulture and
4582           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
4583         * locales.c : fill territory field above too.
4584         * culture-info-table.h : regenerated.
4585
4586 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
4587
4588         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
4589         Fixes #81599.
4590
4591 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
4592
4593         * object.c: Always initialize apartment, even if 
4594         there is no custom attributes on entry point.
4595         
4596         Code is contributed under MIT/X11 license.
4597
4598 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
4599
4600         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
4601         * metadata.c: If no encoding is set, check for unicode
4602         on class.
4603         
4604         Code is contributed under MIT/X11 license.
4605
4606 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
4607
4608         * threads.c: Handle if mono_thread_current returns NULL 
4609         
4610         Code is contributed under MIT/X11 license.
4611
4612 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
4613
4614         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
4615         in start_wrapper. Added mono_thread_init_apartment_state and
4616         mono_thread_cleanup_apartment_state.
4617         * object.c: Initialize thread apartment state on main thread
4618         by checking for STAThreadAttribute on entry point.
4619         * object-internals.h: Add apartment_state field to MonoThread.
4620         * threads-types.h: Add unmanaged definition of 
4621         System.Threading.ApartmentState, MonoThreadApartmentState.
4622         
4623         Code is contributed under MIT/X11 license.
4624         
4625 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
4626
4627         * class.c: Fix windows build.
4628         * class-internals.h: Fix windows build.
4629         
4630         Code is contributed under MIT/X11 license.
4631
4632 2007-05-08  Robert Jordan  <robertj@gmx.net>
4633
4634         * process.c (CreateProcess_internal):
4635         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
4636         .CreateNoWindow was specified. Fixes #81496.
4637
4638 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
4639
4640         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
4641         step in implementing IMT, replaced it with two compact arrays
4642         (interfaces_packed and interface_offsets_packed) and a bitmap that
4643         is used for isinst checks (interface_bitmap).
4644
4645         * class.c: (compare_interface_ids): compare function to pass to
4646         bsearch when looking for an interface with a given id.
4647         (mono_class_interface_offset): reimplemented using bsearch on
4648         interfaces_packed, getting the offset from interface_offsets_packed.
4649         (print_implemented_interfaces): utility debugging function.
4650         (setup_interface_offsets): reworked to initialize interfaces_packed,
4651         interface_offsets_packed and interface_bitmap.
4652
4653         * object.c: replaced all accesses to "MonoClass.interface_offsets"
4654         with uses of interfaces_packed and interface_offsets_packed.
4655
4656 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
4657
4658         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
4659         mono_class_interface_offset prototype to wrap all accesses to
4660         "MonoClass.interface_offsets".
4661
4662         * class.c: Implemented mono_class_interface_offset, and wrapped all
4663         accesses to "MonoClass.interface_offsets".
4664
4665         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
4666         "MonoClass.interface_offsets".
4667
4668 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
4669
4670         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
4671         GetMethodFromHandle overloads (bug #78637).
4672
4673 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
4674
4675         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
4676         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
4677
4678 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
4679
4680         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
4681         #81498.
4682
4683         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
4684         gracefully.
4685         (mono_custom_attrs_from_index): Ditto.
4686
4687         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
4688         Fixes #81501.
4689
4690 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
4691
4692         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
4693         is now allocated from a mempool.
4694
4695 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
4696
4697         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
4698         caller holds threads_lock, leading to deadlocks. Fixes #81476.
4699
4700 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
4701
4702         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
4703         mono_loader_clear_error () too late. Fixes #81463.
4704
4705 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
4706
4707         * culture-info-table.h : regenerated.
4708
4709 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
4710
4711         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
4712         is missing.
4713
4714 2007-04-25  Dick Porter  <dick@ximian.com>
4715
4716         * Makefile.am: Put the mingw enforced-optimisation back into the
4717         PLATFORM_WIN32 section.
4718
4719 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
4720
4721         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
4722         patch.
4723
4724         * image.c (mono_image_load_module): New API function to load a module reference.
4725
4726         * image.c (load_modules): Load modules lazily. Fixes #80812.
4727
4728         * class.c (mono_class_from_typeref): Use mono_image_load_module.
4729         
4730         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
4731
4732         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
4733         to mono_image_load_module_dynamic.
4734
4735 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
4736
4737         * marshal.c: Fix calling convention for CCW on non-windows
4738         platforms. STDCALL on windows, CDECL everywhere else to work 
4739         with XPCOM and MainWin COM.
4740         
4741         Code is contributed under MIT/X11 license.
4742
4743 2007-04-23  Martin Baulig  <martin@ximian.com>
4744
4745         Fix #80969.
4746
4747         * loader.c
4748         (method_from_memberref): Added `gboolean *used_context' argument.
4749         (mono_get_method_from_token): Likewise.
4750         (mono_get_method_full): Don't insert the method in the cache when
4751         `used_context' is true.
4752
4753 2007-04-23  Raja R Harinath  <rharinath@novell.com>
4754
4755         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
4756
4757         * reflection.c (mono_reflection_bind_generic_parameters): Don't
4758         create new MonoTypes for returned types.
4759         * class.c (mono_generic_class_get_class): Export mono-internal.
4760         * class-internals.h: Update to changes.
4761
4762 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
4763
4764         * threadpool.c, threadpool.h, icall-def.h: patch from
4765         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
4766
4767 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
4768
4769         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
4770         
4771         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
4772
4773         * threads.c (mono_thread_get_stack_bounds): New helper function.
4774
4775         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
4776         Correctly compute stack bounds when attaching. Fixes #81394.
4777
4778 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
4779
4780         * reflection.c: fix handling of doubles in custom attributes
4781         for the arm-fpa format (bug #81368).
4782
4783 2007-04-18  Raja R Harinath  <rharinath@novell.com>
4784
4785         * reflection.c (assembly_add_win32_resources): Mildly relax an
4786         bounds check to let the end pointer point just past the end of the
4787         allocated buffer.  (may fix #81384)
4788
4789 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
4790
4791         * culture-info-table.h : regenerated.
4792
4793 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
4794
4795         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
4796         the thread is aborted early.
4797
4798 2007-04-05  Dick Porter  <dick@ximian.com>
4799
4800         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
4801         FindFirstFile()/FindNextFile() to find entries.  This lets the
4802         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
4803         81038.
4804
4805         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
4806         the parameters of
4807         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
4808
4809 2007-04-04  Martin Baulig  <martin@ximian.com>
4810
4811         * debug-helpers.c
4812         (mono_method_desc_full_match): Add support for nested classes.
4813
4814 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
4815
4816         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
4817
4818 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
4819
4820         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
4821         waiting for too many threads.
4822
4823 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
4824
4825         * environment.c: Fix return value check on uname so we can get the 
4826         executing version on Solaris operating systems.
4827
4828 2007-03-28  Jb Evain  <jbevain@gmail.com>
4829
4830         * class.c (mono_type_get_name_recurse): Complete the
4831         fix for the creation of assembly qualified names for
4832         pointer types. Fixes #81208.
4833
4834 2007-03-27  Dick Porter  <dick@ximian.com>
4835
4836         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
4837         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
4838         changed.
4839
4840         * threads.c
4841         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
4842         the value of ReleaseMutex().
4843
4844 2007-03-27  Dick Porter  <dick@ximian.com>
4845
4846         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
4847         in little-endian order, not network endian, so must be converted
4848         to host endian here.  Fixes bug 80593.
4849
4850 2007-03-22  Jb Evain  <jbevain@gmail.com>
4851
4852         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
4853         qualified names for pointer types. Fixes #81208.
4854
4855 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
4856
4857         * marshal.c: Add support for PreserveSigAttribute. 
4858         
4859         Code is contributed under MIT/X11 license.
4860
4861 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
4862
4863         * process.c: Fix endianness issues. Fixes #81126.
4864
4865         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
4866         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
4867
4868         * image.c (mono_image_lookup_resource): Make this work on big-endian
4869         machines.Change API contract so the caller needs to free the return value.
4870         
4871         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
4872         API change.
4873         
4874 2007-03-14  Martin Baulig  <martin@ximian.com>
4875
4876         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
4877         mono_type_get_desc() as well.
4878
4879 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
4880
4881         * icall.c:  Fix environ access in VS.  
4882         
4883 2007-03-13  Alp Toker  <alp@atoker.com>
4884
4885         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
4886         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
4887         #63841.
4888
4889 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
4890
4891         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
4892         circular references among dynamic methods. Fixes #81091.
4893
4894         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
4895
4896 2007-03-09  Martin Baulig  <martin@ximian.com>
4897
4898         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
4899
4900 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
4901
4902         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
4903         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
4904         
4905         Code is contributed under MIT/X11 license.
4906         
4907 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
4908
4909         * loader.c: Reapply patch for bug #79424.
4910
4911 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
4912
4913         * metadata.c (mono_type_to_unmanaged): Only convert object to
4914         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
4915
4916 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
4917
4918         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
4919         (and incorrectly set) is_reference field from MonoGenericInst.
4920
4921 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
4922
4923         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
4924         a little earlier.
4925
4926         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
4927
4928         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
4929
4930 2007-03-05  Miguel de Icaza  <miguel@novell.com>
4931
4932         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
4933         FileOptions.1 value to mean "temporary", map that to
4934         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
4935
4936         Fixes 80688
4937
4938 2007-03-03  Marek Habersack  <mhabersack@novell.com>
4939
4940         * appdomain.c: implement MS .Net style shadow copying. Copies of
4941         the assemblies are made in a subdirectory of the dynamic base
4942         directory, the assembly names are preserved.
4943         Copy .mdb and .config files along with the assemblies being shadowed.
4944
4945 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
4946
4947         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
4948         (emit_marshal_handleref): Ditto.
4949
4950         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
4951         on Visual C++. Fixes #80671.
4952
4953 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
4954
4955         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
4956         for clone operations.
4957
4958 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
4959
4960         * marshal.c: Fix warnings.
4961
4962 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
4963
4964         * loader.c: allow case-insensitive matching of the dll name
4965         in dllmap handling when prefixed with "i:".
4966
4967 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
4968
4969         * threads.c: Fix #ifdef for dummy_apc function for VS.
4970
4971 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
4972
4973         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
4974
4975 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
4976         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
4977         giving precedence to the methods with a fully qualified name
4978         (InterfaceName.MethodName) when building the interface sections
4979         of the vtable.
4980
4981 2007-02-16  Dick Porter  <dick@ximian.com>
4982
4983         * threadpool.c (append_job): Fix fast-path array handling, so it's
4984         less likely the array will grow exponentially when the load is
4985         heavy.
4986
4987 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
4988
4989         * metadata-internals.h, loader.c: fix dllmap lookup order
4990         for non-function maps, too, and prepare for fallback code.
4991
4992 2007-02-12  Robert Jordan  <robertj@gmx.net>
4993
4994         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
4995         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
4996         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
4997         GlobalFree. Fixes a part of bug #77075.
4998
4999 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
5000
5001         * loader.c: implemented typedef parent in field memberref.
5002
5003 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
5004
5005         * marshal.c: Fix warnings and remember to call Release on
5006         IUnknown of RCW.
5007         
5008         Code is contributed under MIT/X11 license.
5009
5010 2007-02-10  Miguel de Icaza  <miguel@novell.com>
5011
5012         * class-internals.h: Add MonoHandleRef definition, and
5013         handleref_class to mono_defaults. 
5014
5015         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
5016         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
5017
5018         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
5019         (do nothing on this stage)
5020         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
5021         (emit_marshal_handleref): New method, used for argument handling
5022         of HandleRefs. 
5023
5024 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
5025
5026         * class.c (mono_class_setup_parent): Lazily init com types.
5027         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
5028         init com types.
5029         * object.c (mono_remote_class_vtable): Lazily init com types.
5030         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
5031         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
5032         * domain-internals.h: Expose mono_init_com_types.
5033         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
5034         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
5035         Add support for COM Callable Wrapper marshalling.
5036         * marshal.h: Add icall definitions.
5037         * gc.c: Handle freeing of CCWs in finalizer code.
5038         
5039         Code is contributed under MIT/X11 license.
5040
5041 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
5042
5043         * reflection.c: changed all the signature encoding code to use
5044         a variable-sized buffer.
5045
5046 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
5047
5048         * marshal.c: locking fixes: never take the loader lock
5049         or other runtime locks when holding the marshal lock
5050         (fixes bug#80664).
5051
5052 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
5053
5054         * marshal.c: make the delegate function pointer mapping
5055         work for the moving GC.
5056
5057 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
5058
5059         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
5060         for bug #80618.
5061
5062 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
5063
5064         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
5065         gmodule.
5066
5067 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
5068
5069         * threadpool.c: made the code moving-GC safe.
5070
5071 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
5072
5073         * assembly.c, boehm-gc.c, class-internals.h, class.c,
5074         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
5075         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
5076         warning cleanup.
5077         * reflection.c: warning cleanup, some threading and moving GC fixes.
5078
5079 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
5080
5081         * class.c, loader.c: create the needed Set/Get/Address array methods
5082         as well as the .ctors in mono_class_init (), fixes bug #80567.
5083
5084 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
5085
5086         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
5087         we doesn't decrease its alignment. Should fix the sparc build.
5088
5089 2007-01-24  Dick Porter  <dick@ximian.com>
5090
5091         * socket-io.c
5092         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
5093         Create the returned object if we need to ignore an unsupported
5094         socket option.  Fixes a segfault reported by Atsushi.
5095
5096 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
5097
5098         * class.c, object.c: restrict GC-tracked fields to
5099         UIntPtr fields used inside corlib, so we provide better
5100         type info to the GC and also allow broken packing as in
5101         bug #80580.
5102
5103 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
5104
5105         * sgen-gc.c: removed duplicated function.
5106
5107 2007-01-19  Miguel de Icaza  <miguel@novell.com>
5108
5109         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
5110         value that means that the value is not supported, but that we
5111         should not return a failure, but instead report this as a
5112         successful operation.
5113
5114 2007-01-19  Raja R Harinath  <rharinath@novell.com>
5115
5116         Fix tests/bug79956.2.il
5117         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
5118         (mono_generic_class_get_class): If the generic definition in an
5119         enum, copy over other fields related to it.
5120
5121 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
5122
5123         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
5124         genericinst enums (bug #79215).
5125
5126 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
5127         * class.c: Fix bug 80307.
5128
5129 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
5130
5131         * image.c: if the file table is not present, try to load
5132         all the modules, since we don't have info about them
5133         having or not metadata (bug #80517).
5134         * assembly.c: allow mono_assembly_load_references () to
5135         work for netmodules.
5136
5137 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
5138
5139         * image.c, metadata-internals.h, object.c: execute module
5140         cctors when running on the 2 runtime if present (bug #80487).
5141
5142 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
5143
5144         * icall.c: optimized InitializeArray() on bigendian.
5145
5146 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
5147
5148         * icall.c: fix for the broken ARM FPA double format.
5149
5150 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
5151
5152         * icall.c: handle endian issues for r4 and r8 types, too, in
5153         the InitializeArray() icall.
5154
5155 2007-01-15  Miguel de Icaza  <miguel@novell.com>
5156
5157         * loader.c (mono_loader_error_prepare_exception): Clear the error
5158         once we have extracted the information from it, do this before we
5159         call into the JIT's class loading mechanisms.
5160
5161         * object.c (mono_class_create_runtime_vtable): Do not clear the
5162         loader error before calling mono_class_get_exception_for_failure
5163         as the loader error is needed inside
5164         mono_class_get_exception_for_failure to throw the error (thinko).
5165
5166         Fixes #80521
5167         
5168 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
5169
5170         * reflection.c: align fields rva data so it's faster to load at
5171         runtime.
5172
5173 2007-01-12  Raja R Harinath  <rharinath@novell.com>
5174
5175         Prepare to simplify GenericMethod handling.
5176         * class-internals.h (mono_method_get_context): New accessor function.
5177         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
5178         rather than directly accessing '->context' field.
5179
5180         * class-internals.h (_MonoGenericParam.method): Move ...
5181         (_MonoGenericContainer): ... here.  Add into union with klass field.
5182         * class.c, icall.c, loader.c, metadata.c, reflection.c:
5183         Update to changes.
5184
5185 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
5186
5187         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
5188         the wrapper type enum and reduce relocations.
5189
5190 2007-01-12  Raja R Harinath  <rharinath@novell.com>
5191
5192         * reflection.c (inflate_mono_method): Reuse method instantiation
5193         from the generic method, if available.
5194
5195 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
5196
5197         * marshal.c (emit_marshal_variant): Fix conv_arg
5198         type in last commit, based on whether parameter is byref.
5199         
5200 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
5201
5202         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
5203         marshalling.
5204         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
5205         MONO_TYPE_OBJECT back for VARIANT support.
5206
5207 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
5208
5209         * marshal.c, marshal.h, icall-def.h: Implement 
5210         Marshal.ReAllocCoTaskMem.
5211
5212 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
5213
5214         * marshal.c: memory retention fixes: use the proper
5215         image cache for runtime_invoke method lookups.
5216
5217 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
5218
5219         * mempool.c: added code to help debug mempool allocations.
5220
5221 2007-01-11  Dick Porter  <dick@ximian.com>
5222
5223         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
5224         support (experimenting with faking it with IP_MTU_DISCOVER for
5225         systems that don't have IP_DONTFRAGMENT.)
5226         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
5227         icall.
5228
5229         * icall-def.h: new System.Net.Sockets.Disconnect icall.
5230
5231         * socket-io.h: Add new fields to MonoSocketAsyncResult
5232         corresponding to the new ones in Socket.cs.
5233
5234 2007-01-11  Raja R Harinath  <rharinath@novell.com>
5235
5236         Fix IronPython regression mentioned in #80249
5237         * metadata.c (do_mono_metadata_parse_generic_class): Clear
5238         'cached_context' field, since it may have been initialized as a
5239         side-effect of metadata parsing.
5240
5241         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
5242         (_MonoGenericClass.cached_class): Move here and rename from lone
5243         remaining field of ...
5244         (_MonoInflatedGenericClass): ... this.  Remove.
5245         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
5246         to changes.
5247
5248         Fix mcs/tests/test-128.cs regression.
5249         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
5250         2007-01-10 change below.
5251         [MONO_TYPE_OBJECT]: Recurse into array case.
5252
5253 2007-01-11  Raja R Harinath  <harinath@gmail.com>
5254
5255         * class-internals.h (mono_get_inflated_generic_class): Remove.
5256         * class.c (mono_get_inflated_generic_class): Remove.
5257         (mono_generic_class_get_class): Rename from
5258         mono_class_create_generic.
5259         (mono_class_from_mono_type) [GENERICINST]: Use it.
5260         * reflection.c, metadata.c: Update to changes.  Use
5261         'mono_class_from_mono_type'.
5262
5263 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
5264
5265         * reflection.c: use passed type when encoding an array element
5266         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
5267
5268 2007-01-09  Robert Jordan  <robertj@gmx.net>
5269
5270         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
5271         result arguments (someDelegate.EndInvoke (unrelatedAres)).
5272         Fixes bug #80392.
5273
5274 2007-01-09  Raja R Harinath  <rharinath@novell.com>
5275
5276         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
5277
5278         * object.c (set_value): Avoid aliasing between type->data.klass
5279         and type->data.generic_class.
5280
5281         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
5282
5283 2007-01-08  Raja R Harinath  <rharinath@novell.com>
5284
5285         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
5286         between type->data.klass and type->data.generic_class.
5287
5288 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
5289
5290         * marshal.c: In MS.NET, StringBuilder objects are not copied by
5291         value in out parameters.
5292
5293 2007-01-08  Raja R Harinath  <rharinath@novell.com>
5294
5295         Simplify invariant for MonoGenericClass::klass field.
5296         * class.c (mono_class_create_generic): Verify 'klass' is null.
5297         * metadata.c (do_mono_metadata_parse_generic_class): Don't
5298         initialize 'klass' field.
5299
5300 2007-01-05  Raja R Harinath  <rharinath@novell.com>
5301
5302         Ongoing work to avoid redundant data and simplify invariants.
5303         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
5304         'generic_class', and change type to a GenericInst.
5305         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
5306         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
5307
5308 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
5309
5310         * class.c : skip io-layer under PLATFORM_WIN32.
5311
5312 2007-01-03  Tor Lillqvist  <tml@novell.com>
5313
5314         Fix #80305: In a bundled executable, look in the bundled exe
5315         assembly to determine the runtime version. Add the possibility to
5316         bundle also the machine.config file.
5317         
5318         * assembly.c (mono_assembly_open_from_bundle): Make
5319         non-static. Allow being called even if we have no bundled
5320         assemblies, and return NULL right away in that case.
5321
5322         * domain-internals.h: Declare mono_assembly_open_from_bundle()
5323         here.
5324
5325         * domain.c (app_config_parse): Take an assembly exe file name as
5326         parameter instead of a config file name. Check for a bundled
5327         config file for that assembly by calling
5328         mono_config_string_for_assembly_file() (see below) before looking
5329         for one in the file system.
5330         (get_runtimes_from_exe): Corrsponding change to call of
5331         app_config_parse().
5332         (get_runtimes_from_exe): Check for bundled assembly exe file first
5333         by calling mono_assembly_open_from_bundle(). If no bundled
5334         assembly exe file is found, call mono_image_open() as before to
5335         look it up in the file system.
5336
5337         * mono-config.c: Add variable bundled_machinec_onfig.
5338         (mono_config_string_for_assembly_file): New function.
5339         (mono_config_for_assembly): Move code snippet that looks for a
5340         bundled assembly .config file into the above new function. Call
5341         it.
5342         (mono_register_machine_config, mono_get_machine_config): New
5343         functions to set and retrieve
5344
5345         * assembly.h: Declare mono_register_machine_config().
5346
5347         * mono-config.h: Declare mono_get_machine_config() and
5348         mono_config_string_for_assembly_file().
5349
5350         * icall.c: No declaration of environ necessary on Win32. It is
5351         declared (as a macro expanding to a function call) in stdlib.h.
5352         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
5353         New internal mono function. Returns the value of
5354         mono_get_machine_config() as a Mono string.
5355
5356         * icall-def.h: Add get_bundled_machine_config().
5357
5358 2007-01-04  Raja R Harinath  <rharinath@novell.com>
5359
5360         Remove redundant field
5361         * class-internals.h (_MonoGenericContext.container): Remove field.
5362         * loader.c (mono_method_get_signature_full): Don't parse a
5363         "container" for a signature parse when the signature is inflated
5364         immediately.
5365         (method_from_methodspec): Likewise, for a generic_inst.
5366         * class.c, metadata.c, reflection.c: Update to changes.
5367
5368 2006-01-04  Raja R Harinath  <rharinath@novell.com>
5369
5370         * class-internals.h (_MonoGenericClass): Rename 'context' field to
5371         'cached_context', and change semantics -- it starts off NULL, and
5372         is initialized on demand.
5373         * class.c (mono_generic_class_get_context): New accessor to
5374         replace 'context' field accesses.
5375         (mono_class_get_context): New helper.
5376         (*): Update to changes.
5377         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
5378
5379 2007-01-03  Miguel de Icaza  <miguel@novell.com>
5380
5381         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
5382         before the memcpy.   Fixes Marshal2 regression.
5383
5384 2007-01-02  Jb Evain  <jbevain@gmail.com>
5385
5386         * blob.h: add a MONO_TYPE_ENUM definition
5387         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
5388         fix the encoding of arrays of enums in custom attributes.
5389
5390         Fixes #79666.
5391
5392 2007-01-01  Miguel de Icaza  <miguel@novell.com>
5393
5394         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
5395         string is null terminated, but only cut the string short if it
5396         overflows the buffer.   
5397         
5398         (mono_string_to_byvalstr): Also fix this routine.   The code here
5399         was not properly terminating a string (it was only terminated
5400         because of the previous catch-all memset). 
5401
5402         I left the memset, because I do not know if applications expect
5403         the runtime to clear this region. 
5404
5405         Fixes #79944.
5406
5407         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5408         Clear the error before returning to unmanaged code to prevent the
5409         runtime from being confused later on (fixes  80420).
5410         (ves_icall_type_from_name): Always call mono_loader_clear_error
5411         after parsing a type that could have failed.
5412         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
5413
5414         * loader.c (mono_loader_clear_error): Fix indentation.
5415
5416 2006-12-28  Martin Baulig  <martin@ximian.com>
5417
5418         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
5419
5420 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
5421
5422         * reflection.c: patch from Rolf Bjarne Kvinge to fix
5423         getting a token for an EnumBuilder.
5424
5425 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
5426
5427         * reflection.c: be more careful in case resource generation
5428         fails to create the data array.
5429
5430 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
5431
5432         * sgen-gc.c: write barrier for clone and fix unregister handles.
5433
5434 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
5435
5436         * reflection.c: some fixes needed in the generics code for the moving GC.
5437
5438 2006-12-22  Robert Jordan  <robertj@gmx.net>
5439
5440         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
5441         account. Fixes bug #80299.
5442
5443 2006-12-21  Raja R Harinath  <rharinath@novell.com>
5444
5445         Fix WaitHandle usage in delegates.
5446         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
5447         * object.c (mono_wait_handle_new): Use the property set method to
5448         initialize the handle.
5449         (mono_wait_handle_get_handle): New.
5450         * threadpool.c (mono_async_invoke): Use it.
5451         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
5452         Likewise.
5453         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
5454
5455 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
5456
5457         * marshal.c (emit_marshal): Call emit_marshal_variant and
5458         emit_marshal_com_interface when applicable.
5459         (emit_marshal_variant, emit_marshal_com_interface): Add
5460         methods for this case and remove if's from emit_marshal_object.
5461         
5462 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
5463
5464         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
5465
5466 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
5467
5468         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
5469         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
5470         and GlobalFree on Windows. Remove FIXME.
5471
5472 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
5473
5474         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
5475         implementation for managed objects.
5476
5477 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
5478
5479         * object.c: implemented code to be used for checking
5480         that no reference field overlaps with non-references.
5481
5482 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
5483
5484         * threadpool.c: fix queue code to be compatible with the
5485         moving GC.
5486
5487 2006-12-18  Miguel de Icaza  <miguel@novell.com>
5488
5489         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
5490         in structures by throwing ArgumentNullException.
5491
5492         (emit_marshal_safehandle): Also when they are null parameters.
5493
5494         (emit_marshal_safehandle): Add support for ref
5495         SafeHandles parameters
5496
5497 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
5498
5499         * profiler.c: updated to use the mono-dl API instead of
5500         gmodule.
5501
5502 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
5503
5504         * profiler.c: updated to use the mono-dl dynamic loading
5505         API instead of gmodule.
5506
5507 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
5508
5509         * profiler.c: use readlink, older versions of glib don't have
5510         g_file_read_link ().
5511
5512 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
5513
5514         * profiler.c: try to detect the path to mono if libc fails to provide
5515         a useful name (bug #80286).
5516
5517 2006-12-16  Raja R Harinath  <rharinath@novell.com>
5518
5519         Fix #80242
5520         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
5521         instance, use the generic type definition instead.
5522         (ves_icall_Type_GetNestedTypes): Likewise.
5523         * class.c (mono_class_create_generic): Always set the
5524         nested_classes of a generic instance to NULL, even if the generic
5525         type definition has nested types.
5526
5527 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
5528
5529         * marshal.c (mono_string_from_bstr): Revert previous Windows change
5530         and fix on Linux.
5531         
5532 2006-12-15  Miguel de Icaza  <miguel@novell.com>
5533
5534         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
5535         my arguments were in the wrong order.   I also fixed the Windows
5536         version which seems to have had the same issue.
5537
5538         (mono_free_bstr): On Unix, this is g_free.
5539         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
5540         conversions (for the tests in corlib to pass).
5541
5542 2006-12-14  Miguel de Icaza  <miguel@novell.com>
5543
5544         * marshal.c (emit_ptr_to_object_conv): For now, ignore
5545         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
5546         exception if a ref SafeHandle in a struct has changed).
5547         
5548         (emit_struct_conv): Do not perform layout checks for classes
5549         derived from SafeHandle, as those are specially handled. 
5550
5551         (emit_object_to_ptr_conv): Add support for
5552         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
5553
5554         (emit_marshal_safehandle): Implement conversion of return values
5555         of safehandles (MARSHAL_ACTION_CONV_RESULT).
5556         
5557         * threads.c: WaitHandle now is compiled with two different handles
5558         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
5559         for 2.0.
5560         
5561         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
5562         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
5563         these routines to cope with both kinds of fields.
5564
5565 2006-12-12  Miguel de Icaza  <miguel@novell.com>
5566
5567         * metadata.c (mono_type_to_unmanaged): Handle the case where
5568         type->data.klass is a SafeHandle, and in that case, return the
5569         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
5570         MONO_MARSHAL_CONV_SAFEHANDLE. 
5571
5572 2006-12-11  Miguel de Icaza  <miguel@novell.com>
5573
5574         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
5575         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
5576         calling emit_marshal_object.
5577
5578         (emit_marshal_safehandle): Implement marshalling of
5579         SafeHandle parameters (no ref support yet).
5580
5581         (MarshalAction): Document the defines as I implement
5582         them for SafeHandle.
5583
5584         (emit_marshal_object): indentation police.
5585
5586         * class-internals.h: Define MonoSafeHandle.
5587         Add safehandle_class to MonoDefaults type.
5588
5589         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
5590         list of classes to check for fields. 
5591
5592         * domain.c (mono_init_internal): Add SafeHandle to the list of
5593         mono_defaults loaded.
5594
5595 2006-12-15  Raja R Harinath  <rharinath@novell.com>
5596
5597         Fix #80253
5598         * reflection.c (mono_reflection_bind_generic_parameters): If the
5599         generic type definition is a type builder, ensure that it is fully
5600         initialized before instantiating it.  Kill some dead code.
5601
5602 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
5603
5604         * object.c: clear the loader_error () before loading
5605         more metadata stuff (bug #80258).
5606
5607 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
5608
5609         * icall.c, icall-defs.h: type modifiers icalls for
5610         parameters and properties.
5611
5612 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
5613
5614         * object.c, icall.c: fixed warnings.
5615
5616 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
5617
5618         * marshal.c: fixed a couple of leaks and coding style in a few places.
5619
5620 2006-12-08  Dick Porter  <dick@ximian.com>
5621
5622         * process.c: Cope with NULL ProcessStartInfo arguments on windows
5623         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
5624         80173.
5625
5626 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
5627
5628         * process.c: ProcessStartInfo may have only filename set and
5629         arguments can be NULL.
5630
5631 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
5632
5633         * icall.c: fix leak found by Robert Jordan.
5634
5635 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
5636
5637         * marshal.c, marshal.h: generate managed method to access an element
5638         of a multi-dimensional array.
5639
5640 2006-11-30  Paolo Molaro (lupus@ximian.com)
5641
5642         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
5643
5644 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
5645
5646         * icall.c: back out GetFields () fix until the serialization code is
5647         fixed to not depend on the incorrect behaviour.
5648
5649 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
5650
5651         * profiler.c: provide defaults if none are set.
5652
5653 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
5654
5655         * Makefile.am, attrdefs.h: new public header file with
5656         constants for attributes for use by embedders.
5657
5658 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
5659
5660         * icall.c: GetFields () fix for bug #80064.
5661
5662 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
5663
5664         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
5665         removed long unused icalls.
5666
5667 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
5668   
5669         * marshal.c: 
5670                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
5671                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
5672                 can be generated without a delegate class.
5673                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
5674         
5675         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
5676
5677 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5678
5679         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
5680         #80069.
5681
5682 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
5683
5684         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
5685         icall-def.h: added icalls needed by System.GC.
5686
5687 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
5688
5689         * loader.c: ensure the class in catch clauses is handled
5690         correctly for generics methods (fixes bug#79980).
5691
5692 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
5693
5694         * monitor.h, monitor.c: added mono_locks_dump () function
5695         to help debug deadlocks involving managed locks.
5696
5697 2006-11-13  Dick Porter  <dick@ximian.com>
5698
5699         * file-io.c (get_file_attributes): If the file is a symlink try
5700         and get the stat data for the target, but also add the
5701         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
5702         the specs for the windows symlink support, but will probably have
5703         to be reworked when I have test data from a vista machine.  Fixes
5704         bug 79887.
5705
5706 2006-11-13  Dick Porter  <dick@ximian.com>
5707
5708         * gc.c (mono_domain_finalize): 
5709         * marshal.c (mono_delegate_begin_invoke): 
5710         * threadpool.c (socket_io_init, mono_thread_pool_init)
5711         (mono_thread_pool_finish): 
5712         * monitor.c (mono_monitor_try_enter_internal): 
5713         * threads.c (mono_thread_resume, mono_thread_init)
5714         (mono_thread_suspend_all_other_threads)
5715         (mono_thread_execute_interruption): 
5716         * appdomain.c (mono_domain_unload): Check for NULL error returns
5717         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
5718         75733.
5719
5720 2006-11-11  Miguel de Icaza  <miguel@novell.com>
5721
5722         * process.c
5723         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
5724         Only close the handle if the value of the handle is not
5725         INVALID_HANDLE_VALUE.  This just makes the process a bit more
5726         robust.
5727
5728         Improvement for #75733, so that we do not run into this problem. 
5729
5730         
5731         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
5732         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
5733         internal variables.  Fixes #79462 
5734         
5735
5736 2006-11-09  Dick Porter  <dick@ximian.com>
5737
5738         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
5739         Use poll() not select().  Fixes bug 79397.
5740
5741 2006-11-09  Raja R Harinath  <rharinath@novell.com>
5742
5743         Fix #79872
5744         * assembly.c (mono_assembly_load_from_full): Check that the given
5745         image has an assembly manifest.
5746
5747 2006-11-09  Ankit Jain  <jankit@novell.com>
5748
5749         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
5750         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
5751         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
5752
5753 2006-11-07  Dick Porter  <dick@ximian.com>
5754
5755         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
5756         Put the old resolver behaviour back for pre-2.0 profiles.
5757
5758 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
5759
5760         * threadpool.c: precise GC and locking fixes.
5761
5762 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
5763
5764         * class.c: don't load types that have an explicit unaligned
5765         managed reference. Provide better info in the TypeLoad exception.
5766         Part of the fix for bug #79744.
5767         * object.c: use the correct check for class type load issues.
5768
5769 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
5770
5771         * class.c: enforce alignment of fields with managed references
5772         even when Pack=1 is forced by the user (bug #77788).
5773
5774 2006-11-03  Dick Porter  <dick@ximian.com>
5775
5776         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
5777         If the address reverse lookup fails, return it as the hostname
5778         anyway.  Fixes bug 79721.
5779
5780 2006-11-03  Dick Porter  <dick@ximian.com>
5781
5782         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
5783         Fix build on Windows.
5784
5785 2006-11-02  Dick Porter  <dick@ximian.com>
5786
5787         * icall-def.h: 
5788         * object-internals.h: 
5789         * exception.c (mono_get_exception_thread_interrupted): 
5790         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
5791         Fixes bug 74525.
5792
5793         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
5794         Check for pending Thread.Interrupt.
5795
5796 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
5797         * loader.c: Fixed bug 79684.
5798
5799 2006-10-27  Dick Porter  <dick@ximian.com>
5800
5801         * file-io.c (get_file_attributes): Force symlinks to directories
5802         to be returned as a regular file.  Fixes bug 79733.
5803 2006-10-26  Dick Porter  <dick@ximian.com>
5804
5805         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
5806         CreateFile to open a directory then we need to set the
5807         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
5808
5809 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
5810
5811         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
5812         friends.
5813
5814 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
5815
5816         * sgengc.c: small cleanup of timer code.
5817
5818 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
5819
5820         * sgen-gc.c: fix some warnings and start adding support for
5821         complete object removal on domain unload.
5822
5823 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
5824
5825         * assembly.c: build_assembly_name should not consider a version
5826         number without build or revision number invalid. Fixes bug #79715.
5827
5828 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
5829
5830         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
5831         call kernel32 function OutputDebugString directly.
5832         
5833         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
5834         
5835 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
5836
5837         * reflection.c: small cleanup, using a function to insert a MonoString
5838         in the string heap.
5839
5840 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
5841
5842         * reflection.c: moving GC fixes.
5843
5844 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
5845
5846         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
5847         all the objects with finalizers belonging to an unloading appdomain.
5848
5849 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
5850
5851         * sgen-gc.c: added ability to allocate even when the nursery is fully
5852         pinned and fixed a couple of bugs.
5853
5854 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
5855
5856         * threads.h: Revert the last change for now.
5857
5858         * threads.h (mono_thread_get_pending_exception): Rename this to
5859         mono_thread_get_undeniable_exception ().
5860
5861 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
5862
5863         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
5864         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
5865         when fname does not refer to valid assembly. This result in a more
5866         meaningful error message.
5867         * exception.c: added mono_get_exception_bad_image_format2 which 
5868         constructs a BadImageFormatException using the ctor taking a custom
5869         message and the file name. Passing in a NULL msg results in a default
5870         message.
5871         * exception.h: define mono_get_exception_bad_image_format2 function.
5872         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
5873         when file name pointed to an invalid IL image. Use 
5874         mono_get_exception_file_not_found2 to construct FileNotFoundException,
5875         as this results in a more meaningful error message.
5876
5877 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
5878
5879         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
5880         #79465.
5881
5882 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
5883
5884         * metadata.c (mono_type_size): Change the align parameter to guint32 for
5885         consistency with the other _size functions.
5886         (mono_type_stack_size): Ditto.
5887
5888         * class.c object.c icall.c: Fix warnings caused by the above change.
5889
5890         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
5891
5892         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
5893
5894         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
5895
5896 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
5897
5898         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
5899         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
5900         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
5901         threadpool.h, threads-types.h: mark more internal functions.
5902
5903 2006-10-11  Dick Porter  <dick@ximian.com>
5904
5905         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
5906         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
5907         reproduce the bug even before applying the fix.)
5908
5909 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
5910
5911         * reflection.c: allow retrieving attributes for arguments in generic
5912         methods (bug #79241).
5913
5914 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
5915
5916         * debug-mono-symfile.c: properly check fopen () result (found by
5917         coverity).
5918
5919 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
5920
5921         * reflection.c: make error message clearer and fixed two
5922         issuelets found by Coverity.
5923
5924 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
5925
5926         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
5927
5928 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
5929
5930         * object-internals.h, gc-internal.h, profiler-private.h:
5931         mark internal functions.
5932
5933 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
5934
5935         * reflection.c: put data in the text section.
5936         * icall.c: recognize more types in type_from_typename ().
5937         * process.c, marshal.c: added some GC FIXMEs.
5938
5939 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
5940
5941         * loader.c: check for NULL before initializing.
5942
5943 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
5944
5945         * gc.c (finalizer_thread): Use a non-alertable wait here.
5946
5947         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
5948         until the correct solution is found.
5949
5950 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
5951
5952         * reflection.c (mono_module_get_object): Avoid an assert when operating on
5953         modules with no metadata. Fixes #79596.
5954
5955         * image.c (load_metadata_ptrs): Put back the error message when
5956         the #- heap is encountered since the support is not complete yet.
5957
5958 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
5959
5960         * gc.c: do not allow the user to SuppressFinalize () a
5961         delegate because it would leak the trampoline if present.
5962
5963 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
5964
5965         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
5966         PropertyPtr table.
5967
5968 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
5969
5970         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
5971
5972         * metadata.c (mono_metadata_get_param_attrs): Ditto.
5973
5974         * row-indexes.h: Add definitions for *Ptr tables.
5975
5976         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
5977
5978         * metadata.c (mono_metadata_translate_token_index): New helper function to
5979         translate table indexes used in uncompressed metadata.
5980         (mono_metadata_decode_table_row): Ditto.
5981         (mono_metadata_decode_table_row_col): Ditto.
5982
5983         * metadata.c: Add table schema for *Ptr tables.
5984
5985         * class.c loader.c: Use the new helper function to access the affected metadata
5986         tables.
5987         
5988         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
5989         #38532.
5990         
5991 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
5992
5993         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
5994         sequences which can be unbounded in size. Fixes #79583.
5995
5996 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
5997
5998         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
5999         static initialization.
6000
6001         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
6002
6003         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
6004
6005         * domain.c (mono_domain_free): Free up type_init_exception_hash.
6006
6007         * object.c (mono_runtime_class_init): Implement correct semantics when a static
6008         ctor fails, i.e. throw the same exception on subsequent accesses.
6009         
6010 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
6011
6012         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
6013         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
6014         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
6015         Handle marshalling of interfaces and VARIANTs contained in structs.
6016         
6017         Code is contributed under MIT/X11 license.
6018         
6019 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
6020
6021         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
6022         
6023         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
6024         mempool.
6025
6026 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6027
6028         * console-io.c: ignore previous SIGINT handler.
6029
6030 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
6031
6032         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
6033         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
6034         #79460, #79461, #79485.
6035
6036         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
6037
6038         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
6039         #79217.
6040
6041 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
6042
6043         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
6044         could be generated from it.
6045
6046 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
6047
6048         * rand.c: fix read loop to correctly handle EINTR.
6049
6050 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
6051
6052         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
6053         internal calls are defined to keep methods closer to the declaring
6054         type and allow a significant reduction in runtime relocations and
6055         memory usage.
6056
6057 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
6058
6059         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
6060         exception message to have FileNotFoundException use the default
6061         assembly load error message. Fixes bug #79426.
6062         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
6063
6064 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6065
6066         * threadpool.c: (start_thread_or_queue) use the root domain when
6067         creating the thread instead of the async object one.
6068
6069 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
6070
6071         * class.c, object.c, class-internals.h, reflection.c:
6072         for arrays, store element_size inside MonoClass (speedup
6073         for array object creation).
6074
6075 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
6076
6077         * icall.c: fixed CodeBase to use the file name and not the module
6078         name (bug #79365).
6079
6080 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
6081
6082         * mono-debug.c, mono-debug.h: export find_method as
6083         mono_debug_find_method ().
6084
6085 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
6086
6087         * debug-helpers.c, class-internals.h: added a few functions useful
6088         when debugging under gdb.
6089
6090 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6091
6092         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
6093         characters that need special handling.
6094
6095 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
6096
6097         * mono-config.c: make the os/cpu specification more flexible,
6098         allowing lists and negation.
6099
6100 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
6101
6102         * marshal.c: COM Interop fixes. Handle case where method->klass.
6103         is interface. Handle BSTR/MonoString when null. Use CDECL as 
6104         calling convention on non-windows platforms. This is for
6105         compatibility with XPCOM and MainWin COM.
6106         
6107         Code is contributed under MIT/X11 license.
6108         
6109
6110 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
6111
6112         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
6113         correctly. Fixes #79217.
6114
6115         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
6116
6117 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
6118
6119         * mono-config.c: allow both an os and cpu attribute for dllmap
6120         and dllentry elemnets to enable a single config file to be used
6121         for multiple architectures.
6122
6123 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
6124
6125         * loader.c: MonoLoaderError was cleared too soon on load failure.
6126         Fixes bug #79424.
6127
6128 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
6129
6130         * icall.c: use the defining class vtable when accessing a
6131         static field, not a pobblibly derived class.
6132
6133 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
6134
6135         * icall.c string-icalls.c: Remove references to unicode.h.
6136
6137         * unicode.h unicode.c Makefile.am: Remove these unused source files.
6138
6139         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
6140
6141         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
6142         indicating the image where custom marshaller types should be looked up.
6143         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
6144         custom marshallers, instead of corlib. Fixes #79425.
6145
6146 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
6147
6148         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
6149
6150 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
6151
6152         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
6153         Implement Environment.ProcessorCount.
6154         
6155         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
6156         Implement Environment.ProcessorCount.
6157         
6158         * icall.c: 
6159         Add Environment.ProcessorCount icall.
6160         
6161         Patch by Jason McFall.
6162
6163 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6164
6165         * assembly.c: don't append .exe/.dll when the filename already contains
6166         one of those extensions.
6167
6168 2006-09-12  Martin Baulig  <martin@ximian.com>
6169
6170         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
6171         to array interfaces.
6172
6173 2006-09-11  Martin Baulig  <martin@ximian.com>
6174
6175         * reflection.c (mono_image_build_metadata): Create the
6176         MethodImpl's after emitting all types and methods, so we don't
6177         need another fixup pass for them.
6178
6179 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
6180
6181         * class.c (mono_class_from_name_case): Fix regression introduced by the last
6182         change.
6183
6184 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
6185
6186         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
6187         unload.
6188
6189 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
6190
6191         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
6192         args is not set. Fixes #78926.
6193
6194 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
6195
6196         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
6197
6198         * image.c (load_class_names): Move this to class.c, and rename it to 
6199         'mono_image_init_name_cache'.
6200         (load_modules): Fix a warning.
6201
6202         * class.c icall.c image.c: Initialize image->name_cache lazily.
6203
6204         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
6205         on its name using information in the AOT file.
6206
6207         * class.c (mono_class_from_name): Use the new hook function.
6208
6209 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
6210
6211         * reflection.c (mono_param_get_objects): Handle enum default parameter values
6212         correctly.
6213
6214         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
6215         Fixes #79289.
6216         
6217 2006-09-06  Martin Baulig  <martin@ximian.com>
6218
6219         * icall.c (mono_lookup_internal_call): Small fix.
6220
6221 2006-09-05  Raja R Harinath  <rharinath@novell.com>
6222
6223         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
6224         double g_free.
6225
6226 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
6227
6228         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
6229         when --debug is specified.
6230
6231 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
6232
6233         * class.c (setup_generic_array_ifaces): Fix a warning.
6234
6235 2006-09-04  Miguel de Icaza  <miguel@novell.com>
6236
6237         * Temporarily remove the patch to assemly.c that checks the
6238         assembly versions as it breaks our gacutil.
6239
6240 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
6241
6242         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
6243
6244         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
6245         a net 1.0 runtime.
6246
6247         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
6248         created using the default ctor. Fixes #79152.
6249         (mono_string_builder_to_utf16): Ditto.
6250
6251 2006-09-01  Martin Baulig  <martin@ximian.com>
6252
6253         Fix handling of the generic array interfaces.
6254
6255         * class-internals.h
6256         (MonoDefaults): Removed `generic_array_class' and added
6257         `generic_ilist' class.
6258
6259         * class.c
6260         (mono_bounded_array_class_get): Add the new generic array interfaces.
6261         (setup_generic_array_ifaces): New static method; create vtable
6262         entries for each method in the generic array interfaces.
6263
6264         * metadata.c
6265         (select_container): Allow "parent-less" generic methods.
6266
6267         * marshal.c
6268         (mono_marshal_get_generic_array_helper): New public method.
6269
6270         * icall.c
6271         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
6272         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
6273         moved the interncall into System.Array.
6274
6275 2006-09-01  Raja R Harinath  <rharinath@novell.com>
6276
6277         A few more cases of avoiding work on types with ->byref set.
6278         Has the real fix for #79238
6279         * icall.c (is_generic_parameter): New helper.
6280         (ves_icall_Type_GetGenericParameterPosition): Use it.
6281         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
6282         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
6283         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
6284         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
6285         reference types.
6286         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
6287         reference types.
6288         (ves_icall_Type_get_IsGenericInstance): Likewise.
6289         (ves_icall_Type_get_IsGenericType): Likewise.
6290
6291 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
6292
6293         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
6294         class if possible.
6295
6296         * mempool.h (mono_mempool_get_allocated): New helper function.
6297
6298         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
6299         change.
6300
6301         * mempool.c: Fix warnings and the calculation of stats.
6302
6303         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
6304
6305         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
6306
6307         * loader.c (mono_get_method_from_token): Update method_count stat.
6308
6309         * class-internals.h (MonoStats): Add some stats.
6310
6311 2006-08-31 Robert Jordan  <robertj@gmx.net>
6312
6313         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
6314         with managed variants.
6315         All code is contributed under the MIT/X11 license.
6316         
6317 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
6318
6319         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
6320         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
6321
6322         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
6323
6324         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
6325         with cycles in classes.
6326
6327         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
6328
6329         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
6330         missing a [MarshalAs] directive. Fixes #79203.
6331
6332         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
6333         klass->marshal_info. Fixes #79217.
6334
6335 2006-08-30  Martin Baulig  <martin@ximian.com>
6336
6337         Committing a patch from Joachim Ante <joe@otee.dk>:
6338         Add support for binary data symbol stores.
6339
6340         * debug-mono-symfile.c
6341         (mono_debug_open_mono_symbol_file): Renamed into
6342         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
6343         arguments.
6344
6345         * mono-debug.c
6346         (mono_debug_open_image): Added `raw_contents' and `size' args.
6347         (mono_debug_init_2_memory): New public function.
6348
6349 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
6350
6351         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
6352
6353 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6354
6355         * appdomain.c: implement support for ShadowCopyFiles.
6356
6357 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
6358
6359         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
6360         when value is NULL (and should remove CID #51).
6361
6362 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6363
6364         * image.c: moved 2 functions to ../utils.
6365
6366 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
6367
6368         * gc.c: cope with the target object of a GC handle being NULL
6369         (bug #78877).
6370
6371 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
6372
6373         * class.c: recursively check parent's explicit implementations
6374         of interface methods (fixes bug #79125).
6375
6376 2006-08-19  Miguel de Icaza  <miguel@novell.com>
6377
6378         * filewatcher.c: Avoid warnings when building, do not redefine
6379         constants that are defined.
6380
6381         Remove warnings.
6382
6383 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6384
6385         * image.c: don't fail when the link points to an absolute path.
6386
6387 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
6388
6389         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
6390         Fix CID #3.
6391
6392 2006-08-17  Miguel de Icaza  <miguel@novell.com>
6393
6394         * image.c (full_path): A new method used to obtain the actual path
6395         of an assembly even in the presence of symbolic links.  
6396
6397         This is necessary for the case where we are running a binary that
6398         has been GACed, but we are using the "published" path name
6399         ($prefix/mono/1.0/blah.exe) which happens to point to the real
6400         file in the GAC.
6401
6402         This was the source of the failure for the `xsp' command with the
6403         recent AppDomain changes, as far as the runtime was concerned,
6404         there were two different assemblies: $prefix/mono/1.0/blah.exe and
6405         $prefix/mono/gac/blah/version/blah.exe.
6406
6407         (do_mono_image_open): use full path
6408
6409 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
6410
6411         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
6412
6413 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
6414
6415         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
6416         domain_id is supplied. Fix CID #241 and corlib's unit tests.
6417
6418 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
6419
6420         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
6421         small structures. Fixes #78990.
6422
6423 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
6424
6425         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
6426
6427         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
6428
6429 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6430
6431         * appdomain.c:
6432         * marshal.c: don't load all the assemblies from a domain into newly
6433         created ones. The new domains might have different rules and load
6434         assemblies from different locations. Fixes bug #76757.
6435
6436         Patch by Lluis. Conflicts resolved by Brian Crowell.
6437
6438 2006-08-16  Alp Toker  <alp@atoker.com>
6439
6440         * socket-io.c: First half of the fix for #79084.
6441         Set sa_size to the length of the content, not that of the struct.
6442         Don't add NULL suffix to the content, this should be done in
6443         managed code if needed.
6444
6445 2006-08-14  Raja R Harinath  <rharinath@novell.com>
6446
6447         Fix part of #79012
6448         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
6449         mono_metadata_parse_type returns NULL.
6450
6451 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
6452
6453         * normalization-tables.h : new file for string normalization data.
6454         * locales.c, locales.h, icall.c :
6455           added load_normalization_resource() for string normalization,
6456           and icall as well.
6457         * Makefile.am : added normalization-tables.h to the sources.
6458
6459 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
6460
6461         * marshal.c: Add more helper functions to reduce code duplication and use them
6462         everywhere.
6463
6464 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
6465
6466         * marshal.c: Fix non-x86 stdcall warnings.
6467         
6468         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
6469         them everywhere.
6470
6471 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
6472
6473         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
6474         type check on multi-dimensional arrays. Fixes #79000.
6475
6476 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
6477
6478         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
6479         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
6480         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
6481         * class-internals.h: add is_com_object to class structure.
6482         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
6483         null checks to COM object marshalling. Fix .ctor call on RCW.
6484         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
6485         
6486         All code is contributed under the MIT/X11 license.
6487
6488 2006-08-09  Dick Porter  <dick@ximian.com>
6489
6490         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
6491         racing mono_monitor_allocator_lock() somewhere, so don't delete
6492         the critical section for now.  Found by running and exiting
6493         monodevelop.
6494
6495 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
6496
6497         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
6498         (ves_icall_System_ComObject_FindInterface): Ditto.
6499         (ves_icall_System_ComObject_CacheInterface): Ditto.
6500
6501         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
6502         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
6503
6504 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6505
6506         * threadpool.c: treat pipes from process asynchronous reads as sockets
6507         when reading from them, so we get select/poll or epoll to wait for
6508         data.
6509
6510 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
6511
6512         * loader.c: Fix a typo (CID #233) in the null check.
6513
6514 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
6515
6516         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
6517         Hopefully fixes #78949.
6518         
6519         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
6520         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
6521         bytes. Fixes #78972.
6522
6523 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6524
6525         * filewatcher.c: we need to set errno here.
6526
6527 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6528
6529         * filewatcher.c: let Win32Exception get the error value.
6530
6531 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6532
6533         * filewatcher.c: translate errno into win32 errors for Win32Exception
6534         to know what happened.
6535
6536 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
6537
6538         * threadpool.c: Fix more warnings.
6539
6540         * assembly.c (search_loaded): Fix warnings.
6541
6542         * threadpool.c (mono_thread_pool_finish): Fix warnings.
6543         (mono_async_invoke): Ditto.
6544
6545 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
6546
6547         * object.c (mono_remote_class_vtable): Need to create proxy vtable
6548         entries for __ComObject type in addition to ComImport types.
6549         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
6550         about hash table.
6551         
6552         All code is contributed under the MIT/X11 license.
6553
6554 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
6555
6556         * image.c: avoid tentative loading of modulerefs that contain
6557         no metadata (P/Invoke library names).
6558
6559 2006-07-28  Dick Porter  <dick@ximian.com>
6560
6561         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
6562         mono_loader_lock() somewhere, so don't delete the critical section
6563         for now.  Found by running and exiting monodevelop.
6564
6565 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6566
6567         * filewatcher.c: define the inotify syscalls when we're building on
6568         linux and have sys/syscall.h. The build system might not have support
6569         for inotify but the target system might have it.
6570
6571 2006-07-26  Miguel de Icaza  <miguel@novell.com>
6572
6573         * domain.c: Documentation updates.
6574
6575         * loader.c (mono_free_method): Do not release the method
6576         information if we are being profiled, as profilers will use this
6577         information at shut down to present some data to the user.
6578
6579         This is needed so that the profiler does not crash, as the
6580         profiler tends to keep MonoMethods around, and they might become
6581         invalid if we free these.
6582
6583         (mono_get_method_constrained): Return the original CIL stream
6584         method as well, so verification can be performed against it.
6585
6586 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6587
6588         * filewatcher.[ch]: support for inotify file system watcher.
6589         * icall.c: add new internal calls for the inotify file system watcher.
6590
6591 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6592
6593         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
6594         #78888.
6595
6596 2006-07-20  Dick Porter  <dick@ximian.com>
6597
6598         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
6599         warning.
6600
6601 2006-07-20  Dick Porter  <dick@ximian.com>
6602
6603         * threads.c (start_wrapper): Do the thread cleanup while we still
6604         hold a reference to its object.  Fixes bug 78123.
6605
6606 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
6607
6608         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
6609         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
6610           "managed-to-managed".
6611         * icall.c: Redirect string constructors that take sbyte* to
6612           ves_icall_System_String_ctor_RedirectToCreateString.
6613         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
6614           to CreateString () methods with matching signature.
6615         * reflection.c: Use original security informations for
6616           MONO_WRAPPER_MANAGED_TO_MANAGED.
6617         * security-manager.c: Use original security informations for
6618           MONO_WRAPPER_MANAGED_TO_MANAGED.
6619         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
6620           that is a placeholder and only its address should be used.
6621         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
6622           that is a placeholder and only its address should be used.
6623
6624 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
6625
6626         Begin implementing COM Interop.
6627         * appdomain.c: Increment corlib version.
6628         * class.c: Set ComImport classes' parent to __ComObject.
6629         * loader.c: Mark cominterop methods as such.
6630         * domain.c: Add __ComObject class to MonoDefaults structure.
6631         * image.c: Add 2 hashtables to the image for COM Interop related methods
6632         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
6633         using the mempool allocator
6634         
6635         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
6636         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
6637         declaration for mono_metadata_type_dup_mp.
6638         
6639         * debug-helpers.c: Added strings for two additional wrapper types
6640         * object.c: Create proxy objects for ComImport classes
6641         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
6642         and added __ComObject class to MonoDefaults structure.
6643         
6644         * object-internals.h: Finish MonoRealProxy definition, and add definition of
6645         MonoComInteropProxy and MonoComObject.
6646         
6647         * marshal.c: Added support for COM Interop
6648         (signature_cominterop): Converts managed signature to corresponding
6649         unmanaged COM signature.
6650         (cominterop_get_function_pointer): gets unmanaged function pointer via
6651         COM object vtable
6652         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
6653         (cominterop_get_method_interface): returns interface type that method is defined on
6654         (mono_mb_emit_cominterop_call): emits native call to function pointer
6655         gotten from vtable
6656         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
6657         that matches signature of unmanaged function.
6658         (cominterop_get_native_wrapper): wrapper around adjusted method call.
6659         (cominterop_get_invoke): forwards call from proxy to __ComObject
6660         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
6661         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
6662         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
6663         
6664         * marshal.h: Added Marshal icall declarations.
6665         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
6666         so we can access them in finalizer
6667         
6668 2006-07-14  Dick Porter  <dick@ximian.com>
6669
6670         * object.c (mono_type_initialization_cleanup): Fix a race
6671         condition by temporarily commenting out the critical section
6672         deletion.
6673
6674 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
6675
6676         * reflection.c (create_custom_attr): Fix some warnings.
6677         (create_custom_attr_data): Ditto.
6678         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
6679         types. Fixes #78855.
6680
6681 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
6682
6683         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
6684
6685         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
6686
6687 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
6688
6689         * reflection.c (resolve_object): Add support for DynamicMethod.
6690
6691         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
6692         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
6693
6694 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
6695
6696         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
6697         don't leak GPtrArray's pdata has we have no use (nor free) for it.
6698
6699 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
6700
6701         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
6702         Fixes #77888.
6703
6704 2006-06-30  Raja R Harinath  <rharinath@novell.com>
6705
6706         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
6707         slightly: remove a shadow local variable.
6708
6709 2006-06-29  Raja R Harinath  <rharinath@novell.com>
6710
6711         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
6712         definition that introduces the virtual function slot.
6713         Also fix Coverity #105.
6714
6715 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
6716
6717         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
6718         for dynamic assemblies. Fixes #78724.
6719
6720 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
6721
6722         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
6723         Fixes #78722.
6724
6725 2006-06-21  Martin Baulig  <martin@ximian.com>
6726
6727         * reflection.c
6728         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
6729         fixes #76484.
6730
6731 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
6732
6733         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
6734
6735 2006-06-20  Raja R Harinath  <rharinath@novell.com>
6736
6737         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
6738         nor TYPEREFs.
6739         * class.c (mono_class_create_from_typespec): Add 'context' argument.
6740         Inflate result if necessary.
6741         (mono_class_get_full): Remove old version.  Rename from
6742         'mono_class_get' and add 'context' argument.  Pass it to
6743         ..._create_from_typespec.
6744         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
6745         (mono_ldtoken): Revert change below.
6746
6747 2006-06-20  Martin Baulig  <martin@ximian.com>
6748
6749         * class.c (mono_ldtoken): Don't pass the generic context to
6750         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
6751
6752 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
6753
6754         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
6755         and later freeing it. Fixes #78638.
6756
6757 2006-06-15  Miguel de Icaza  <miguel@novell.com>
6758
6759         * icall.c (mono_class_get_throw): Revert over-zealous error
6760         throwing, the caller for mono_class_get_throw will cope with
6761         errors when classes are not properly initialized already.
6762
6763         The code still copes with loader exceptions though.
6764
6765         Fixes the regression in reftype1 and reftype3 from the CAS tests.
6766         
6767 2006-06-14  Miguel de Icaza  <miguel@novell.com>
6768
6769         Fixes the `make run1' version of RuntimeAbort (to be commited,
6770         source is in Bugzilla).
6771         
6772         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
6773         FALSE on class loading failure instead of returning true.
6774
6775         * class.c (mono_class_create_from_typedef): It is possible for
6776         mono_metadata_interfaces_from_typedef_full to fail if a class is
6777         not found, cope with this.
6778         
6779
6780 2006-06-14  Dick Porter  <dick@ximian.com>
6781
6782         * socket-io.c: 
6783         * process.c: Fix a bunch of signed/unsigned warnings from gcc
6784         4.1.1
6785
6786 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
6787
6788         * culture-info-table.h : oops, forgot to make it nsync with r61548.
6789
6790 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
6791
6792         * icall.c: Another fix for building mono in Visual Studio.
6793
6794 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
6795
6796         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
6797         
6798 2006-06-09  Martin Baulig  <martin@ximian.com>
6799
6800         * debug-mono-symfile.c: Put this back and really fix it this
6801         time. Sorry for all the trouble.
6802
6803 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
6804
6805         * icall.c (mono_class_get_throw): Fix a warning.
6806         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
6807         ReflectionTypeLoadException if needed. Fixes #78606.
6808
6809         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
6810         (mono_class_init): Ditto.
6811
6812         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
6813         ref_only exceptions.
6814         (mono_loader_clear_error): Make this work even if there is no error.
6815
6816 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
6817
6818         * object-internals.h marshal.c marshal.h icall.c: Implement method 
6819         Marshal.GetComSlotForMethodInfo using internal call.
6820
6821 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
6822
6823         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
6824         a function for signalling it.
6825
6826         * class.c (mono_class_from_typeref): Use the new kind of loader error when
6827         a referenced assembly is not found.
6828
6829         * loader.c (mono_loader_error_prepare_exception): Add support for 
6830         LOADER_ERROR_ASSEMBLY. Fix formatting.
6831
6832 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
6833
6834         * domain.c appdomain.c class-internals.h marshal.c: Add support 
6835         for VARIANT marshalling on windows and increment corlib version
6836         since Variant struct was added.
6837
6838 2006-06-03  Miguel de Icaza  <miguel@novell.com>
6839
6840         * debug-mono-symfile.c: Revert Martin's previous patch which broke
6841         stack trace line information:
6842
6843         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
6844         (Martin) when looking up B which is between A and C, return A not C.
6845
6846         Bug is #78573.
6847
6848         Thanks to Alexander Olk for tracking this down.
6849
6850 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
6851
6852         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
6853         
6854         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
6855         avoid clobbering its value.
6856         (mono_string_to_lpstr): Fix a warning on windows.
6857
6858 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
6859
6860         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
6861
6862         * reflection.c loader.c: Removed references to 'dummy' flag.
6863
6864         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
6865
6866         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
6867         it gets GC tracking.
6868
6869         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
6870         GC tracking.
6871         
6872         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
6873
6874         * marshal.c threadpool.c: Update callers of mono_async_result_new.
6875
6876         * appdomain.c: Bump corlib version.
6877
6878 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
6879
6880         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
6881         CEE_STIND_REF when working with object references.
6882
6883 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
6884
6885         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
6886         Fixes #78539.
6887
6888 2006-05-30  Miguel de Icaza  <miguel@novell.com>
6889
6890         * loader.c (method_from_memberref): Fix argument value for
6891         mono_loader_set_error_method_load (I was passing the MonoClass
6892         instead of the class name char *).
6893
6894 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
6895
6896         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
6897         CEE_STIND_REF when working with object references.
6898
6899 2006-05-30  Martin Baulig  <martin@ximian.com>
6900
6901         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
6902         mono_method_full_name() change and replace the ':' with a '.'
6903         here.
6904
6905 2006-05-30  Martin Baulig  <martin@ximian.com>
6906
6907         * debug-mono-symfile.c
6908         (mono_debug_symfile_lookup_location): Fix the algorithm:
6909         when looking up B which is between A and C, return A not C.
6910
6911 2006-05-29  Martin Baulig  <martin@ximian.com>
6912
6913         * mono-debug.h
6914         (MonoDebugMethodInfo): Make the typedef public.
6915         (MonoDebugSourceLocation): New public struct.
6916
6917         * mono-debug.c
6918         (mono_debug_source_location_from_address): Removed.
6919         (mono_debug_source_location_from_il_offset): Removed.
6920         (mono_debug_il_offset_from_address): Removed.
6921         (mono_debug_address_from_il_offset): Removed.
6922         (mono_debug_lookup_method): New public function.
6923         (mono_debug_lookup_source_location): New public function; replaces
6924         the old mono_debug_source_location_from_*() functions; see the
6925         inline documentation.
6926         (mono_debug_free_source_location): New public function.
6927         (mono_debug_print_stack_frame): New public function; see the
6928         inline documentation.
6929
6930         * debug-mono-symfile.c
6931         (mono_debug_find_source_location): Renamed into
6932         mono_debug_symfile_lookup_location(); only take a
6933         `MonoDebugMethodInfo *' and an `offset' argument; added inline
6934         documentation.
6935         (mono_debug_find_method): Renamed into
6936         mono_debug_symfile_lookup_method().
6937
6938 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
6939
6940         * assembly.c (mono_assembly_open_full): Dont overwrite the status
6941         returned by mono_image_open_full ().
6942
6943         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
6944         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
6945         #78517.
6946
6947         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
6948         #78518.
6949
6950 2006-05-27  Miguel de Icaza  <miguel@novell.com>
6951
6952         * class.c (mono_class_from_typeref): handle missing images
6953         earlier, deals with bug #78418.   Refactor code; 
6954
6955         Fix a warning introduced in my previous commit (some stale code
6956         from before I revisited my patch).
6957
6958         * class.c (mono_class_create_from_typedef): On failure, remove the
6959         class from the MonoImage->class_cache as the class is not
6960         initialized;   Fixes the leak pointed out by Paolo.
6961
6962 2006-05-25  Dick Porter  <dick@ximian.com>
6963
6964         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
6965         DeleteCriticalSections until I figure out which one may still be
6966         sometimes locked when mono_thread_cleanup is called.
6967
6968 2006-05-24  Dick Porter  <dick@ximian.com>
6969
6970         * threads.c (mono_thread_cleanup): Move the threading cleanup out
6971         of mono_thread_manage and back into its own function, so it can be
6972         called after the finalizer thread has finished.
6973
6974         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
6975
6976 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
6977
6978         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
6979         Fixes #78495.
6980
6981         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
6982         with non-blittable elements.
6983         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
6984
6985 2006-05-24  Martin Baulig  <martin@ximian.com>
6986
6987         * mono-debug-debugger.h (MonoDebuggerEvent): Added
6988         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
6989
6990         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
6991         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
6992         `mono_debugger_event_handler' to NULL.
6993
6994 2006-05-24  Martin Baulig  <martin@ximian.com>
6995
6996         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
6997
6998 2006-05-24  Martin Baulig  <martin@ximian.com>
6999
7000         * mono-debug-debugger.h
7001         (mono_debugger_create_notification_function): Added
7002         `MonoCodeManager *' argument.
7003
7004 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
7005
7006         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
7007
7008 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
7009
7010         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
7011         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
7012         implementation.
7013
7014 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
7015
7016         * icall.c: precise GC support: objects can't be stored in unmanaged
7017         memory anymore, even if they are kept alive by other references: since
7018         they can move the GC needs to be able to always find them.
7019
7020 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
7021
7022         * object.c: precise GC support for static fields. Support
7023         for moving GCs: write barriers and pinned allocation for interned
7024         strings.
7025
7026 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
7027
7028         * domain.c, domain-internals.h: precise GC support for the MonoDomain
7029         structure.
7030
7031 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
7032
7033         * class.c, gc.c: sgen and precise GC updates.
7034
7035 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
7036
7037         * marshal.h, marshal.c: added write barrier wrapper and precise type
7038         fixes.
7039
7040 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
7041
7042         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
7043         support.
7044
7045 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
7046
7047         * reflection.c: precise and sgen GC updates.
7048
7049 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
7050
7051         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
7052
7053 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
7054
7055         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
7056
7057 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
7058
7059         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
7060         MONO_TYPE_OBJECT. Fixes #78462.
7061
7062 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
7063
7064         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
7065         and blittable types.
7066
7067 2006-05-17  Miguel de Icaza  <miguel@novell.com>
7068
7069         * class.c (mono_class_get_exception_for_failure): Implement parts
7070         of a TODO: if the loader error is set (instead of the class
7071         error), we return a Loader exception that can be properly thrown
7072         elsewhere.
7073
7074         This was exposed by some Winforms 2.0 code that I tried to run
7075         (Atsushi pointed me to it).
7076
7077 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
7078
7079         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
7080         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
7081         
7082         * marshal.c (emit_marshal_vtype): Add limited support for 
7083         UnmanagedType.LPStruct. Fixes #78427.
7084
7085         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
7086         Applied a patch from kangaroo to fix #77523.
7087
7088 2006-05-17  Martin Baulig  <martin@ximian.com>
7089
7090         * threads.c
7091         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
7092         (debugger_thread_created): Removed.
7093         (debugger_thread_exited): Removed.
7094
7095 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
7096
7097         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7098
7099         * object-internals.h (MonoReflectionResource): Sync with managed version.
7100
7101 2006-05-12  Wade Berrier <wberrier@novell.com>
7102
7103         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
7104
7105 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
7106
7107         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
7108         functions try to allocate from the image mempool.
7109
7110 2006-05-12  Dick Porter  <dick@ximian.com>
7111
7112         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
7113
7114 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
7115
7116         * object.c: The FieldGetter and FieldSetter methods require the full
7117         name of the class, not only the name. Fixes bug #78277.
7118
7119 2006-05-11  Miguel de Icaza  <miguel@novell.com>
7120
7121         * loader.c (method_from_memberref): Do not pass the NULL klass to
7122         mono_loader_set_error_() methods.  Pass the non-NULL value
7123         (class). 
7124
7125 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
7126
7127         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
7128         (mono_assembly_close): Null out assembly->image->references after freeing it.
7129
7130         * image.c (mono_image_close): Free image->references.
7131         
7132         * reflection.c (mono_image_basic_init): Fix a small memory leak.
7133
7134 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
7135
7136         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
7137         before checking if it's NULL (g_assert).
7138
7139 2006-05-10  Martin Baulig  <martin@ximian.com>
7140
7141         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
7142         I thought I already killed that two months ago, but now it somehow reappeared.
7143
7144 2006-05-10  Martin Baulig  <martin@ximian.com>
7145
7146         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
7147
7148 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
7149
7150         * reflection.c: Allocate memory for dynamically created methods in the image
7151         mempools.
7152
7153 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
7154
7155         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
7156         don't use the ad pointer before checking if it's NULL (g_assert).
7157
7158 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
7159
7160         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
7161         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
7162
7163         * marshal.c: Allocate all signatures from mempools.
7164
7165         * marshal.c: Allocate some more signatures from mempools.
7166
7167 2006-05-09  Miguel de Icaza  <miguel@novell.com>
7168
7169         * object.c (mono_load_remote_field): The code used to provide a
7170         temporary variable for returning results if the user did not
7171         provide a result pointer.  But our temporary variable was allocted
7172         on the satck.
7173
7174         Fix calling code to always pass a result area.   Coverity ID 103.
7175
7176 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
7177
7178         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
7179         value, not the old. Fixes #78312.
7180         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
7181
7182         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
7183         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
7184         per-image cache.
7185
7186         * assembly.c (mono_assembly_close): Free image->references.
7187
7188         * assembly.c (mono_assembly_names_equal): Fix a warning.
7189         (mono_assemblies_cleanup): Cleanup more global data.
7190
7191         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
7192
7193         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
7194         ptr_cache and image->modules.
7195
7196         * image.c (mono_image_init): Allocate array_cache lazily.
7197         
7198 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7199
7200         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
7201         behavior was changed recently and has bad side effects.
7202
7203 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
7204
7205         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
7206         
7207         * assembly.c (mono_assembly_close): Remove a debug printf.
7208
7209         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
7210
7211         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
7212         to also allow for temporary references between mono_image_open ()/close ().
7213
7214         * domain.c (get_runtimes_from_exe): Add a FIXME.        
7215
7216 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
7217
7218         * marshal.c: Fix support for dynamic methods.
7219
7220         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
7221
7222         * marshal.c (mono_marshal_cleanup): New cleanup function.
7223
7224         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
7225         image mempools.
7226
7227         * class.c (mono_class_init): Fix leaking class->nested_classes.
7228
7229         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
7230
7231         * image.c (mono_image_init): Initialize the new cashes.
7232
7233         * image.c (mono_image_close): Destroy the new cashes.
7234
7235         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
7236
7237         * mempool.c (mono_mempool_strdup): New helper function.
7238
7239         * class-internals.h: Add prototype for mono_loader_unlock ().
7240
7241         * domain.c (mono_jit_info_table_find): Fix a warning.
7242         (mono_debugger_check_runtime_version): Ditto.
7243
7244         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
7245         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
7246         functions to these modules.
7247
7248         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
7249         metadata modules.
7250         
7251         * marshal.c (mono_free_bstr): Fix a warning.
7252
7253         * assembly.c (mono_assembly_open_full): Fix another small leak.
7254
7255         * object.c: Fix some unload leaks in the remoting code.
7256
7257         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
7258         function.
7259
7260         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
7261
7262         * reflection.c: Fix some unload leaks in dynamic assemblies.
7263
7264 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
7265
7266         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
7267         * marshal.h: Add BSTR support on Win32
7268         * icall.c: Add BSTR icalls
7269         * metadata.h: Add BSTR enums
7270
7271 2006-04-28  Miguel de Icaza  <miguel@novell.com>
7272
7273         Work to catch the crash from #76795 and turn it into an
7274         exception.   As I stubbed out pieces of the VisualBasic support,
7275         I found a number of places where the code was failing and I added
7276         checks to those places. 
7277         
7278         * metadata.c (do_mono_metadata_parse_generic_class): Make this
7279         function return a status code.  If we fail to parse the signature
7280         from mono_metadata_parse_generic_inst, return FALSE.
7281
7282         * loader.c (mono_get_method_from_token): If we fail to load the
7283         method (mono_class_get) return NULL.   
7284
7285         * (method_from_memberref): Return NULL if we are unable to parse
7286         the method signature
7287
7288         (mono_loader_error_prepare_exception): Since we now use the
7289         loader_error flag internally to stop processing, and obtaining
7290         exceptions that might be thrown will walk this code path the
7291         proper way of going from a MonoLoaderError into a
7292         MonoException was convoluted.   This new routine encapsulates the
7293         process of turning the error into an exception and *clearing* the
7294         error afterwards.
7295         
7296 2006-04-27  Miguel de Icaza  <miguel@novell.com>
7297
7298         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
7299         with missing assemblies), and to cope with:
7300
7301                 * Missing fieldref from a non-existing assembly.
7302                 * Missing methodref from a non-existing assembly.
7303
7304         The first batch of work to address *some* of the issues from 76661.
7305         
7306         * object.c (mono_class_create_runtime_vtable): If we fail to
7307         initialize the class raise the exception here. 
7308
7309         * metadata.c (mono_class_get_overrides_full): If any methods fail
7310         to load return the failure to the caller.
7311
7312         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
7313         flagging assemblies that failed to load.   
7314
7315         Do not crash if we are unable to load the assembly.
7316
7317         (mono_assembly_close): Do nothing with REFERENCE_MISSING
7318         assemblies. 
7319
7320         * loader.c (mono_loader_set_error_type_load): Change the
7321         convention to always pass unallocated strings, so we make our own
7322         copies (I know our own code had duplicated strings before, but
7323         this keeps the normal conventions).
7324         (method_from_memberref): Call mono_loader_set_error_method_load
7325         for all possible failures of loading the class. 
7326         Remove assert, turn into a loader error.
7327
7328         (mono_loader_error_to_exception): Move this routine from mini
7329         (mini_loader_error_to_exception) there was no need to have that in
7330         mini. 
7331
7332         * class.c (mono_class_from_typeref): If we were not able to load
7333         the assembly with mono_assembly_load_reference, call the
7334         mono_loader_set_error_type_load to register the problem.
7335
7336         (mono_class_setup_fields): If we fail to load the type from
7337         mono_metadata_parse_type_full, call mono_class_set_failure and
7338         break from the loop.
7339
7340         If class->exception_type is set, we do not layout the fields as
7341         that might crash the runtime, and instead return (from breaking
7342         from the previous loop).
7343
7344         (mono_class_setup_vtable): This now returns a boolean indicating
7345         whether the table was properly setup.   The decision is driven by
7346         mono_class_get_overrides_full which might run into non-existing
7347         methods. 
7348         
7349         (mono_class_init): Returns TRUE on success or FALSE if there was a
7350         problem in loading the type (incorrect assemblies, missing
7351         assemblies, methods, etc).
7352
7353         When we call mono_class_setup_fields we also check for a potential
7354         error inside this call (either a class exception or a general
7355         loader exception).
7356
7357         (mono_class_create_from_typedef): If the parent fails to load
7358         (calling mono_class_get_full) return NULL.
7359         
7360         ** Important **
7361
7362         calls to mono_metadata_parse_type_full should be checked
7363         everywhere and set the mono_class_set_failure
7364         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
7365
7366         The current patch checks the places where my manually constructed
7367         tests show the errors are showing up, but we should do it
7368         everywhere. 
7369
7370         ** Important2 **
7371
7372         mono_class_init return values should be tested everywhere, like
7373         the previous case this is something that we should audit
7374         everywhere and not only on the cases exposed by the tests I
7375         created. 
7376
7377 2006-04-26  Miguel de Icaza  <miguel@novell.com>
7378
7379         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
7380         boolean parameter and instead pass the information on `options'
7381         parameter (FileOptions).
7382
7383         * icall.c: Register the new signature for MonoIO.Open.
7384
7385         * debug-helpers.c (dis_one): Trying to understand how coverity
7386         works.  Fix Run 5, item 78.
7387
7388 2006-04-26  Dick Porter  <dick@ximian.com>
7389
7390         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
7391         dereference.
7392
7393 2006-04-25  Martin Baulig  <martin@ximian.com>
7394
7395         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
7396
7397         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
7398         debugger_thread_created().
7399         (debugger_gc_push_all_stacks): Don't handle the main thread in any
7400         special way.
7401         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
7402         (mono_debugger_finalize_threads): New function; undo the effects
7403         of mono_debugger_init_threads().
7404         (mono_debugger_create_all_threads): Removed.
7405
7406 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
7407
7408         * image.c (mono_image_close): Tidy up trace messages.
7409
7410         * assembly.c (mono_assembly_close): Ditto.
7411
7412         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
7413         no longer references an already freed assembly. Fixes #78168.
7414
7415 2006-04-21  Dick Porter  <dick@ximian.com>
7416
7417         * threads.c (mono_thread_detach): Fix reference counting when
7418         detaching threads.
7419
7420 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
7421
7422         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
7423         #78155.
7424
7425 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
7426
7427         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
7428         (mono_type_to_stind): Ditto.
7429
7430         * marshal.c: Use the new helper functions to simplify code.
7431
7432         * image.c (mono_image_close): Add some code for help debug assembly unloading
7433         problems.
7434
7435         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
7436         image mempool.
7437
7438         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
7439         assembly was already loaded in another appdomain. Fixes #78083.
7440
7441 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
7442
7443         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
7444         referenced assemblies.
7445         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
7446
7447         * domain.c (mono_domain_free): Add a trace message.
7448
7449         * appdomain.c (add_assemblies_to_domain): Ditto.        
7450
7451         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
7452         field.  
7453
7454 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
7455
7456         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
7457
7458 2006-04-12  Martin Baulig  <martin@ximian.com>
7459
7460         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
7461         `USE_INCLUDED_LIBGC'.   
7462
7463 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
7464
7465         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
7466         the patch contains ../ and a small directory name later. Hopefully fixes
7467         #78035.
7468
7469 2006-04-10  Martin Baulig  <martin@ximian.com>
7470
7471         Clean up the debugger's thread-handling code.
7472
7473         The debugger's thread-handling code has been moved from
7474         ../mini/debug-debugger.c to threads.c.  We now iterate directly
7475         over the `threads' hash, keep track of exiting threads and also
7476         use proper locking.
7477
7478         We can now debug XSP and XSP based applications with the debugger.
7479
7480         * object-internals.h (MonoThread): Added `gpointer end_stack'.
7481
7482         * threads.h
7483         (MonoThreadCallbacks): Removed; this was only used by the debugger.
7484         (mono_install_thread_callbacks): Likewise.      
7485
7486         * threads.c (mono_thread_callbacks): Removed.
7487         (debugger_thread_created, debugger_thread_exited): New static functions.
7488         (start_wrapper): Call debugger_thread_created().
7489         (thread_cleanup): Call debugger_thread_exited().
7490         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
7491         (mono_debugger_init_threads): New public function.
7492         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
7493         iterate directly over the `threads' hash and also use proper locking.
7494
7495         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
7496
7497         * mono-debug-debugger.h
7498         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
7499
7500 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
7501
7502         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
7503         argument type=array. Fixes #78057.
7504
7505 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
7506
7507         * culture-info-table.h : regenerated. Fixed bug #69652.
7508
7509 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
7510
7511         * loader.c metadata.c: Reapply a variant r59116.
7512         
7513         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
7514
7515         * class.c (mono_class_setup_interface_offsets): New internal function.
7516
7517         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
7518         interfaces too. Fixes #77398.
7519
7520         * reflection.c (encode_cattr_value): Add support for 
7521         parameter type=object, argument type=array.
7522         (load_cattr_value): Ditto. Fixes #77916.
7523
7524         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
7525         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
7526
7527         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
7528         a byval char array and CharSet is Ansi.
7529
7530         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
7531
7532 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
7533
7534         * metadata.c: Add some locking comments.
7535         
7536         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
7537         mempool.
7538         (mono_metadata_free_method_signature): Don't free the signature itself.
7539
7540         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
7541
7542         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
7543         reference the same MonoImage.
7544         (mono_assembly_load_from_full): Add an assert.
7545
7546 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
7547
7548         * image.c (mono_image_close): Don't put the image we are about to free into the
7549         loaded_images_guid_hash.
7550
7551         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
7552         to reduce code duplication.
7553
7554         * marshal.c: Register the native functions called by this module as icalls, to
7555         somewhat centralize the creation of MonoMethodSignature's.
7556
7557         * loader.c (mono_method_signature): Add a cache for method signatures.
7558
7559         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
7560         the parameter attributes of a method.
7561         (mono_metadata_parse_method_signature_full): Refactored the computation of
7562         parameter attributes into a separate function. Also avoid one allocation in
7563         most cases.
7564
7565         * assembly.c (mono_assembly_close): Ditto.
7566
7567         * image.c (mono_image_close): Log trace messages with INFO level.
7568
7569         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
7570
7571         * image.c reflection.c: Correct reference counting of image modules.
7572         
7573         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
7574         of this function from the image mempool.
7575         
7576         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
7577         to allow more cached types to be used.
7578
7579         * mono-debug.c (mono_debug_add_method): Appled patch from
7580         David S. Miller  <davem@sunset.davemloft.net>: Access 
7581         minfo->lexical_blocks[] entry elements using read32().
7582
7583 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
7584
7585         * loader.c (mono_free_method): No longer free the method header for non-dynamic
7586         methods as it is allocated from the mempool.
7587
7588         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
7589         image mempool.
7590
7591         * metadata-internals.h: Add comments describing the reference counting scheme
7592         used for MonoImage and MonoAssembly.
7593
7594         * image.c assembly.c reflection.c: Rework reference counting of images and 
7595         assemblies so they are freed when the runtime is shut down. Free some 
7596         additional memory structures when an image is unloaded.
7597         
7598 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
7599
7600         * class.c loader.c reflection.c: Allocate more data structures in
7601         the image mempool.
7602
7603 2006-03-31  Miguel de Icaza  <miguel@novell.com>
7604
7605         * icall.c
7606         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
7607         build on pre glib 2.4 systems.
7608
7609 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
7610
7611         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
7612
7613         * icall.c: Fix some warnings.
7614
7615 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
7616
7617         * culture-info-table.h : regenerated.
7618
7619 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
7620
7621         * threads.c, object-internals.h, verify.c: changed the culture caching
7622         code to use a normal MonoArray for storage so the GC can keep track of
7623         them easily. Fixed bits of the cache logic, too and simplified the
7624         code.
7625
7626 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
7627
7628         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
7629         thread for non-Boehm GCs.
7630
7631 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
7632
7633         * domain.c, object.c, domain-internals.h: reduce the amount of memory
7634         needed to keep track of the data for static fields.
7635
7636 2006-03-29  Raja R Harinath  <rharinath@novell.com>
7637
7638         Fix #75172
7639         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
7640         for interface classes.  Use 'num_methods' instead.
7641         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
7642         before using '->vtable_size' field.
7643
7644 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
7645
7646         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
7647         doesn't contain managed pointers, so use a normal hashtable.
7648
7649 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
7650
7651         * reflection.c, class-internals.h, domain.c: fixed handling of types
7652         used as values for objects in custom attributes (bug #77915):
7653
7654 2006-03-24  Martin Baulig  <martin@ximian.com>
7655
7656         * class.c (mono_class_setup_fields): Added support for generic
7657         instances; fixes #77580.
7658
7659 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7660
7661         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
7662
7663 2006-03-24  Dick Porter  <dick@ximian.com>
7664
7665         * file-io.c (get_file_attributes): More stat macro breakage.
7666         Fixes bug 77759.
7667
7668 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
7669
7670         * profiler.c: added the file=filename option in the default profiler
7671         to output the profile data to filename.
7672
7673 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7674
7675         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
7676         bug #77877.
7677
7678 2006-03-22  Martin Baulig  <martin@ximian.com>
7679
7680         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
7681         allocated `MonoClassField *' in `fb->handle'.
7682
7683 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
7684
7685         * class.c, image.c, metadata-internals.h: implemented new mechanism to
7686         allocate interface ID to save memory and allow better ID reuse on
7687         appdomain unload. setup_generic_vtable () removal from Martin.
7688
7689 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
7690
7691         * object.h, appdomain.c, domain.c, exception.c, icall.c,
7692         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
7693         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
7694         write barriers for reference stores with managed objects accessed with
7695         C structures in the runtime and in embedding programs.
7696
7697 2006-03-20  Raja R Harinath  <rharinath@novell.com>
7698
7699         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
7700         'interface_id' and 'max_interface_id' fields of MonoClasses
7701         representing open generic types.
7702
7703 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
7704
7705         * object.h, object.c, icall.c: added functions to deal with
7706         storing valuetypes that contain references in managed objects.
7707         * reflection.c, string-icalls.c, threads.c, marshal.c: small
7708         fixes and comments around uses of mono_array_addr ().
7709
7710 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
7711
7712         * object.h, icall.c, monitor.c: object.GetHashCode ()
7713         implementation that supports the moving garbage collector.
7714
7715 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
7716
7717         * icall.c, threads-types.h, threads.c: implemented finalizer for
7718         LocalDataStoreSlot.
7719
7720 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
7721
7722         * metadata.c (mono_type_size): Add a fixme.
7723         (mono_type_stack_size): Ditto.
7724
7725         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
7726         'type_forwarders' field.
7727
7728         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
7729         attribute from net 2.0.
7730
7731         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
7732         from class.c.
7733
7734         * class.c (mono_class_setup_fields): Fix a warning.
7735         
7736         * class.c (mono_class_from_name): Add support for assemblyref entries
7737         in the EXPORTEDTYPE table.
7738
7739         * reflection.c: Add support for handling type forwarders under net 2.0.
7740
7741         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
7742         
7743 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
7744
7745         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
7746         overwriting entries in ModuleBuild->types, also clean up the code
7747         a little. Fixes #77774.
7748
7749 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
7750
7751         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
7752         load friend assembly info when present.
7753
7754 2006-03-14  Raja R Harinath  <rharinath@novell.com>
7755
7756         Fix crasher on gtest-158.cs.
7757         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
7758         the return value if the MonoClass we want is yet in an
7759         inconsistent state.
7760         * class.c (mono_class_create_from_typedef): Add an comment
7761         explaining an order dependency between mono_class_setup_parent and
7762         mono_class_setup_mono_type.
7763
7764 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
7765
7766         * class.c: documentation updates and events bug fix.
7767
7768 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
7769
7770         * class.c: some cleanup, locking fixes.
7771
7772 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
7773
7774         * class.c: fix the generics code to setup nested
7775         type info to the instantiated type (bug #77770).
7776
7777 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
7778
7779         * marshal.c: fixed a few type correctness issues.
7780
7781 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
7782
7783         * loader.c: the Set/Get/Addrtess array methods should be public.
7784
7785 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
7786
7787         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
7788         
7789         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
7790         info->wrapper.
7791
7792 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
7793
7794         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
7795
7796         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
7797
7798         * mempool.c (mono_mempool_alloc): Speed this up a bit.
7799         (mono_mempool_alloc0): Ditto.
7800
7801 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7802
7803         * socket-io.c:
7804         (create_object_from_sockaddr): it was allocating 4 extra bytes
7805         for the AF_UNIX data. Fixes bug #77747.
7806
7807 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
7808
7809         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
7810
7811 2006-03-09  Dick Porter  <dick@ximian.com>
7812
7813         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
7814         Fixes bug 76966 again.
7815
7816 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
7817
7818         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
7819         names from r57532
7820         * appdomain.c: Bumped corlib version to 48 (due to r57532)
7821
7822 2006-03-07  Martin Baulig  <martin@ximian.com>
7823
7824         * object.c
7825         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
7826
7827 2006-03-07  Martin Baulig  <martin@ximian.com>
7828
7829         * class.c
7830         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
7831         regression introduced in r56970; see gtest-252.cs.
7832
7833         * loader.c (mono_get_method_constrained): Correctly handle generic
7834         methods; see gtest-253.cs.
7835
7836 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
7837
7838         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
7839
7840 2006-03-04  Martin Baulig  <martin@ximian.com>
7841
7842         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
7843         compute the parent type at runtime, just like we're already doing
7844         it for interfaces.
7845
7846         * reflection.c
7847         (mono_reflection_bind_generic_parameters): Don't compute the
7848         parent type anymore.
7849
7850         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
7851
7852 2006-03-04  Martin Baulig  <martin@ximian.com>
7853
7854         * mono-debug-debugger.h
7855         (mono_debugger_create_notification_function): Allocate memory at
7856         runtime and return a pointer to it.
7857
7858 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
7859
7860         * assembly.c: Fix windows build.
7861         
7862         * assembly.c: Fix build.
7863
7864         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
7865
7866         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
7867         
7868 2006-03-03  Dick Porter  <dick@ximian.com>
7869
7870         * process.c
7871         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
7872         Check parameters before dereferencing them.  Fixes Aaron's part of
7873         bug 77393.
7874
7875 2006-03-03  Raja R Harinath  <rharinath@novell.com>
7876
7877         Fix performance regression.
7878         * loader.c (find_method_in_class): Add 'from_class' argument.
7879         Rename 'klass' argument to 'in_class'.  The signature is compared
7880         against the method in 'in_class', and the corresponding method is
7881         returned from 'from_class'.
7882         (find_method): Walk both 'in_class' and 'from_class' in parallel.
7883         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
7884         type definition and generic instantiation in parallel.
7885         (mono_get_method_constrained): Update to changes.
7886
7887 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
7888
7889         * threads.c: make sure the domain is correct, too when doing
7890         mono_thread_attach ().
7891
7892 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
7893
7894         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
7895         windows. Fixes #77683.
7896
7897 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
7898
7899         * object.h, *: introduced specific way to set elements of an array
7900         of references to be used as write barrier. Still need to audit the
7901         uses of mono_array_addr.
7902
7903 2006-03-01  Miguel de Icaza  <miguel@novell.com>
7904
7905         * object-internals.h: New field to cache the assmebly name, patch
7906         from Tambet Ingo (tambet@ximian.com)
7907
7908 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
7909
7910         * decimal.h, class-internals.h, metadata-internals.h,
7911         file-io.h: mark a few function declarations as internal, to
7912         reduce the number of PLT entries.
7913
7914 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7915
7916         * file-io.c: fix typo in warning message.
7917
7918 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
7919
7920         * loader.c: on unix, lookup the "*A" version of a function
7921         if charset is auto as a second option before failing.
7922
7923 2006-02-28  Raja R Harinath  <rharinath@novell.com>
7924
7925         * class.h (mono_class_inflate_generic_method): Revert to two
7926         argument version.
7927         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
7928         (mono_class_inflate_generic_method_full): Add.
7929         * class.c (mono_class_inflate_generic_method_full): Rename from
7930         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
7931         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
7932         * loader.c, reflection.c: Update to changes.
7933
7934 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
7935
7936         * icall.c: const fixes and small improvements.
7937
7938 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7939
7940         * threadpool.c: for asynchronous connect(), enable the same workaround
7941         for BSD 6 as for the Mac. Fixes bug #77637.
7942
7943 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
7944
7945         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
7946         formatted classes. Fixes #77524.
7947
7948 2006-02-24  Raja R Harinath  <rharinath@novell.com>
7949
7950         * class.c (inflate_generic_type): Add a couple more
7951         micro-optimizations.
7952         (inflate_generic_context): Don't use the 'gmethod' from
7953         'inflate_with'.
7954         (mono_class_inflate_generic_method): If the method has generic
7955         parameters, but the passed-in context doesn't have a 'gmethod',
7956         create one.  Use the possibly simplified generic instantiation
7957         from the declaring class instead of the one passed in.
7958
7959 2006-02-24  Raja R Harinath  <harinath@gmail.com>
7960
7961         Make generic method signature and method header handling lazy.
7962         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
7963         (inflate_generic_header): Likewise.
7964         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
7965         parameter to avoid inflating types.
7966         (mono_get_inflated_method): Empty out.
7967         * class.h (mono_class_inflate_generic_method): Update to changes.
7968         * loader.c (mono_get_method_from_token): Don't parse signature for
7969         generic methods, nor methods of generic classes.
7970         (mono_method_signature): Rename from 'mono_method_signature'.
7971         Inflate signature on demand.
7972         (mono_method_get_header): Inflate method header on demand.
7973         * reflection.c: Update to changes.
7974
7975 2006-02-23  Raja R Harinath  <rharinath@novell.com>
7976
7977         * metadata.c (mono_metadata_inflate_generic_inst): If the
7978         instantiation is closed, don't bother expanding it in the new
7979         context.
7980         * class.c (inflate_generic_class): If the generic instantiation
7981         doesn't change after inflation, return the argument itself.
7982         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
7983         Add bounds checks.
7984         (inflate_generic_context): If neither the generic class nor the
7985         generic method instantiations change, return the original context.
7986         * reflection.c (mono_method_get_object): Do
7987         'mono_get_inflated_method' before accessing the ->klass field.
7988         (inflate_mono_method): Don't create a MonoGenericMethod unless
7989         necessary.
7990         (inflate_method): Don't pass a constructed type as the declaring
7991         type of a methodbuilder.
7992
7993 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
7994
7995         * object.c: fix memory overwrite.
7996
7997 2006-02-22  Dick Porter  <dick@ximian.com>
7998
7999         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
8000         it doesn't work any more.
8001         (mono_threads_request_thread_dump): Fix unused variable warnings.
8002
8003 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
8004
8005         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
8006         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
8007         the public header file.
8008
8009 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
8010
8011         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
8012
8013 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
8014
8015         * class-internals.h, object.c: reduce the size of MonoVTable
8016         and store the interface_offsets array at negative offsets.
8017
8018 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
8019
8020         * metadata.c: tweak table descriptors data structures to reduce
8021         size and runtime relocations.
8022
8023 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
8024
8025         * marshal.c: fix some types and opcodes to be type-safe
8026         in marshaling wrappers.
8027
8028 2006-02-21  Ankit Jain  <jankit@novell.com>
8029
8030         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
8031
8032 2006-02-21  Raja R Harinath  <rharinath@novell.com>
8033
8034         * metadata.c (get_constraints): Relax debugging checks for monodis.
8035
8036 2006-02-21  Ankit Jain  <jankit@novell.com>
8037
8038         * metadata.c (mono_metadata_load_generic_params): Move the code
8039         checking for ambiguous generic params from here to mono/dis/get.c
8040         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
8041
8042 2006-02-21  Raja R Harinath  <harinath@gmail.com>
8043
8044         Fix assertion triggered when compiling nemerle.
8045         * class.c (mono_get_shared_generic_inst): Rename from
8046         get_shared_inst and make non-static.
8047         * loader.c (mono_get_shared_generic_method): New.  Used to create
8048         the MonoGenericContext-equivalent of a MonoGenericContainer.
8049         (mono_get_method_from_token): Initialize the 'context' field of
8050         the created MonoGenericContainer.
8051         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
8052         * metadata.c (get_constraints): Add sanity check.
8053         * class-internals.h: Add new internal methods.
8054
8055         * reflection.c (verify_safe_for_managed_space): New sanity check.
8056         Currently checks that owner-less generic parameters aren't allowed
8057         in managed space.
8058         (mono_type_get_object): Use it.
8059         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
8060         that are now in mono_type_get_object.
8061         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
8062
8063 2006-02-19  Raja R Harinath  <harinath@gmail.com>
8064
8065         * metadata.c (mono_type_create_from_typespec): Rename from
8066         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
8067         argument and caching of types in the generic container.
8068         (unwrap_arrays, find_generic_param): Remove.
8069         * metadata-internals.h: Update.
8070         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
8071
8072 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
8073
8074         * class.c (mono_class_get_exception_for_failure): Fix a warning.
8075
8076         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
8077         return values. Fixes #77581.
8078
8079         * class.c (mono_fnptr_class_get): Switch name and name_space.
8080
8081         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
8082         classes and add support for [In, Out] attributes.
8083         (mono_marshal_free_asany): Ditto. Fixes #77524.
8084
8085 2006-02-18  Raja R Harinath  <harinath@gmail.com>
8086
8087         * class.c (mono_class_from_generic_parameter): Make more robust to
8088         incomplete MonoGenericContainers from monodis.
8089
8090 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
8091
8092         * class-internals.h: added some more exception types.
8093         * class.c, metadata.c: added a few checks to handle missing
8094         types.
8095
8096 2006-02-17  Raja R Harinath  <rharinath@novell.com>
8097
8098         Use owner-less generic-params some more.
8099         * class.c (my_mono_class_from_generic_parameter): Remove.
8100         (mono_class_from_generic_parameter): Handle null image,
8101         param->name and param->owner.
8102         (mono_class_from_mono_type): Update.
8103         (mono_class_create_from_typespec): Remove 'container' parameter.
8104         If that parameter is non-null, the result is always inflated by
8105         'mono_class_get_full' anyway.
8106         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
8107         parameter.
8108         (mono_class_get_full): Update.
8109
8110         * class.c (inflate_generic_type) [GENERICINST]: If the generic
8111         instance is not open, don't bother inflating.
8112         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
8113         parse metadata for inflated classes.
8114         (_mono_class_get): Change GenericContext* parameter to
8115         GenericContainer*.
8116         (mono_class_create_from_typespec): Likewise.  Simplify, and
8117         implement trivially.  All the cases are handled in
8118         mono_class_from_mono_type.  Don't inflate returned class.
8119         (mono_class_get_full): Delegate GENERICINST optimization to
8120         inflate_generic_type.
8121         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
8122
8123 2006-02-16  Dick Porter  <dick@ximian.com>
8124
8125         * socket-io.c (create_object_from_sockaddr): Fix typo.
8126         (create_sockaddr_from_object): Check array lengths before
8127         potentially accessing items off the end.
8128         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
8129         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
8130         (ves_icall_System_Net_Sockets_Socket_Send_internal)
8131         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
8132         length checks to avoid wraparound overflows.
8133         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
8134         contents of the array of sockets
8135         (hostent_to_IPHostEntry2)
8136         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
8137         Check return value of inet_ntop ().
8138         (addrinfo_to_IPHostEntry): Fix typo
8139
8140 2006-02-16  Raja R Harinath  <rharinath@novell.com>
8141
8142         Type metadata parsing doesn't use generic-instantiation information.
8143         * metadata.c (mono_metadata_parse_array_full): Change
8144         MonoGenericContext* parameter to MonoGenericContainer*.
8145         (mono_metadata_parse_type_full): Likewise.
8146         (mono_type_create_from_typespec_full): Likewise.
8147         (mono_metadata_parse_mh_full): Likewise.
8148         (mono_metadata_parse_generic_inst): Likewise.
8149         (do_mono_metadata_parse_generic_class): Likewise.
8150         (do_mono_metadata_parse_type): Likewise.
8151         * metadata-internals.h: Update to changes.
8152         * class.c (mono_class_find_enum_basetype): Likewise.
8153         (mono_class_setup_fields): Likewise.
8154         (mono_class_create_from_typespec): Likewise.
8155         * loader.c (method_from_methodspec): Likewise.
8156         (mono_get_method_from_token): Likewise.
8157         (mono_method_get_header): Likewise.
8158
8159 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
8160
8161         * marshal.c: handle additional GENERICINST case (patch from
8162         Thong Nguyen <tum@veridicus.com>).
8163         Fix a few cases where LDIND_I/STIND_I was used for references.
8164
8165 2006-02-16  Raja R Harinath  <rharinath@novell.com>
8166
8167         * reflection.c (mono_reflection_get_token): Remove unused variable.
8168
8169 2006-02-16  Martin Baulig  <martin@ximian.com>
8170
8171         * reflection.c (mono_reflection_get_token): Add support for fields
8172         in instantiated generic types.
8173
8174         * icall.c
8175         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
8176
8177 2006-02-15  Martin Baulig  <martin@ximian.com>
8178
8179         * icall.c
8180         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
8181         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
8182         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
8183         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
8184
8185 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
8186
8187         * class.c, metadata.c, metadata.h, object.c, icall.c,
8188         marshal.c: changed mono_type_get_underlying_type () to do
8189         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
8190         Fixed handling of instantiated generic valuetypes (bug #75479).
8191
8192 2006-02-15  Raja R Harinath  <rharinath@novell.com>
8193
8194         * metadata.c (mono_metadata_decode_signed_value): Simplify.
8195         Delegate to mono_metadata_decode_value, and work on the returned value.
8196
8197         * icall.c (ves_icall_MonoType_GetGenericArguments):
8198         Add consistency check here too.
8199         
8200 2006-02-15  Ankit Jain  <jankit@novell.com>
8201
8202         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
8203         char/short etc.
8204
8205 2006-02-15  Ankit Jain  <jankit@novell.com>
8206
8207         * metadata.c (mono_metadata_decode_signed_value): New function to decode
8208         signed values, used only for representing lower bounds of arrays.
8209         (mono_metadata_parse_array_full): Use new
8210         mono_metadata_decode_signed_value to decode lower bounds.
8211
8212 2006-02-14  Martin Baulig  <martin@ximian.com>
8213
8214         * reflection.c
8215         (mono_reflection_get_token): Support "MonoGenericMethod" and
8216         "MonoGenericCMethod" and allow generic instances / methods.
8217
8218 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
8219
8220         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
8221         to obtain the terminal size using an ioctl.
8222
8223         * object.c (mono_nullable_init): Revert this as nullable reference
8224         types are not valid.
8225         (mono_nullable_box): Ditto.
8226
8227 2006-02-09  Dick Porter  <dick@ximian.com>
8228
8229         * threads.c (mono_thread_detach): Drop a reference to the thread
8230         we're detaching.
8231
8232 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
8233
8234         * object.c (mono_nullable_init): Handle nullable reference types.
8235         (mono_nullable_box): Ditto. Fixes #77446.
8236
8237 2006-02-07  Martin Baulig  <martin@ximian.com>
8238
8239         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
8240
8241 2006-02-07  Ankit Jain  <jankit@novell.com>
8242
8243         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
8244         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
8245         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
8246         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
8247         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
8248         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
8249
8250 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
8251
8252         * class.c (mono_class_create_generic): Set type_token as well.
8253
8254         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
8255         compatible with MS.
8256
8257 2006-02-02  Martin Baulig  <martin@ximian.com>
8258
8259         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
8260         has never been used so far.
8261
8262 2006-02-02  Martin Baulig  <martin@ximian.com>
8263
8264         * mono-debug-debugger.h: Changed comment at the top of this file;
8265         the header is not installed, but it's safe to #include it from
8266         within the JIT.
8267
8268         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
8269         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
8270
8271 2006-02-02  Martin Baulig  <martin@ximian.com>
8272
8273         * mono-debug.h
8274         (MonoSymbolTable): Removed the `metadata_info' field.
8275
8276         * mono-debug.c
8277         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
8278
8279         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
8280         (mono_debugger_add_builtin_types): Removed.
8281         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
8282         (mono_debugger_create_notification_function): We now operate on a
8283         pre-allocated area; take a `gpointer' and return `void'.
8284
8285         * mono-debug-debugger.c
8286         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
8287         (mono_debugger_add_builtin_types): Removed.
8288
8289 2006-02-02  Martin Baulig  <martin@ximian.com>
8290
8291         * threads.c (mono_debugger_create_all_threads): New public method.
8292
8293 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
8294
8295         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
8296         breaks on several platforms.
8297
8298 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
8299
8300         * assembly.c: the VS.NET build doesn't supply default values for
8301         MONO_ASSEMBLIES and MONO_CFG_DIR.
8302
8303 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
8304
8305         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
8306         helper function.
8307
8308         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
8309
8310         * loader.c (method_from_memberref): Fix a warning.
8311
8312         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
8313
8314         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
8315         with explicit layout. Fixes #77433.
8316
8317 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
8318
8319         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
8320         max_interface_id is initialized before using it. Fixes #77398.
8321         (ves_icall_Type_GetInterfaces): Ditto.
8322
8323 2006-01-30  Raja R Harinath  <rharinath@novell.com>
8324
8325         * metadata.c (mono_metadata_parse_method_signature_full): Don't
8326         allocate memory for parameter attributes when parsing memberref
8327         signatures.
8328         * loader.c (mono_loader_set_error_method_load): Don't warn.
8329         (method_from_memberref): Ensure MissingMethodException gets thrown
8330         if method is not found.  Make warning more informative.
8331
8332 2006-01-29  Raja R Harinath  <harinath@gmail.com>
8333
8334         Fix #77397
8335         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
8336         return true if is byref.
8337         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
8338         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
8339         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
8340
8341 2006-01-27  Raja R Harinath  <rharinath@novell.com>
8342
8343         Fix tests/find-method.2.il
8344         * loader.c (find_method, find_method_in_class): Remove is_inflated
8345         argument.  Revert 2006-01-18 change.
8346         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
8347         is generic, search for method in its generic definition.
8348         * class.c (mono_class_setup_vtable_general): Print generic
8349         arguments of generic types in debugging printf.
8350
8351 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
8352
8353         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
8354
8355         * threads.c (mono_threads_request_thread_dump): New helper function.
8356
8357 2006-01-25  Raja R Harinath  <rharinath@novell.com>
8358
8359         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
8360
8361 2006-01-25  Ankit Jain  <jankit@novell.com>
8362
8363         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
8364         move definition to ..
8365         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
8366         
8367 2006-01-25  Ankit Jain  <jankit@novell.com>
8368             Raja R Harinath  <rharinath@novell.com>
8369
8370         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
8371         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
8372         as necessary.
8373
8374 2006-01-25  Martin Baulig  <martin@ximian.com>
8375
8376         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
8377         `MonoDebuggerThread' into debug-debugger.c.
8378
8379 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
8380
8381         * profiler.c: fix printing of data.
8382
8383 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
8384
8385         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
8386           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
8387
8388 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
8389
8390         * object.c: fix deadlock related to string interning.
8391
8392 2006-01-23  Martin Baulig  <martin@ximian.com>
8393
8394         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
8395
8396         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
8397
8398 2006-01-23  Martin Baulig  <martin@ximian.com>
8399
8400         * mono-debug.h: Moved the prototypes of some functions which are
8401         used by the JIT here from mono-debug-debugger.h.
8402
8403 2006-01-21  Martin Baulig  <martin@ximian.com>
8404
8405         * Makefile.am: Don't install mono-debug-debugger.h.
8406
8407 2006-01-21  Martin Baulig  <martin@ximian.com>
8408
8409         * mono-debug-debugger.h: Enforce the private status of this header
8410         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
8411         Moved some stuff from mono-debugger-jit-wrapper.h here.
8412
8413 2006-01-20  Raja R Harinath  <rharinath@novell.com>
8414
8415         * class.c (mono_class_from_typeref): Add a sanity test to help
8416         catch lack of assembly load/search hooks.
8417
8418 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
8419
8420         * marshal.c (emit_struct_conv): Relax the fields with same offset
8421         check even more. Fixes #77230.
8422
8423 2006-01-18  Martin Baulig  <martin@ximian.com>
8424
8425         * loader.c (find_method_in_class): Added `gboolean is_inflated'
8426         argument; if false, we compare the uninstantiated signatures.
8427         (method_from_memberref): Compare the uninstantiated signatures;
8428         fixes #76417.
8429
8430 2006-01-18  Robert Jordan  <robertj@gmx.net>
8431
8432         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
8433         Clear the weak link. Fixes bug #77170.
8434
8435         * gc.c (mono_gchandle_free):
8436         Reflect *-gc.c changes (tiny optimization).
8437
8438 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
8439
8440         * metadata.c (mono_metadata_signature_dup): Applied patch from
8441         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
8442         Fixes #77288.
8443
8444 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
8445
8446         * marshal.c (emit_struct_conv): Allow fields with the same offset when
8447         marshalling from native to managed code. Fixes #77230.
8448
8449 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8450
8451         * threadpool.c: fix problem (Mac only) when more than one asynchronous
8452         connect. Fixes bug #77020.
8453
8454 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
8455
8456         * class.c: fixed id assignement for nested interfaces (bug #77275).
8457         Added also better info for --print-vtable debugging.
8458
8459 2006-01-12  Martin Baulig  <martin@ximian.com>
8460
8461         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
8462         interfaces on-the-fly; fixes #76625.
8463
8464         * class-internals.h
8465         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
8466         don't need that anymore.
8467
8468 2006-01-12  Miguel de Icaza  <miguel@novell.com>
8469
8470         * socket-io.c
8471         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
8472         To avoid initing the nested_classes when not needed I turned the
8473         PeerCredData as a toplevel internal class, as it has to be shared
8474         anyways. 
8475
8476         Fixes the CASA issue.
8477
8478 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
8479
8480         * domain.c: Accessors for MonoJitInfo
8481
8482         * profiler-private.h: Add jitinfo to the end jit hook
8483
8484         * profiler.[ch]: Define new hooks, called after jitting which give
8485         the MonoJitInfo that was compiled
8486
8487 2006-01-10  Martin Baulig  <martin@ximian.com>
8488
8489         * class.c (mono_class_setup_events): Add support for generic
8490         classes; fixes #76440.
8491
8492 2006-01-06  Raja R Harinath  <rharinath@novell.com>
8493
8494         Fix #77160.
8495         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
8496         on passed-in method.
8497
8498 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
8499
8500         * object.c (mono_runtime_invoke_array): Add Nullable support.
8501
8502         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
8503
8504 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
8505
8506         * file-io.c: Don't consider sockets as directory and avoid an endless
8507         loop. Fix bug #76966.
8508
8509 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
8510
8511         * object.c (mono_nullable_init): New helper function.
8512         (mono_nullable_box): Ditto.
8513
8514         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
8515
8516         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
8517
8518         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
8519         
8520 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
8521
8522         * class.c (mono_class_is_assignable_from): Make T assignable to 
8523         Nullable<T>.
8524
8525 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
8526
8527         * appdomain.c: Bump corlib version to 46.
8528         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
8529         serialization purpose) and changed ves_icall_System_Reflection_
8530         Assembly_get_code_base signature to accept a boolean (to escape, or 
8531         not, the assembly code base).
8532
8533 2005-12-23  Dick Porter  <dick@ximian.com>
8534
8535         * icall.c: 
8536         * threads-types.h: 
8537         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
8538         CreateEvent icall now returns "created" boolean parameter.
8539
8540 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
8541
8542         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
8543         #76967.
8544
8545         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
8546         when attr_klass is an interface. Fixes #77045.
8547
8548 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
8549
8550         * marshal.c (emit_struct_conv): Fix previous patch.
8551         
8552         * marshal.c (emit_struct_conv): Add a check for fields with the same
8553         offset.
8554
8555 2005-12-20  Raja R Harinath  <rharinath@novell.com>
8556
8557         Fix regression in Mono.C5.
8558         * class.c (mono_class_create_generic): If 'klass' is an interface
8559         set up the interface offsets.
8560         (mono_class_is_assignable_from): Don't throw away generic arguments.
8561
8562 2005-12-19  Raja R Harinath  <rharinath@novell.com>
8563
8564         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
8565         type parameters.
8566
8567 2005-12-15  Raja R Harinath  <rharinath@novell.com>
8568
8569         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
8570         dead store.
8571         (do_mono_metadata_parse_generic_class): Don't pass the current
8572         generic context when parsing the type being instantiated: it
8573         cannot use it, anyway.
8574
8575         * loader.c (method_from_memberref): Don't inflate a signature if
8576         it doesn't contain any type parameters.
8577
8578 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
8579
8580         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
8581
8582 2005-12-14  Martin Baulig  <martin@ximian.com>
8583
8584         * class.c
8585         (mono_type_get_name_recurse): Don't return null for type
8586         parameters and open generic classes.
8587         (mono_class_setup_methods): Don't exclude generic instances.
8588         (mono_get_unique_iid): Use different IDs for different
8589         instantiations of the same generic type.
8590         (mono_class_setup_vtable): Only use setup_generic_vtable() for
8591         open generic instances; create a normal vtable for closed generic
8592         instances.
8593         (mono_class_setup_vtable_general): We're now also called for
8594         closed generic instances.
8595
8596         * reflection.c
8597         (mono_reflection_bind_generic_parameters): Correctly use
8598         mono_metadata_lookup_generic_inst() everywhere.
8599
8600 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
8601
8602         * object.c (mono_class_create_runtime_vtable): Call 
8603         mono_class_setup_vtable ().
8604
8605         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
8606         function.
8607         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
8608         #76959.
8609
8610         * loader.c (mono_loader_set_error_type_load): Print the type load
8611         warnings to the console so they are more visible to the user.
8612         (mono_loader_set_error_method_load): Ditto.
8613
8614         * reflection.c (ensure_runtime_vtable): Revert the last change as it
8615         is still broken.
8616         
8617         * reflection.c (ensure_runtime_vtable): Fix build.
8618
8619         * reflection.c (ensure_runtime_vtable): Disable an optimization which
8620         doesn't work in all cases.
8621
8622 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
8623
8624         * object.c (mono_array_new_full): Treat a single dimensional array
8625         with 0 lower bounds as an szarray. Fixes #76973.
8626
8627         * reflection.c (custom_attr_visible): Really fix this.
8628
8629 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
8630
8631         * reflection.c (custom_attr_visible): Allow nested public attributes
8632         as well.
8633
8634         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
8635         interface check.
8636
8637 2005-12-12  Raja R Harinath  <harinath@gmail.com>
8638
8639         * class.c (set_generic_param_owner): Delete.
8640         (mono_class_create_from_typedef): Don't set ->owner field of
8641         generic parameters to "param containers" of enclosing classes.
8642         * reflection.c (mono_reflection_initialize_generic_parameter):
8643         Likewise.
8644
8645 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
8646
8647         * reflection.c (custom_attr_visible): Fix build.
8648
8649 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
8650
8651         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
8652         private attributes.
8653         
8654         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
8655         handling of null parameter defaults.
8656
8657 2005-12-09  Raja R Harinath  <rharinath@novell.com>
8658
8659         * class.c (mono_class_from_generic_parameter): Don't set
8660         klass->generic_container.
8661         (my_mono_class_from_generic_parameter): Likewise.
8662
8663 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
8664
8665         * reflection.c (load_public_key): Fix a warning.
8666         (method_encode_code): Fix unaligned accesses.
8667
8668 2005-12-07  Martin Baulig  <martin@ximian.com>
8669
8670         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
8671
8672         * reflection.c
8673         (write_generic_param_entry): Encode our custom attrs.
8674
8675         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
8676
8677 2005-12-07  Martin Baulig  <martin@ximian.com>
8678
8679         * reflection.c (encode_new_constraint): Removed; we don't use the
8680         `NewConstraintAttribute' anymore.
8681
8682 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
8683
8684         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
8685         not fire a TypeResolve event when Assembly.GetType () is called.
8686
8687 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
8688
8689         Beginning of support for nullable types in the runtime. Parts of
8690         this patch are from Martin.
8691
8692         * appdomain.c (MONO_CORLIB_VERSION): Bump
8693
8694         * domain.c (mono_init_internal): get the nullable type
8695
8696         * class.c (mono_class_is_nullable): New method
8697         (mono_class_get_nullable_param): New mehod
8698         (mono_class_create_generic): In types T? set cast_class to T
8699
8700         * class-internals.h (MonoDefaults): new nullable default class
8701         (mono_class_get_nullable_param, mono_class_get_nullable_param):
8702         new methods.
8703
8704 2005-12-05  Raja R Harinath  <rharinath@novell.com>
8705
8706         * metadata.c (select_container): New.  Refactor code to select the
8707         appropriate GenericContainer given the type of generic parameter
8708         we are looking for.
8709         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
8710         not a MonoGenericContext.  Use select_container.  Update parameters.
8711         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
8712         and MONO_TYPE_MVAR.
8713         (unwrap_arrays): Remove duplicate tests.
8714         (find_generic_param): Rename from 'has_same_context'.  Now walks a
8715         generic instantiated class to find any arguments that are generic
8716         parameters.
8717         (mono_type_create_from_typespec_full): Use find_generic_param to
8718         avoid evicting some generic instantiations from the typespec
8719         cache.
8720
8721 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
8722
8723         * reflection.c: fixed writing of doubles on ARM FPA.
8724
8725 2005-12-02  Robert Jordan  <robertj@gmx.net>
8726
8727         * icall.c: Fixed EventInfo.ReflectedType (#76829).
8728
8729 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8730
8731         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
8732         least on SUSE 10 they are not the same (on debian, they are just the
8733         same thing).
8734
8735 2005-12-01  Raja R Harinath  <rharinath@novell.com>
8736
8737         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
8738         DeclaringType for VARs and MVARs.
8739         * class.c (set_generic_param_owner): Fix initialization of owner
8740         fields.
8741
8742 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
8743
8744         * icall.c: fixed Enum.ToObject() to correctly convert the values.
8745
8746 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8747
8748         * threadpool.c: workaround for a bug that shows up on the Mac:
8749         select()+connect() on a blocking socket is not like it should
8750         be, so we proceed to connect() in that case, wasting the I/O
8751         threadpool thread until connect succeedes. Fixes bug #75436.
8752
8753 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8754
8755         * threadpool.c: fix typo when setting file descriptor states.
8756
8757 2005-11-28  Raja R Harinath  <rharinath@novell.com>
8758
8759         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
8760         * metadata.c (mono_metadata_parse_method_signature_full): Don't
8761         create a temporary signature container.
8762         (mono_metadata_parse_generic_param): Update to changes.
8763         (mono_type_create_from_typespec_full): Update to changes.
8764         * loader.c (method_from_memberref): Don't use a
8765         MonoGenericContainer while parsing a memberref signature.
8766         (method_from_methodspec): Remove dead-store of the 'container'
8767         variable.  It's overwritten before use.
8768
8769         * metadata.c (mono_type_create_from_typespec_full): Make debugging
8770         checks tighter.
8771         (mono_metadata_parse_generic_param): Likewise.
8772         * loader.c (find_method_in_class): Does not need a
8773         MonoGenericContainer.  Use 'mono_method_signature' rather than
8774         'mono_method_signature_full'.
8775         (find_method, mono_get_method_constrained, method_from_memberref):
8776         Update to changes.
8777
8778         * metadata.c (mono_type_create_from_typespec_full): Ensure that
8779         owner-less generic-parameters are never evicted from the typespec
8780         cache.
8781
8782         * loader.c (method_from_memberref): Don't use the current context
8783         when parsing signatures.
8784         (method_from_methodspec, mono_get_method_from_token): Update to changes.
8785
8786         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
8787         side-effects in g_assert.
8788         * loader.c (mono_get_method_from_token): Resolve klass earlier so
8789         that we don't potentially lose information.
8790
8791 2005-11-26  Dick Porter  <dick@ximian.com>
8792
8793         * icall.c:
8794         * threads.c: icalls to implement basic (ie, not named)
8795         System.Threading.Semaphore.
8796
8797 2005-11-24  Dick Porter  <dick@ximian.com>
8798
8799         * process.c
8800         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
8801         Use GetProcessId() if it's available.
8802
8803 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
8804
8805         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
8806
8807 2005-11-23  Raja R Harinath  <rharinath@novell.com>
8808             Ankit Jain  <jankit@novell.com>
8809
8810         * loader.c (mono_get_method_from_token): Initialize 'method' field
8811         of all generic parameters before parsing the signature.  Remove
8812         code that "fixed"-up MVAR references.
8813
8814 2005-11-23  Ankit Jain  <jankit@novell.com>
8815
8816         * metadata.c (mono_metadata_has_generic_params):
8817         (mono_metadata_load_generic_param_constraints):
8818         (mono_metadata_load_generic_params): Move duplicate code ...
8819         (mono_metadata_get_generic_param_row): ... here. Returns the
8820         first row-id in GenericParam table for a given owner (token).
8821         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
8822         prototype.
8823
8824 2005-11-23  Raja R Harinath  <rharinath@novell.com>
8825             Ankit Jain  <jankit@novell.com>
8826
8827         * metadata.c (mono_metadata_class_equal): Pass signature_only when
8828         comparing VARs too.
8829         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
8830         type->data.generic_param only if the type is an MVAR.
8831         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
8832         leak owner-less VARs and MVARs into managed space.
8833
8834 2005-11-21  Martin Baulig  <martin@ximian.com>
8835
8836         * class-internals.h
8837         (MonoMethod): Moved the `generic_container' here from
8838         `MonoMethodNormal' since we now also need it for
8839         `MonoMethodPInvoke';
8840         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
8841         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
8842         an union containing both `MonoMethodNormal' and
8843         `MonoMethodPInvoke'.
8844
8845         * loader.c
8846         (mono_get_method_from_token): Allow implementing generic methods
8847         as interncalls.
8848
8849         * threads.c
8850         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
8851         icall.
8852
8853 2005-11-17  Dick Porter  <dick@ximian.com>
8854
8855         * icall.c: 
8856         * process.h: 
8857         * process.c: Split the Process Start_internal icall into
8858         ShellExecuteEx_internal and CreateProcess_internal, which are
8859         called depending on whether UseShellExecute is true.  Fixes bug
8860         76670.
8861
8862         * appdomain.c (MONO_CORLIB_VERSION): Incremented
8863
8864 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
8865
8866         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
8867         'msize' parameters, use the information in 'mspec' instead.
8868         (emit_object_to_ptr_conv): Ditto.
8869
8870         * marshal.c (emit_struct_conv): Handle explicit layout structs with
8871         fields out of order. Fixes #76733.
8872
8873 2005-11-17  Ankit Jain  <jankit@novell.com>
8874
8875         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
8876
8877 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
8878
8879         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
8880           bug #76575.
8881
8882 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
8883
8884         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
8885         for types with non-auto layout. Fixes #76717.
8886
8887 2005-11-16  Ankit Jain  <jankit@novell.com>
8888
8889         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
8890         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
8891         if generic_context is null.
8892           (mono_metadata_generic_param_equal): param->owner can be null.
8893           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
8894         null.
8895
8896 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
8897
8898         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
8899         the correct value.
8900
8901 2005-11-15  Martin Baulig  <martin@ximian.com>
8902
8903         * object.c (set_value): Use mono_class_from_mono_type() instead of
8904         the hack for generic instances; fixes #76136.
8905
8906 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
8907
8908         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
8909         fields.
8910
8911         * image.c (load_metadata_ptrs): Initialize the new fields.
8912
8913         * reflection.c (create_dynamic_mono_image): Ditto.
8914
8915         * reflection.c (build_compressed_metadata): Use the new fields.
8916
8917         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
8918         icall.
8919
8920         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
8921         icall.
8922         
8923 2005-11-15  Ankit Jain  <jankit@novell.com>
8924             Raja R Harinath  <harinath@gmail.com>
8925
8926         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
8927         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
8928         new per-generic_container cache if the cached MonoType's context matches
8929         the current context.
8930           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
8931         to the expected context.
8932           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
8933
8934 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8935
8936         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
8937         we changed the signature of an icall.
8938         * icall.c: Modify to mono_double_ParseImpl return true/false 
8939         depending on the success, instead of throwing the exception. This will
8940         help us in Double.TryParse methods.
8941         
8942 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
8943
8944         * marshal.c (emit_marshal_object): Throw an exception when
8945         marshalling 'object' instead of crashing. Fixes #76696.
8946
8947 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
8948
8949         * class-internals.h: Add prototype for mono_type_get_full_name ().
8950
8951 2005-11-11  Dick Porter  <dick@ximian.com>
8952
8953         * threads.c (mono_thread_manage): Make sure the main thread has
8954         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
8955
8956 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
8957
8958         * loader.c (mono_loader_set_error_type_load): Log a warning to the
8959         console about the missing type.
8960         (mono_loader_set_error_method_load): Ditto.
8961
8962 2005-11-09  Miguel de Icaza  <miguel@novell.com>
8963
8964         * mono-config.c (mono_get_config_dir): Set the system defaults if
8965         none is specified.
8966
8967         * assembly.c (mono_set_dirs): New API entry point to set the
8968         assembly and the config directory in one call
8969
8970 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
8971
8972         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
8973         the ftnptr was created from a delegate in a domain other than the
8974         current domain. Fixes #75377.
8975
8976         * exception.h exception.c: Add mono_get_exception_not_supported ().
8977
8978 2005-11-08  Martin Baulig  <martin@ximian.com>
8979
8980         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
8981
8982 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
8983
8984         * security-manager.h: Added definitions to deal with strongname key 
8985         pairs bigger (and smaller) than 1024 bits.
8986         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
8987         adjust wrt the public key length being used.
8988
8989 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
8990
8991         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
8992           Windows build (r51396-51397).
8993
8994 2005-11-03  Martin Baulig  <martin@ximian.com>
8995
8996         * class.c (mono_class_setup_vtable_general): Also add generic
8997         methods to the vtable; fixes #76581.
8998
8999 2005-11-01  Miguel de Icaza  <miguel@novell.com>
9000
9001         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
9002         sure that we lookup GetString method from the System.Text.Encoding
9003         class, not the derived class or we get an empty method.
9004
9005         Fixed class #76612.
9006
9007 2005-10-25  Miguel de Icaza  <miguel@novell.com>
9008
9009         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
9010         if it has been previously set (embedders). 
9011
9012         Make mono_set_rootdir available also on Unix.
9013
9014 005-10-24  Robert Jordan  <robertj@gmx.net>
9015
9016         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
9017
9018 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
9019
9020         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
9021         only calls which are made to native code use this flag.
9022
9023         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
9024
9025 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
9026
9027         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
9028         Add support for FieldBuilders.
9029
9030 2005-10-29  Martin Baulig  <martin@ximian.com>
9031
9032         * mono-debug.c
9033         (mono_debug_using_mono_debugger): New public method; returns
9034         whether we're running inside the debugger.
9035
9036 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
9037
9038         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
9039         for Method/Constructor/FieldBuilders.
9040
9041 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
9042
9043         * reflection.c (module_add_cattrs): Save custom attributes for global methods
9044         and fields as well.
9045
9046 2005-10-26  Martin Baulig  <martin@ximian.com>
9047
9048         * mono-debug-debugger.c
9049         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
9050
9051 2005-10-24  Raja R Harinath  <harinath@gmail.com>
9052
9053         * icall.c (base64_to_byte_array): Don't pass an out-of-range
9054         integer to isspace.
9055
9056 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
9057
9058         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
9059         when passing valuetypes byref. Fixes #76502.
9060
9061 2005-10-19  Jackson Harper  <jackson@ximian.com>
9062
9063         * profiler.c: Don't put a . in front of types that are not in a
9064         namespace.
9065
9066 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
9067
9068         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
9069
9070 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
9071
9072         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
9073         #76436.
9074         (mono_marshal_get_ldflda_wrapper): Fix a warning.
9075
9076 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9077
9078         * assembly.c metadata-internals.h icall.c: Define an additional
9079         parameter for mono_assembly_name_parse_full, so we can avoid creating
9080         S.R.AssemblyName.Version when no version info wasn't passed.
9081         
9082 2005-10-09  Miguel de Icaza  <miguel@novell.com>
9083
9084         * class.c (mono_type_get_full_name): Reimplement method that was
9085         removed. 
9086
9087         * image.c: Some docs
9088
9089 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
9090
9091         * profiler.c (output_newobj_profile): Fix printing of Total memory
9092         on x86.
9093
9094 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
9095
9096         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
9097
9098 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
9099
9100         * threads.c: remove debug output.
9101
9102 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
9103
9104         * threads.c (mono_thread_manage): Fix crashes if more than 64
9105         threads need to be aborted. Hopefully fixes #75899.
9106
9107         * assembly.c (mono_stringify_assembly_name): New helper function.
9108
9109         * class.c: Use mono_stringify_assembly_name instead of the similar
9110         static function.
9111
9112         * assembly.h assembly.c: Add support for calling a postload search 
9113         hook if an assembly cannot be loaded.
9114
9115         * appdomain.c: Register new search hooks which call the AssemblyResolve
9116         events in AppDomain. Fixes #75231
9117
9118 2005-10-07  Martin Baulig  <martin@ximian.com>
9119
9120         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
9121         methods without debug info.
9122
9123 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
9124
9125         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
9126         wrappers.
9127
9128 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9129
9130         * file-io.c: now that we return symlinks, use lstat and, when the file
9131         is a symbolic link, stat, to get the file attributes. Also avoid the
9132         conversion to/from utf16/external.
9133
9134 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
9135
9136         * class.c (mono_class_layout_fields): Compute klass->has_references
9137         correctly if an embedded valuetype is not yet initialized. Fixes
9138         #76331.
9139
9140 2005-10-04  Martin Baulig  <martin@ximian.com>
9141
9142         * metadata.c
9143         (mono_metadata_load_generic_param_constraints): New public
9144         function; splitted the constraints loading out from
9145         mono_metadata_load_generic_params().
9146
9147         * class.c (mono_class_create_from_typedef): Call
9148         mono_metadata_load_generic_param_constraints() after setting up
9149         the type and creating our parent; fixes #75329.
9150
9151 2005-10-04  Martin Baulig  <martin@ximian.com>
9152
9153         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
9154         non-dynamic parent classes.
9155
9156 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
9157
9158         * file-io.c : win32 build fix (ETXTBSY seems not found).
9159
9160 2005-10-04  Martin Baulig  <martin@ximian.com>
9161
9162         * reflection.c
9163         (mono_image_get_methodspec_token): Make the cache actually work;
9164         fixes #75974.
9165
9166 2005-10-04  Martin Baulig  <martin@ximian.com>
9167
9168         * class.c (mono_class_name_from_token): Removed the unneccessary
9169         `MonoGenericContext *' argument.
9170
9171 2005-10-04  Martin Baulig  <martin@ximian.com>
9172
9173         * loader.c
9174         (method_from_methodspec): Make the caching work again; fixes the
9175         performance regression from #76262.
9176
9177 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9178
9179         * file-io.c:
9180         * file-io.h:
9181         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
9182         GetFileSystemEntries that performs the same work but without going
9183         into io-layer, locking, etc.
9184
9185 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
9186
9187         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
9188         ThreadState_Stopped as well. Fixes #76047.
9189
9190 2005-09-29  Martin Baulig  <martin@ximian.com>
9191
9192         * class.c
9193         (inflate_generic_context): If the new context has a `gmethod', set
9194         its `container' that that gmethod's `container'.
9195
9196         * metadata.c
9197         (mono_metadata_parse_generic_param): Simplify things;
9198         `generic_container = generic_context->container;' is just fine.
9199
9200         * loader.c (method_from_methodspec): Code cleanups.
9201
9202 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
9203
9204         * decimal.c: fix warning (and let gcc generate correct
9205         code on ARM with optimizations).
9206
9207 2005-09-28  Martin Baulig  <martin@ximian.com>
9208
9209         * loader.c
9210         (method_from_memberref): Added `MonoGenericContext *class_context'
9211         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
9212         (method_from_methodspec): If we're a memberref, use the enclosing
9213         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
9214
9215 2005-09-28  Martin Baulig  <martin@ximian.com>
9216
9217         * object.c (mono_runtime_invoke_array): Added support for
9218         MONO_TYPE_GENERICINST; fixes #75917.
9219
9220 2005-09-27  Martin Baulig  <martin@ximian.com>
9221
9222         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
9223         `k->byval_arg.type' to determine the actual type.
9224
9225         * loader.c (method_from_methodspec): Removed some hacks.
9226
9227 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
9228
9229         * class-internals.h (mono_field_is_deleted): Do the test for
9230         rtspecialname before we check the actual name of the field. This
9231         prevents us from dereferencing a pointer into the string table,
9232         saving us from accessing a few pages
9233
9234         * *.c: Replace the use of {Enter,Leave}CriticalSection with
9235         macros. This will allow a deadlock debugger to easily be plugged
9236         in.
9237
9238 2005-09-27  Martin Baulig  <martin@ximian.com>
9239
9240         * loader.c (method_from_methodspec): Create a "signature"
9241         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
9242
9243 2005-09-27  Martin Baulig  <martin@ximian.com>
9244
9245         * class.c
9246         (inflate_generic_class): Correctly set the new context's
9247         container.
9248
9249         * loader.c
9250         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
9251         instead of a `MonoGenericContext *'.
9252         (mono_method_signature_full): Take a `MonoGenericContainer *'
9253         instead of a `MonoGenericContext *'.
9254
9255         * metadata.c
9256         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
9257         instead of a `MonoGenericContext *'.
9258         (mono_metadata_parse_method_signature_full): Likewise.
9259
9260 2005-09-26  Martin Baulig  <martin@ximian.com>
9261
9262         * class.c
9263         (mono_class_from_generic_parameter): Set `klass->generic_container'
9264         (mono_class_from_generic_parameter): Likewise.
9265         (mono_bounded_array_class_get): We inherit the generic container
9266         from the element class.
9267
9268         * loader.c
9269         (find_method, find_method_in_class): Take a `MonoGenericContext *'
9270         argument rather than computing it here.
9271         (method_from_memberref): Correctly set the generic context before
9272         parsing the signature.  Fixes #75681.
9273
9274 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
9275
9276         * object.c (mono_class_has_special_static_fields): Fix warnings.
9277
9278 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9279
9280         * assembly.c: Add parse_public_key function, to
9281         par the public keys. Also added mono_assembly_name_parse_full,
9282         to define it the parsed key should be freed or not.
9283         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
9284         to parse a long format assembly name.
9285         * metadata-internals.h: Keep mono_assembly_name_parse_full as
9286         private, since calling it to preserve the key requires
9287         freeing it manually.
9288         
9289 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
9290
9291         * locales.c : removed HAVE_ICU part.
9292
9293 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
9294
9295         * object.c (mono_class_create_runtime_vtable): Avoid calling 
9296         field_is_special_static if the klass has no special static fields.
9297
9298         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
9299         (MonoCachedClassInfo): Likewise.
9300
9301         * object.c (mono_class_has_special_static_fields): New helper function.
9302
9303 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
9304
9305         * class.c (mono_class_create_from_typedef): Don't call 
9306         interfaces_from_typedef_full for enums.
9307         (mono_class_create_from_typedef): Compute the base types of enums directly
9308         without calling mono_class_setup_fields ().
9309         (mono_class_find_enum_basetype): New helper function.
9310
9311         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
9312         one place inside the string heap.
9313         
9314 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
9315
9316         * class.c: locking fixes, code cleanups, some docs added.
9317         Allocate some data structures in the image mempool.
9318
9319 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
9320
9321         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
9322         the example code.
9323         
9324 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
9325
9326         * class-internals.h, class.c, reflection.c: reduce memory taken by
9327         MonoClass.
9328
9329 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
9330
9331         * metadata.c, metadata.h, loader.h: documentation updates, code and
9332         API cleanups.
9333
9334 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
9335
9336         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
9337         the example code.
9338
9339         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
9340         page faults caused by the runtime while reading metadata.
9341
9342 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9343
9344         * socket-io.c: the field names were changed 3 months ago and no one
9345         realized until bug #76077 got filed!
9346
9347 2005-09-20  Martin Baulig  <martin@ximian.com>
9348
9349         * icall.c (assembly_icalls): Removed some unused debugger icalls.
9350
9351 2005-09-20  Martin Baulig  <martin@ximian.com>
9352
9353         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
9354         write the rank into the class entry.
9355
9356 2005-09-20  Martin Baulig  <martin@ximian.com>
9357
9358         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
9359
9360 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
9361
9362         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9363
9364         * icall.c (custom_attrs_defined_internal): New icall.
9365
9366         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
9367         function.
9368         (mono_custom_attrs_construct_by_type): New helper function.
9369
9370 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
9371
9372         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
9373         terminate the resulting string. Fixes #76123.
9374
9375 2005-09-16  Martin Baulig  <martin@ximian.com>
9376
9377         * mono-debug.c
9378         (mono_debug_add_method): Ignore inflated methods for the moment.
9379
9380 2005-09-14  Martin Baulig  <martin@ximian.com>
9381
9382         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
9383
9384 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
9385
9386         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
9387         return a success/failure indication.
9388         (mono_metadata_interfaces_from_typedef_full): Ditto.
9389         (get_constraints): Ditto.
9390
9391 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
9392
9393         * marshal.c (emit_marshal_array): Fix handling of null arrays.
9394         
9395         * marshal.c (emit_marshal_array): Add support for returning string
9396         arrays from delegates. Fixes #76063.
9397
9398         * marshal.c: Use the emit_ldloc/stloc macros where possible.
9399
9400 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
9401
9402         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
9403         icall.
9404
9405 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
9406
9407         * reflection.c icall.c: Fix after mono_get_exception_type_load
9408         signature change.
9409
9410         * assembly.c (mono_assembly_get_assemblyref): New helper function.
9411         (mono_assembly_load_reference): Use the new helper.
9412
9413         * class-internals.h (MonoLoaderError): New structure containing 
9414         information about type loading errors.
9415
9416         * class-internals.h loader.c: Add APIs to store per-thread loader
9417         error information.
9418
9419         * loader.c class.c: Set the loader error if needed.
9420
9421         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
9422
9423 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
9424
9425         * decimal.c: fixed to handle the broken ARM fp format.
9426
9427 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
9428
9429         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
9430         broken.
9431
9432 2005-09-06  Martin Baulig  <martin@ximian.com>
9433
9434         * domain.c (supported_runtimes): Added v2.0.50727.
9435
9436 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
9437
9438         * culture-info.h: reduce the size of some structures.
9439
9440 2005-09-05  Martin Baulig  <martin@ximian.com>
9441
9442         Reflect latest API changes in the August CTP.
9443
9444         * icall.c
9445         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
9446         ("MonoType.HasGenericArguments"): Removed.
9447         ("MonoMethod.BindGenericParameters"): Renamed to
9448         "MakeGenericMethod".
9449         ("MethodBuilder.BindGenericParameters"): Renamed to
9450         "MakeGenericMethod".    
9451
9452 2005-09-05  Martin Baulig  <martin@ximian.com>
9453
9454         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
9455
9456 2005-09-05  Martin Baulig  <martin@ximian.com>
9457
9458         Applying a patch from Michal Moskal <malekith@nemerle.org>.
9459
9460         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
9461         generic_container is non-NULL.
9462
9463 2005-09-05  Martin Baulig  <martin@ximian.com>
9464
9465         Applying a patch from Michal Moskal <malekith@nemerle.org>.
9466
9467         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
9468
9469 2005-08-29  Michal Moskal  <malekith@nemerle.org>
9470
9471         * reflection.c (encode_locals,
9472         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
9473         for large generic types.
9474
9475 2005-09-05  Martin Baulig  <martin@ximian.com>
9476
9477         Applying a patch from Michal Moskal <malekith@nemerle.org>.
9478
9479         * class.c (mono_dup_array_type): New public method.
9480         (mono_metadata_signature_deep_dup): New public method.
9481         (dup_type): Correctly duplicate array and function types.
9482
9483 2005-09-05  Martin Baulig  <martin@ximian.com>
9484
9485         Applying a patch from Michal Moskal <malekith@nemerle.org>.
9486
9487         * reflection.c (get_default_param_value_blobs): Handle generic types
9488         and generic methods.
9489
9490 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
9491
9492         * class.c: Fixed error reporting (method/class were inversed) for 
9493         inheritance demands.
9494         * security-manager.c|h: Added the AppDomain when calling the managed
9495         System.Security.SecurityManager.InheritanceDemand method.
9496
9497 2005-09-01  Raja R Harinath  <rharinath@novell.com>
9498
9499         * reflection.c (encode_marshal_blob): 'marshaltype' and
9500         'marshaltyperef' are alternate sources for the custom marshaler
9501         name.
9502
9503 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
9504
9505         * class.c: fix creation of array classes with rank == 1
9506         (patch by Ankit Jain <jankit@novell.com>).
9507
9508 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
9509
9510         * object.c: fix check for creating the bound data for arrays vs
9511         szarrays.
9512
9513 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9514
9515         * object.c: configuration file name is now based on the executable name,
9516         not the image name. Fixes bug #75931.
9517
9518 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
9519
9520         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
9521         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
9522
9523 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
9524
9525         * rand.c: Use wincrypt.h instead of WinCrypt.h.
9526
9527 2005-08-24  Ankit Jain  <jankit@novell.com>
9528             Raja R Harinath  <rharinath@novell.com>
9529
9530         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
9531           called by it recursively.
9532           (mono_class_init): Remove special case in pending_init handling, since it's
9533           superseded by the fix to mono_class_from_typeref.
9534
9535 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
9536
9537         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
9538         BROKEN_THREAD_START stuff.
9539
9540 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
9541
9542         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
9543         trampoline.
9544
9545         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
9546         
9547         * object.c (mono_delegate_ctor): Replace the original function address with
9548         a delegate trampoline.
9549
9550 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
9551
9552         * icall.c: add boolean argument to base64_to_byte_array and 
9553         InternalFromBase64String to control whether a whitespace-only string
9554         is allowed (or should casue a FormatException to be thrown). We need
9555         this as the behavior has changed between MS.NET 1.x and 2.0, and we
9556         to match the MS behaviour in both profiles.
9557         * appdomain.c: Bump corlib version.
9558
9559 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9560
9561         This patch implements a big portion of publisher policy
9562         support, used to bind assembly versions and redirect
9563         one assembly from version A to version B.
9564
9565         * assembly.c:
9566         New GSList loaded_assembly_bindings, for storing the cached
9567         assembly bindings.
9568         (assembly_binding_maps_name): New static function for checking if a 
9569         assembly binding information maps an assembly name.
9570         (mono_assembly_binding_info_free): New function for freeing
9571         assembly binding information resources.
9572         (get_publisher_policy_info): New static function for retrieving 
9573         assembly binding information from a MonoImage.
9574         (compare_versions): New static function for comparing an assembly
9575         binding information data and the version of an assembly name.
9576         (check_policy_versions): New static function for checking if an
9577         assembly binding info mapping an assembly name is valid for it.
9578         (mono_assembly_load_publisher_policy): New static function for
9579         loading the 'policy.major.minor.MyAssembly' image for an assembly
9580         with an assembly name 'aname'.
9581         (mono_assembly_bind_version): New static function for updating
9582         assembly redirection.
9583         (mono_assembly_apply_binding): New static function for applying
9584         assembly binding.
9585         (search_binding_loaded): New static function for searching 
9586         loaded assembly binding infos in the cache domain.
9587         (mono_assembly_load_full): Don't apply assembly binding for
9588         reflection only assemblies.
9589
9590         * metadata-internals.h: Add MonoAssemblyBindingInfo,
9591         which contains information about assembly binding. Also
9592         declare signature for mono_config_parse_publisher_policy ()
9593         function, used to retrieve pub policy info.
9594         
9595         * mono-config.c:
9596         (publisher_policy_start): New static function used to parse publisher 
9597         policy config files.
9598         (publisher_policy_parser): New static MonoParseHandler containing 
9599         the functions used when parsing config files.
9600         (mono_config_parse_publisher_policy): New function for parsing
9601         publisher policy files.
9602         
9603 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
9604
9605         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
9606
9607         * marshal.c (mono_delegate_free_ftnptr): Ditto.
9608
9609         * object.c (mono_get_addr_from_ftnptr): New helper function.
9610
9611         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
9612
9613         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9614
9615 2005-08-19  Dick Porter  <dick@ximian.com>
9616
9617         * threads.c, threads.h, appdomain.c, appdomain.h,
9618         profiler-private.h, monitor.c, object.c, object-internals.h,
9619         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
9620         store the thread ID, so it can hold a 64 bit value if needed.
9621
9622 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
9623
9624         * reflection.c (mono_reflection_create_dynamic_method): Store the
9625         handle class into the method references as well so ldtoken works in
9626         dynamic methods.
9627
9628         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
9629         types.
9630
9631 2005-08-19  Ankit Jain <jankit@novell.com>
9632
9633         Fix #75847.
9634         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
9635           here rather than using the method signature of a arbitrary function
9636           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
9637           two arguments.
9638           Hack done with Harinath.
9639
9640 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9641
9642         * threadpool.c: disable printing stack traces when we get a exception
9643         in a threadpool thread. I need to do more testing to figure out which
9644         cases actually print this. Fixes bug #75828.
9645
9646 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9647
9648         * icall.c: there might be ignored whitespace after the last '='. This
9649         fixes length computation and bug #75840.
9650
9651 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
9652
9653         * assembly.c (mono_assembly_load_full): Consider .exe extension as
9654         well. Fixes #75809.
9655
9656         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
9657         #75784.
9658         
9659         * reflection.c (create_custom_attr_data): Ditto.
9660
9661 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
9662
9663         * locales.c, culture-info.h : removed RegionLCIDMap.
9664         * culture-info-tables.h : regenerated.
9665
9666 2005-08-16  Martin Baulig  <martin@ximian.com>
9667
9668         * class.c (mono_type_get_name_recurse): Small fix.
9669
9670 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
9671
9672         * locales.c : indentation fixie.
9673
9674 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
9675
9676         * object-internals.h,
9677           locales.h,
9678           locales.c,
9679           culture-info.h,
9680           icall.c : added RegionInfo table support.
9681         * culture-info-table.h : regenerated for region support.
9682
9683 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
9684
9685         * reflection.c (resolve_object): handle all kinds of MonoMethod
9686         including generic ones
9687
9688 2005-08-12  Ankit Jain <jankit@novell.com>
9689
9690         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
9691           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
9692
9693 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
9694
9695         * process.c: Don't close a thread handle when it's NULL. This is a
9696         workaround for bug #75733.
9697
9698 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
9699
9700         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
9701
9702 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
9703
9704         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
9705
9706 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9707
9708         * threadpool.c: if a work item in the thread pool has a callback that
9709         catches a exception, don't propagate it after invoking the callback.
9710         Fixes bug #75336.
9711
9712 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
9713
9714         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
9715
9716         * class-internals.h (MonoCachedClassInfo): Add some new fields.
9717
9718         * class.c (mono_class_init): Load field info lazily in the AOT case.    
9719
9720         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
9721
9722 2005-08-03  Ankit Jain  <jankit@novell.com>
9723
9724         Fix #75683.
9725         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
9726           PInvoke calling convention is 0.
9727
9728 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
9729
9730         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
9731         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
9732
9733 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
9734
9735         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
9736         to handle threads not started by the GC (patch by Michael Meeks
9737         <michael.meeks@novell.com>).
9738
9739 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
9740
9741         * reflection.c: Make buffer used in emitting types larger for some
9742         big generic types (patch by Michal Moskal).
9743
9744 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
9745
9746         * mono-debug.c: Fix some (not all) alignment problems.
9747
9748 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9749
9750         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
9751         Invoke mono_image_load_from_data_full passing the refonly
9752         parameter.
9753
9754         * assembly.c
9755         (mono_assembly_open_from_bundle): Add the refonly argument, 
9756         in order to pass it to other methods it calls to.
9757         (do_mono_assembly_open): Add the refonly argument, in order 
9758         to pass it to other methods it calls to.
9759         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
9760         the refonly parameter to it.
9761
9762         * image.c: Add loaded_images_refonly_hash and
9763         loaded_images_refonly_guid_hash to cache the reflection
9764         only loaded images.
9765         (mono_images_init): Initialize the hash tables used for
9766         caching the reflection only images.
9767         (load_modules): Invoke mono_image_open_full passing the refonly
9768         parameter to load the modules the correct way.
9769         (build_guid_table): Add the refonly argument, to re-build the 
9770         correct hash table.
9771         (do_mono_image_open): Added the refonly argument, in order to
9772         define it for the loaded image.
9773         (mono_image_loaded_full): New function, which receives an
9774         additional parameter to look for the image in the refonly or
9775         non-refonly section.
9776         (mono_image_loaded): Updated, using mono_image_loaded_full.
9777         (mono_image_loaded_by_guid_full): The same case that happens
9778         with mono_image_loaded_full.
9779         (mono_image_loaded_by_guid): Likewise.
9780         (register_image): Use the ref_only variable inside MonoImage
9781         to decide in which hash table store the current image.
9782         (mono_image_open_from_data_full): Rename
9783         mono_image_open_from_data to mono_image_open_from_data_full,
9784         adding the refonly argument, to define the ref_only variable 
9785         inside MonoImage.
9786         (mono_image_open_from_data): Return 
9787         mono_image_open_from_data_full.
9788         (mono_image_open_full): Rename mono_image_open to
9789         mono_image_open_full, receiving the new refonly argument,
9790         to pass it to inner methods.
9791         (mono_pe_file_open): Update this function, to open
9792         a MonoImage as a non-refonly image.
9793         (mono_image_close): Use the refonly variable inside
9794         MonoImage to remove the image from the correct caches.
9795
9796         * image.h: Add the signatures of mono_image_open_full,
9797         mono_image_open_from_data_full, mono_image_loaded_full,
9798         mono_image_loaded_by_guid_full.
9799
9800         * metadata-internals.h: Add the ref_only field to 
9801         MonoImage.
9802         
9803 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9804
9805         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
9806         Fix the last behavior, which used to load the assemblies and
9807         extract MonoReflectionAssemblyName information, instead of
9808         extract it from the metadata tables. Needed for Reflection
9809         Only assemblies.
9810         
9811 2005-07-29  Martin Baulig  <martin@ximian.com>
9812
9813         * mono-debug-debugger.c
9814         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
9815         not initialized.
9816
9817         * mono-debug.c
9818         (mono_debug_address_from_il_offset): Check whether we have
9819         debugging support before attempting to take the lock.
9820         (mono_debug_source_location_from_address): Likewise.
9821         (mono_debug_source_location_from_il_offset): Likewise.
9822         (mono_debug_il_offset_from_address): Likewise.
9823         (mono_debug_address_from_il_offset): Likewise.
9824
9825 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
9826
9827         * class.c (mono_class_from_name_case): Add support for dynamic images.
9828         Fixes #75650.
9829
9830         * object.c (mono_class_compute_gc_descriptor): Add a workaround
9831         for #75479.
9832
9833 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
9834         
9835         * reflection.c (mono_method_get_object): Fix warning.
9836
9837 2005-07-28  Martin Baulig  <martin@ximian.com>
9838
9839         * mono-debug.c
9840         (mono_debug_add_wrapper): Also write the wrapper type.
9841
9842 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
9843
9844         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
9845         
9846         * class.c (mono_class_init): Avoid reading nested classes if the AOT
9847         data indicates the class has none.
9848
9849 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
9850
9851         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
9852         loader lock with the debugger lock. Prevents deadlocks for beagle.
9853
9854         Beagle can now run on an smp box for a weekend without any
9855         issues. Woohoo!
9856
9857 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
9858
9859         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
9860         in a module. Fixes #75629.
9861
9862 2005-07-26  Martin Baulig  <martin@ximian.com>
9863
9864         * mono-debug.c (mono_debug_add_wrapper): New static method.
9865         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
9866         interncall or a wrapper.
9867
9868         * mono-debug.h (MonoDebugWrapperData): New public typedef.
9869         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
9870         (MONO_DEBUGGER_VERSION): Bump to 51.
9871
9872         * mono-debug-debugger.c
9873         (mono_debugger_add_type): Removed this empty function.
9874         (mono_debugger_add_method): Likewise.
9875
9876 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
9877
9878         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
9879         before accessing method->slot.
9880
9881 2005-07-21  Jb Evain  <jbevain@gmail.com>
9882
9883         * reflection.c (method_encode_clauses/class): Handle filters clauses.
9884         Fixes #75010.
9885
9886 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
9887
9888         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
9889         #75587.
9890
9891 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
9892
9893         * image.h image.c: Add mono_image_get_guid () API function.
9894
9895 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
9896
9897         There were issues when multiple threads tried to load
9898         assemblies. A deadlock was created between assemblies_mutex and
9899         mono_domain_assemblies_lock. This fixes the issue by making the
9900         assembly ref counting be lock free. See bug 75586.
9901         
9902         * image.c (mono_image_close): The add ref function here was using
9903         Interlocked operations while the unref was using a mutex and a
9904         --. I don't think this was ever a bug that would be exposed in a
9905         non-pendantic way (ie, by an embedder doing a ref on one thread
9906         and an unref on another), but for the sake of correctness, this is
9907         now Interlocked.
9908
9909         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
9910         (mono_assembly_load_reference): Call mono_assembly_addref rather
9911         than touching the refcount ourselves.
9912         (mono_assembly_close): Use InterlockedDecrement to unref the
9913         assembly. Don't acquire the lock unless it is actually needed.
9914
9915 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
9916
9917         * class.c (mono_class_layout_fields): Fix calculation of has_references
9918         for generic types.
9919
9920 2005-07-12  Martin Baulig  <martin@ximian.com>
9921
9922         Applying a patch from Michal Moskal <malekith@nemerle.org>.
9923
9924         * metadata.c
9925         (mono_type_hash): Provide better hashing for generic instances.
9926         (mono_generic_inst_hash): Improve hashing.
9927         (mono_generic_class_hash): Likewise.
9928
9929         * reflection.c (mymono_metadata_type_hash): Improve hashing for
9930         generic instances.
9931
9932 2005-07-12  Martin Baulig  <martin@ximian.com>
9933
9934         * reflection.c (mono_reflection_create_runtime_class): Remove the
9935         hack for generic type definitions and non-`Run' assemblies.
9936         (mono_reflection_bind_generic_parameters): Also use
9937         `klass->wastypebuilder' to check for TypeBuilders.
9938
9939 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
9940
9941         * class.c (mono_class_layout_fields): Fix calculation of has_references
9942         for generic types.
9943
9944         * class.c (inflate_generic_class): Fix a leak.
9945         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
9946         for generic types.
9947
9948 2005-07-11  Martin Baulig  <martin@ximian.com>
9949
9950         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
9951         on error.
9952
9953 2005-07-11  Martin Baulig  <martin@ximian.com>
9954
9955         * loader.c (find_method): Also lookup in
9956         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
9957
9958 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
9959
9960         * appdomain.c (mono_domain_unload): Don't free the error message
9961         before passing it to mono_get_exception_...
9962
9963         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
9964         
9965 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
9966
9967         * threads.c: try to better guess an available RT signal (bug #75387).
9968
9969 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
9970
9971         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
9972         and CACHE_OBJECT.
9973
9974 2005-07-07  Martin Baulig  <martin@ximian.com>
9975
9976         * class.c (mono_type_get_name_full): Return NULL for
9977         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
9978         fixes #75408.
9979
9980 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
9981
9982         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
9983         exit the appdomain as well being aborted.
9984
9985         * threadpool.c: Create all threadpool threads inside the root appdomain, and
9986         change back to the root domain after calling managed code. This enables
9987         appdomains using threadpools to be unloaded.
9988
9989 2005-07-07  Martin Baulig  <martin@ximian.com>
9990
9991         * class-internals.h
9992         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
9993         into `MonoDynamicGenericClass' since we only need it for dynamic
9994         types.
9995
9996         * reflection.c (mono_class_bind_generic_parameters): We don't need
9997         to compute the `parent' here.
9998
9999 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
10000
10001         * culture-info-table.h : regenerated.
10002
10003 2005-07-06  Martin Baulig  <martin@ximian.com>
10004
10005         * icall.c
10006         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
10007
10008         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
10009
10010 2005-07-06  Martin Baulig  <martin@ximian.com>
10011
10012         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
10013         we're doing a signature-only comparision; fixes #74945.
10014
10015 2005-07-06  Martin Baulig  <martin@ximian.com>
10016
10017         * class-internals.h (MonoGenericClass): Moved some things out into
10018         a new `MonoInflatedGenericClass' type.  
10019         (MonoInflatedGenericClass): New type; the `klass' of a
10020         `MonoGenericClass' is now computed lazyly in
10021         mono_get_inflated_generic_class().      
10022
10023         * class.c (mono_get_inflated_generic_class): New public function.
10024         (mono_class_inflate_generic_method): Removed the unused
10025         `MonoClass *' argument.
10026         (setup_generic_vtable): Don't call mono_get_inflated_method() on
10027         all the methods.
10028         (mono_class_create_generic): Make this static and merge it with
10029         mono_class_create_generic_2(); we're now called automatically from
10030         mono_get_inflated_generic_class().
10031
10032         * loader.c (mono_method_signature): Call
10033         mono_get_inflated_method() here.
10034
10035 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
10036
10037         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
10038         type of fields with RVA.
10039
10040         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
10041         for this pseudo class.
10042         (my_mono_class_from_generic_parameter): Likewise.
10043         (mono_class_init): Allow interfaces to have cctors.
10044
10045 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
10046
10047         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
10048         lazily for AOT methods.
10049
10050 2005-07-05  Martin Baulig  <martin@ximian.com>
10051
10052         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
10053         returns FALSE for a successful match, not TRUE.
10054
10055 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
10056
10057         * loader.c (mono_method_get_index): Optimize this a bit.
10058
10059 2005-07-04  Martin Baulig  <martin@ximian.com>
10060
10061         * class.c
10062         (class_compute_field_layout): Move the check for generic type
10063         definitions into mono_class_layout_fields().  Fixes #74684.
10064         (mono_class_from_generic_parameter): Correctly compute
10065         `klass->parent'; fixes #75457.
10066
10067         * reflection.c (register_assembly, register_module): Make sure
10068         `domain->rejobject_hash' is already created.
10069
10070 2005-07-02  Martin Baulig  <martin@ximian.com>
10071
10072         * class-internals.h
10073         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
10074         `MonoDynamicGenericClass'.      
10075
10076 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
10077
10078         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
10079         returned by a field getter is null, since null is a valid value.
10080
10081 2005-07-01  Martin Baulig  <martin@ximian.com>
10082
10083         * reflection.c (mono_reflection_generic_class_initialize): Update
10084         the `dgclass->fields [i].parent' to the correct class.
10085         (mono_image_get_fieldref_token): Use the declaring type, not the
10086         reflected type.
10087
10088 2005-07-01  Martin Baulig  <martin@ximian.com>
10089
10090         * loader.c (find_method): Also look in the interfaces; fixes #75429.
10091
10092 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
10093
10094         * threads.c (thread_cleanup): assert that thread != NULL
10095         (wait_for_tids_or_state_change): We were using the wrong variable
10096         when accessing wait->threads. `i' was always out of the bounds of
10097         the array.
10098
10099 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10100
10101         * loader.c: map user32 and kernel32 to libMonoSupportW
10102
10103 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
10104
10105         * appdomain.c (unload_thread_main): Mark this as WINAPI.
10106
10107 2005-06-28  Martin Baulig  <martin@ximian.com>
10108
10109         * loader.c (method_from_methodspec): Fix #75334.
10110
10111 2005-06-28  Martin Baulig  <martin@ximian.com>
10112
10113         Fix #74953 - Arrays now implement the generic IList<T> interface
10114         on the 2.0 platform.
10115
10116         * class-internals.h (MonoDefaults): Added `generic_array_class'.
10117
10118         * reflection.c (mono_class_bind_generic_parameters): New public
10119         function; similar to mono_reflection_bind_generic_parameters(),
10120         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
10121
10122         * domain.c (mono_init_internal): Try to initialize.
10123         `mono_defaults.generic_array_class' here; this'll only succeed if
10124         we're using the 2.0 corlib.
10125
10126         * icall.c
10127         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
10128         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
10129         (mono_lookup_internal_call): Added support for nested classes.
10130
10131         * loader.c
10132         (mono_get_method_from_token): Set `result->signature->pinvoke' if
10133         we're an interncall and have generic arguments.
10134
10135         * class.c
10136         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
10137         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
10138         instance of System.Array.InternalArray<T> for arrays, so they
10139         implement the generic IList<T> interface.
10140
10141 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
10142
10143         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
10144         (chastamar@yahoo.com). Fixes #75374.    
10145
10146 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
10147
10148         * culture-info-table.h: regenerated.
10149
10150 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10151
10152         * icall.c: handle spaces correctly for base64 strings.
10153
10154 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
10155
10156         * *.c: Kill some warnings.
10157
10158 2005-06-23  Duncan Mak  <duncan@novell.com>
10159
10160         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
10161         that this builds on Solaris 10 (x86).
10162
10163 2005-06-23  Martin Baulig  <martin@ximian.com>
10164
10165         * class.c
10166         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
10167         generic type definitions.
10168
10169 2005-06-23  Martin Baulig  <martin@ximian.com>
10170
10171         Fix #75331.
10172
10173         * metadata.c (mono_class_get_overrides): Renamed to
10174         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
10175         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
10176         pass it to mono_get_method_full().
10177
10178 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
10179
10180         * reflection.c (mono_reflection_create_runtime_class): take the
10181         mono_domain_lock in this method. Prevents deadlocks
10182
10183 2005-06-22  Martin Baulig  <martin@ximian.com>
10184
10185         * loader.c (method_from_methodspec): Fix #75330.
10186
10187 2005-06-22  Martin Baulig  <martin@ximian.com>
10188
10189         * reflection.c (type_get_qualified_name): Use
10190         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
10191         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
10192         argument; use it if we don't have an assembly name.
10193
10194 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
10195
10196         * object.c: In mono_message_init, set "copy out" flag for in
10197         parameters with the [Out] flag.
10198
10199 2005-06-21  Martin Baulig  <martin@ximian.com>
10200
10201         * class.c
10202         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
10203         and MONO_TYPE_PTR.
10204
10205 2005-06-21  Martin Baulig  <martin@ximian.com>
10206
10207         * class.c (mono_class_init): Don't initialize `class->fields' for
10208         generic instances since they're initialized again in
10209         compute_field_layout(). 
10210         (compute_field_layout): Set the field's `generic_info' here; fix
10211         #75320. 
10212
10213 2005-06-21  Martin Baulig  <martin@ximian.com>
10214
10215         * class-internals.h
10216         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
10217
10218         * metadata.c (mono_metadata_generic_method_equal): Also
10219         distinguish the `generic_class'; fixes #75334.
10220
10221 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10222
10223         * domain.c:
10224         * appdomain.c:
10225         * domain-internals.h:
10226         * reflection.c: 'domain_assemblies' field is now protected by its own
10227         lock. Don't call into managed code to run the AssemblyLoad event if we
10228         now there are no registered delegates for it.
10229
10230 2005-06-20  Martin Baulig  <martin@ximian.com>
10231
10232         * class.c (mono_class_is_assignable_from): Use a custom version of
10233         mono_class_has_parent() to make things work for generic instances;
10234         fix #75300.
10235
10236 2005-06-20  Martin Baulig  <martin@ximian.com>
10237
10238         * loader.c (method_from_methodspec): Apply a patch from
10239         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
10240
10241 2005-06-20  Martin Baulig  <martin@ximian.com>
10242
10243         * class.c (mono_class_init): Reverted Zoltan's last change; it
10244         breaks generics.
10245
10246 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
10247
10248         * threads.c (wait_for_tids_or_state_change): Add missing locking.
10249
10250 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10251
10252         * socket-io.c: fix the index in the socket array for writable/error
10253         sockets. Fixes bug #75306.
10254
10255 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
10256
10257         * class.c (mono_class_init): Allow interfaces to have static ctors.
10258
10259 2005-06-17  Martin Baulig  <martin@ximian.com>
10260
10261         * loader.c (method_from_methodspec): Use `context->container' when
10262         parsing the `gmethod->inst'.
10263
10264 2005-06-17  Martin Baulig  <martin@ximian.com>
10265
10266         * class.c (mono_type_get_name_recurse): Don't add the assembly
10267         name for type arguments.
10268
10269 2005-06-15  Martin Baulig  <martin@ximian.com>
10270
10271         * reflection.c (mono_image_get_inflated_method_token): Encode
10272         correct klass; fixes #75260.
10273
10274 2005-06-13 Michal Moskal <malekith@nemerle.org>
10275
10276         * icall.c: Make GetCorrespondingMethod/Constructor take
10277         MonoReflectionMethod method not MonoMethod. Removed
10278         MonoType.GetCorrespondingField, and make
10279         MonoGenericType.GetCorrespondingField take name not
10280         MonoClassField.
10281
10282 2005-06-13  Michal Moskal <malekith@nemerle.org>
10283
10284         * reflection.c (field_encode_signature, encode_locals):
10285          Make sizes of buffers for types larger (for big generic types).
10286          (create_generic_typespec,
10287          mono_reflection_sighelper_get_signature_local,
10288          mono_reflection_sighelper_get_signature_field):
10289          Add asserts for too small buffers.
10290
10291 2005-06-15  Martin Baulig  <martin@ximian.com>
10292
10293         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
10294         if our parent is not a dynamic type.
10295
10296 2005-06-15  Martin Baulig  <martin@ximian.com>
10297
10298         * class-internals.h (MonoTypeNameFormat): New enum.
10299
10300         * class.c
10301         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
10302         (mono_type_get_full_name): Removed.
10303         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
10304         argument instead of the boolean's.
10305
10306         * icall.c (ves_icall_System_MonoType_getFullName):
10307         Added `gboolean assembly_qualified'.    
10308
10309         * reflection.h
10310         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
10311
10312         * reflection.c (mono_reflection_parse_type): Parse the new type
10313         name format.
10314
10315 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10316
10317         * icall.c: no need to convert from utf16 to utf8 and then back again
10318         after the call to GetLogicalDrives.
10319
10320 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10321
10322         * icall.c: frombase64. Fix problems exposed by new tests.
10323
10324 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10325
10326         * icall.c: added internal calls for converting char [] and strings in
10327         base64 into byte [].
10328
10329 2005-06-10  Martin Baulig  <martin@ximian.com>
10330
10331         * class.c (mono_class_create_generic_2): Read the nested classes
10332         from the metadata rather than from `gklass->nested_classes' since
10333         `gklass' might not be initialized yet.
10334
10335 2005-06-09  Duncan Mak  <duncan@novell.com>
10336
10337         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
10338         all public headers. Fixes #74919.
10339
10340 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
10341
10342         * domain.c: The key for proxy_vtable_hash is now a pointer
10343         array. Added new GHashFunc and GCompareFunc functions for this.
10344
10345         * class.h: The list of interfaces in MonoRemoteClass is known in
10346         advance and can't grow (we create a new MonoRemoteClass if needed),
10347         so now the interface array can be allocated together with
10348         MonoRemoteClass.
10349         
10350         * object.c: Added a new method create_remote_class_key.
10351         Fixed mono_remote_class so it does not depend on
10352         mono_upgrade_remote_class.
10353         Removed extend_interface_array.
10354         Added new method clone_remote_class(), which makes a copy of a remote
10355         class and adds a new interface or class to it.
10356         mono_upgrade_remote_class() now creates a new remote class (or gets
10357         it from the cache) if an vtable upgrade is needed. In this way
10358         we make sure that other objects sharing the same remote class
10359         don't get the new vtable with unwanted interfaces.
10360         
10361         * object-internals.h:
10362         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
10363         
10364         * marshal.c: Track changes in mono_upgrade_remote_class().
10365
10366 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
10367         * icall.c: Add runtime methods for obtaining members of inflated
10368         class, which were created from supplied non-inflated members. It
10369         is used in internal Get{Method,Constructor,Field} methods in
10370         System.Type
10371
10372 2005-06-09  Martin Baulig  <martin@ximian.com>
10373
10374         * reflection.c
10375         (mono_reflection_bind_generic_method_parameters): Fix #75169.
10376
10377 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10378         * reflection.c (mono_image_basic_init): Define
10379         Version in MonoDynamicAssembly. 
10380         
10381 2005-06-08  Martin Baulig  <martin@ximian.com>
10382
10383         Fix #75136.
10384
10385         * loader.c
10386         (mono_method_signature_full): New public method; takes a
10387         `MonoGenericContext *'.
10388         (find_method): Use mono_method_signature_full() and pass the
10389         klass'es context to it.
10390
10391         * class.c (mono_class_is_inflated_method): Use
10392         mono_method_signature_full() and pass the context to it.
10393
10394 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
10395
10396         * object.c: add proper locking in mono_remote_class_vtable(),
10397         fixes possible memory corruption.
10398
10399 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
10400
10401         * marshal.c (mono_remoting_marshal_init): set
10402         initialized after initialization.
10403
10404 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10405
10406         * locales.c : hush.
10407
10408 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
10409
10410         * object.c (extend_interface_array): fix really silly
10411         memory corrupting / comparison bug.
10412
10413 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10414
10415         * reflection.c: Functions added to support the creation
10416         of CustomAttributeData, which includes Attribute data
10417         used by ReflectionOnly methods.
10418
10419         * reflection.h:  mono_reflection_get_custom_attrs_data and
10420          mono_custom_attrs_data_construct added (functions exposed).
10421
10422          * icall.c: Added mono_reflection_get_custom_attrs_data
10423          as icall.
10424         
10425 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
10426
10427         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
10428         lupus's request.
10429
10430 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
10431
10432         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
10433
10434         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
10435         dynamic DllImportAttribute.
10436
10437         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
10438         dynamic DllImportAttribute.
10439
10440         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
10441         Fixes #75162.
10442
10443 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10444
10445         * threads.c: avoid segfault when an unstarted thread is aborted.
10446
10447 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
10448
10449         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
10450         Returns the name and version of the runtime for reporting.
10451
10452 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10453
10454         * appdomain.c: bump corlib version.
10455         * object-internals.h: new field in MonoReflectionAssembly.
10456
10457 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10458
10459         * object-internals.h: Carlos forgot to add this field.
10460
10461 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10462
10463         * icall.c: Added create_version to create instances
10464         of Version of MonoReflectionAssemblyName. This change helps
10465         the AssemblyName tests to keep running fine.
10466         
10467 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
10468   
10469         * object.c (mono_method_return_message_restore): A somehow less
10470         intrusive fix for #75138.
10471
10472 2005-06-03  Raja R Harinath  <rharinath@novell.com>
10473
10474         * object.c (mono_method_return_message_restore): Fix computation
10475         of expected number of out args.
10476
10477 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
10478
10479         * reflection.c (mono_image_get_method_info): Fix the case when the
10480         charset is empty.
10481
10482 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
10483
10484         * object.c: Added missing null check in
10485           mono_method_return_message_restore.
10486
10487 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
10488
10489         * reflection.c (mono_image_get_method_info): Handle the case when
10490         dllentry is empty.
10491
10492 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
10493
10494         * object.c: When creating the vtable for a proxy, take into account
10495         all inherited interfaces, not only the ones registered in
10496         iclass->interfaces. This fixs bug #74996.
10497         Also, in mono_method_return_message_restore, verify that the array
10498         of out args has the expected lengh.
10499
10500 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10501
10502         * socket-io.c: update the timeout in Poll when the call is interrupte.
10503
10504 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10505
10506         * socket-io.c: support abort/suspend in Select_internal after last
10507         change.
10508
10509 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10510
10511         * threadpool.c: remove warning.
10512
10513 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10514
10515         * icall.c:
10516         * socket-io.[ch]: Select_internal uses poll() now when available, thus
10517         removing the 1024 limit from select(). Runtime part of the fix for
10518         bug #71203.
10519
10520 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10521
10522         * socket-io.c: when resolving the addresses for the same
10523         host returned by gethostname(), get the local IPs from the interface
10524         list. Loopback addresses are discarded if the are interfaces up with
10525         non-loopback ones. Fixes bug #63265.
10526
10527 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
10528
10529         * appdomain.c, verify.c, object-internals.h, reflection.c:
10530         bumped corlib number to 36, and added new extra_flags field
10531         to ReflectionMethodBuilder and friends.  Fixes #75060.
10532
10533 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
10534
10535         * gc.c: register a new weak link only if the object is non-null
10536         (fixes bug#75047).
10537
10538 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10539
10540         * culture-info.h : short time pattern too.
10541
10542 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10543
10544         * culture-info.h : expand long time pattern string length.
10545
10546 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
10547
10548         * culture-info-table.h : update (more French date format; #72788).
10549
10550 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
10551
10552         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
10553         the method is static. Fixes #75029.
10554
10555 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
10556
10557         * reflection.c: Update the table_idx field of method builders after
10558         saving the module, since it can change. This is a workaround for
10559         bug #74914. 
10560
10561 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
10562
10563         * culture-info-table.h : update (additional French date format).
10564
10565 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
10566
10567         * icall.c (ves_icall_type_Equals): Revert last change.
10568         
10569         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
10570
10571         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
10572
10573 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
10574
10575         * class-internals.h: Added executioncontext_class field to 
10576         MonoDefaults structure.
10577         * domain.c: Cache System.Threading.ExecutionContext class in 
10578         mono_defaults.
10579         * object.c: Capture the ExecutionContext for asynchroneous calls in
10580          mono_async_result_new.
10581         * object-internals.h: Added execution_context and original_context 
10582         fields to MonoAsyncResult. Added execution_context to MonoThread.
10583         * security-manager.c|.h: Added mono_get_context_capture_method to 
10584         return the capture method (if required by the security manager or by
10585         the framework version used).
10586         * threadpool.c: Apply capture (if present) ExecutionContext in 
10587         mono_async_invoke and revert to original context after it completes.
10588
10589 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
10590
10591         * culture-info-table.h : updated (real hacky solution for zh-CHT).
10592
10593 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
10594
10595         * culture-info-table.h : zh-CHT related workaround.
10596
10597 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
10598
10599         * marshal.c (emit_marshal_custom): Add some error checking and call the
10600         methods in the ICustomMarshaler interface. Fixes #74875.
10601         
10602         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
10603         native->managed wrappers.
10604
10605 2005-05-12  Martin Baulig  <martin@ximian.com>
10606
10607         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
10608         here and use the loader lock.
10609
10610         * mono-debug.c: Properly lock when the debugger is not attached.
10611         (mono_debug_init): Release the initial lock if we're not running
10612         in the debugger.
10613
10614 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
10615
10616         * marshal.c (emit_marshal_custom): Pass through NULL values without
10617         calling the custom marshalling routines.
10618
10619         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
10620         conversion in structures. Fixes #74882.
10621
10622 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
10623
10624         * culture-info-table.h : zh-* cultures were missing.
10625
10626 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
10627
10628         * threads.c: Added a new event background_change_event which is signaled
10629         when a thread changes its background mode.
10630         Moved here several checks previously done in managed code. The checks
10631         require the thread lock, and using the thread lock in managed code
10632         can result in deadlocks.
10633         Merged Start_internal and Thread_internal into a single method. Now 
10634         Thread_internal does all work of creating and starting a thread.
10635         Added icalls for setting and getting the state of the object. Moved from
10636         managed code to avoid locking there.
10637         Added wait_for_tids_or_state_change() which is called instad of
10638         wait_for_tids when waiting for non-backround threads to end. This method
10639         will return if one of the threads ends or the background_change_event
10640         is signaled.
10641         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
10642         the background mode. This method signals the background_change_event
10643         event.
10644         * icall.c:
10645         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
10646         removed Start_internal.
10647         
10648 2005-05-11  Martin Baulig  <martin@ximian.com>
10649
10650         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
10651         to order of some fields to get proper alignment on 64-bit machines.
10652
10653 2005-05-11  Martin Baulig  <martin@ximian.com>
10654
10655         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
10656         changes as they're broken and completely fuck up the debugger.
10657
10658         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
10659
10660 2005-05-10  Martin Baulig  <martin@ximian.com>
10661
10662         * reflection.c (mono_reflection_generic_class_initialize): Don't
10663         call mono_class_setup_parent() here.
10664
10665 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10666
10667         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
10668         send/receive timeout use an integer in milliseconds. We were using a
10669         struct timeval.
10670
10671 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10672
10673         * locales.c:
10674         (internal_get_cultures): reserve the first slot of the array for the
10675         InvariantCulture, which will be filled in managed code.
10676
10677 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
10678
10679         * reflection.c (mono_image_fill_module_table): Initialize the
10680         GENERATION field as well.
10681
10682 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10683
10684         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
10685         Monitor.Enter on the object.
10686
10687 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
10688
10689         * threads.c: Enable the wait for running threads when exiting.
10690         * icall.c: Suspend all threads before exiting.
10691
10692 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
10693
10694         * assembly.c (mono_assembly_load_reference): Fix warning.
10695
10696 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10697
10698         * threadpool.c: changed the default number of threads per cpu. From now
10699         on, the default will be 20 + (5 * number of cpus) instead of 50.
10700
10701 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
10702
10703         * loader.c (mono_method_get_signature_full): Add locking here.
10704
10705 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
10706
10707         * appdomain.c: Moved methods for parsing and freeing assembly
10708         names to assembly.c.
10709         * assembly.c, domain-internals.h: Created public methods for parsing
10710         assembly names. Fixed mono_assembly_load_with_partial_name:
10711         it now finds the best match, taking into account the version,
10712         token and culture specified in the partial name. Also return
10713         the latest version if no version information is specified.
10714
10715 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
10716
10717         * threadpool.c: replace check for SocketAsyncCall class.
10718
10719 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10720
10721         * threadpool-internals.h:
10722         * Makefile.am: added threadpool-internals.h
10723
10724         * threadpool.c: call mono_unhandled_exception on exceptions not handled
10725         that happen in threadpool threads (tested on MS).
10726         (mono_thread_pool_remove_socket): new function that dispatch any pending
10727         AIO call on a socket that is closing. By now only epoll really needs it,
10728         as select/poll wake up when the socket closes.
10729
10730
10731         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
10732
10733 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
10734
10735         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
10736
10737 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
10738
10739         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
10740
10741 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
10742
10743         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
10744         has an abort request, convert it into a suspend request.
10745
10746 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
10747
10748         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
10749         warning for the usage of `UnmanagedFunctionPointerAttribute' which
10750         is not supported yet.
10751
10752 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10753
10754         * image.c: register assemblies loaded from data (bundles) in the loaded
10755         assemblies hash. Fixes bug #74772.
10756
10757 2005-04-29  Martin Baulig  <martin@ximian.com>
10758
10759         * class.c (mono_type_get_name_recurse): Update to the new naming
10760         schema from the latest .NET 2.x beta2.
10761         (mono_class_setup_vtable_general): If we're a generic instance,
10762         copy the vtable from our generic type definition and inflate all
10763         the methods in it.
10764
10765         * loader.c (find_method): Update to the new naming schema from the
10766         latest .NET 2.x beta2.
10767
10768 2005-04-29  Raja R Harinath  <harinath@gmail.com>
10769
10770         * class.c (mono_class_init): Add a mono_loader_unlock to the
10771         #74734 fix.
10772
10773 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
10774
10775         * icall.c (ves_icall_System_Environment_Exit): Remove the 
10776         suspend_all_other_threads () call for the time being, since it can hang.
10777
10778         * threads.c (mono_thread_manage): Similarly, disable the waiting for
10779         the background threads to exit, since it can also hang.
10780
10781         * class.c (mono_class_init): Applied patch from Ankit Jain 
10782         (radical@gmail.com). Avoid pending init errors when a field refers
10783         to a nested class using a typeref. Fixes #74734.
10784
10785         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
10786         this for dynamic modules.
10787
10788 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10789
10790         * threads.c: don't wait for threads that are in the process of aborting
10791         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
10792         and waiting for background threads to finish. This makes xsp and
10793         mod-mono-server exit without random length delays and/or hangs.
10794
10795 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10796
10797         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
10798
10799 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
10800
10801         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
10802         dynamic types to prevent infinite loops. Fixes #74727.
10803
10804         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
10805         ..._is_assignable_to.
10806
10807 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
10808
10809         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
10810
10811 2005-04-25  Martin Baulig  <martin@ximian.com>
10812
10813         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
10814
10815         * domain.c
10816         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
10817
10818         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
10819
10820         * reflection.c (build_compressed_metadata): Set metadata header
10821         version to 2.0.
10822
10823 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
10824
10825         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
10826         number into an integral and a decimal part. Fixes #70473.
10827
10828         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
10829
10830 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
10831
10832         * culture-info-table.h : reflected the latest locale-builder output.
10833
10834 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10835
10836         * threadpool.c: check for SuspendRequested too when deciding if
10837         mono_thread_interruption_checkpoint should be called.
10838
10839 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10840
10841         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
10842         * threads.c: remove interruption_mutex and use Interlocked instead. When
10843         suspending all the threads, wait for all the suspended events at once.
10844         If we're shutting down and get an APC that is going to be queued,
10845         call mono_thread_execute_interruption immediately, as the thread might
10846         be sleeping on a pthread condition or mutex.
10847
10848         * icall.c: call mono_runtime_set_shutting_down before suspending the
10849         threads.
10850
10851         Fixes bug #74693. And now xsp is happier when exiting.
10852
10853 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
10854
10855         * loader.c (mono_stack_walk): Fix #74690.
10856
10857 2005-04-22  Martin Baulig  <martin@ximian.com>
10858
10859         * mono-debug.h (MonoDebugMethodJitInfo): Added
10860         `MonoDebugMethodJitInfo *jit'.
10861
10862         * mono-debug.c (mono_debug_read_method): Cache the
10863         MonoDebugMethodJitInfo in `address->jit'.
10864         (mono_debug_free_method_jit_info): New public method.
10865
10866 2005-04-22  Martin Baulig  <martin@ximian.com>
10867
10868         * class.c (mono_class_is_assignable_from): Disallow
10869         type parameter -> interface.
10870
10871 2005-04-21  Dick Porter  <dick@ximian.com>
10872
10873         * threads.c (mono_thread_create): Turn an assertion into an error.
10874
10875 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
10876
10877         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
10878         
10879         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
10880         Fix some gcc 4.0 warnings.
10881
10882 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
10883
10884         * file-io.c: fix alt dir separator char on unix systems
10885         and cleanup (fixes bug #71214).
10886
10887 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
10888
10889         * marshal.c: Use CALLVIRT instead of CALL when dispatching
10890         a call to a remote domain, since the method may be an
10891         interface method in the client domain. This fixes bug #74192.
10892
10893 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10894
10895         * threadpool.c: recv/send are now performed before going back to managed
10896         code to save one transition.
10897
10898 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10899
10900         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
10901
10902         * metadata/threadpool.c: removed hack to workaround the bug above.
10903
10904         Fixes bug #74618.
10905
10906 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
10907
10908         * reflection.c reflection.h: Fix handling of parameter defaults in
10909         dynamic methods. Also fixes handling of parameter attributes.
10910         Fixes #74609.
10911
10912         * mono-debug.c (mono_debug_close_image): Fix warning.
10913
10914 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10915
10916         * socket-io.h: replaced old unused field with new 'blocking'.
10917         * threadpool.c: restore socket blocking state on windows(tm).
10918
10919 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
10920
10921         * icall.c: don't return the codebase in the AssemblyName[] returned by
10922         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
10923         * object-internals.h: Removed FIXME (fields were presents) and fixed
10924         versioncompat declaration.
10925
10926 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10927
10928         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
10929         not closed, so don't cleanup when it happens.
10930
10931 2005-04-13  Chris Toshok  <toshok@ximian.com>
10932
10933         * mono-debug-debugger.h: change prototype for
10934         mono_debugger_lookup_type.
10935
10936         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
10937         this function, although it should probably be named
10938         mono_debugger_init_type.
10939
10940 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10941
10942         * threadpool.c: fix non-AIO case.
10943
10944 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
10945
10946         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
10947         the built-in profiler to measure just JIT compilation times.
10948
10949 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10950
10951         * threadpool.c: the epollfd might be closed by another thread at
10952         any time, so ignore EBADF at treat it as a "we're closing" sign.
10953
10954 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10955
10956         * threadpool.c: release the semaphores with a count equals to the number
10957         of working threads in both IO and regular pools. Fixed typo that messed
10958         up the count of IO pool threads. Don't initialize the pipe handles if
10959         we're using epoll.
10960
10961 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10962
10963         * threadpool.c: some systems don't like a NULL when deleting the socket
10964         from epoll.
10965
10966 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10967
10968         * threadpool.c: fix semaphore allocation.
10969
10970 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10971
10972         * threadpool.c: added epoll() based implementation for asynchronous IO
10973         that is used instead of the default poll() when available.
10974         It can be disabled by setting MONO_DISABLE_AIO.
10975
10976 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10977
10978         * threadpool.c: windows needs 'closesocket' and instead of returning
10979         0 when the stream is closed while in select, it returns -1. Fixes bug
10980         #74573.
10981
10982 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
10983
10984         * class.c (class_compute_field_layout): Fix the regression caused by
10985         the previous try.
10986
10987 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10988
10989         * threadpool.c: separate pool for socket async. IO.
10990         * threadpool.h: mono_max_worker_threads is not a global any more.
10991
10992 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
10993
10994         * class.c (class_compute_field_layout): Fix #74549.
10995
10996 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10997
10998         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
10999         use 2 connected sockets instead.
11000
11001 2005-04-08  Miguel de Icaza  <miguel@novell.com>
11002
11003         * mono-config.c: Add new entry point for mkbundle
11004         mono_config_parse_memory. 
11005
11006 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11007
11008         * threadpool.c: removed another unused function.
11009
11010 2005-04-08  Ankit Jain  <radical@corewars.org>
11011
11012         * reflection.c (get_default_param_value_blobs): Add 'types'
11013         parameter to get the types encoded in the constant table.
11014         (mono_param_get_objects): Use the type from the constant table,
11015         not the type of the parameter, when creating default values.
11016         Handle null default values correctly.
11017
11018 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11019
11020         * file-io.c:
11021         * file-io.h:
11022         * threadpool.c:
11023         * threadpool.h:
11024         * icall.c:
11025         * socket-io.c: removed dead code for async IO.
11026
11027 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11028
11029         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
11030
11031         * threadpool.c: intercept socket async. calls and pass them to a thread
11032         that is polling and dispatching the job items to the threadpool as
11033         socket become ready. Fixes bugs #71217, #71933.
11034
11035         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
11036         between char and short/ushort arrays.
11037
11038         * socket-io.c: remove dead code.
11039
11040 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
11041
11042         * locales.c,
11043           icall.c : removed InternalToUpper_Comp() and
11044           InternalToLower_Comp().
11045
11046 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
11047
11048         * char-conversions.h : The tables were incorrectly generated. Should
11049           be generated against invariant culture.
11050
11051 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
11052
11053         * object.c (mono_runtime_invoke_array): Fix return value when 
11054         passing pre-created valuetype objects to ctors.
11055
11056         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
11057         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
11058         Fixes #74338.
11059
11060 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
11061
11062         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
11063         only used with --security and hides the wrong corlib version error.
11064
11065 2005-03-30  Joshua Tauberer  <tauberer@for.net>
11066
11067         * class.c: Changed mono_class_name_from_token so that types
11068         outside of a namespace don't have an initial period.  Improved
11069         the g_warning message used in _mono_class_get when loading
11070         fails.
11071         * assembly.c: In mono_assembly_load_reference, when an assembly
11072         can't be found, "No such file or directory" is misleading and
11073         unhelpful because a few paths were checked for the presence of
11074         the assembly.  When that happens (ENOENT), display a nicer
11075         message indicating the directories that were searched.  In all
11076         cases, the warning is made easier to read for non-hackers.
11077
11078 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
11079
11080         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
11081         project/solution.
11082         * appdomain.h|domain.c: Removed inline from functions.
11083         * appdomain.c: Reduced warnings when compiling on windows.
11084         * icall.c: Fixed output_debug declaration to gunichar2*.
11085         * mono-config.c: Reduced warnings when compiling on windows.
11086         * rand.c: Added missing "windows.h". Added missing return value.
11087         * rawbuffer.c: Added missing winsock2.h for windows.
11088         * sysmath.h: Added mono-compiler.h header to allow/ease 
11089         compilation with non-GCC compilers.
11090         * threads.c: Fixed declarations to compile with VS.NET C compiler.
11091         Removed cast warnings.
11092
11093         Adapted from the work of J Lothian (for VC6).
11094
11095 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
11096
11097         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
11098         from default_path.
11099
11100 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
11101
11102         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
11103         the 2.0 profile.
11104
11105 2005-03-27  Raja R Harinath  <harinath@gmail.com>
11106
11107         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
11108         has to be in $(exec_prefix).  $(prefix) is for arch-independent
11109         stuff, and it would probably use $(prefix)/share rather than
11110         $(prefix)/lib.
11111
11112 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11113
11114         * console-io.c: added 2 includes that might be missing.
11115
11116 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
11117
11118         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
11119         profile.
11120
11121         * reflection.c (create_custom_attr): Allocate the params array using
11122         alloca so it gets GC tracking.
11123
11124 2005-03-23  Chris Toshok  <toshok@ximian.com>
11125
11126         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
11127         out some spew.
11128
11129 2005-03-24  Raja R Harinath  <rharinath@novell.com>
11130
11131         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
11132         changes to pick up any changes in prefix, etc.
11133
11134 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
11135
11136         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
11137         
11138         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
11139         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
11140
11141 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
11142
11143         * class-internals.h object-internals.h class.c reflection.c: Extend the
11144         mono_lookup_dynamic_token () function to return the class of the
11145         token as well. 
11146
11147         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
11148         well. Fixes #73848.
11149
11150 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
11151
11152         * security-manager.c: Skip inheritance checks for intra-corlib
11153         class inheritance and method overrides. This skips a lot of checks
11154         and (anyway) permissions cannot work until corlib is loaded.
11155
11156 2005-03-23  Martin Baulig  <martin@ximian.com>
11157
11158         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
11159         MONO_TYPE_GENERICINST.  
11160
11161 2005-03-23  Martin Baulig  <martin@ximian.com>
11162
11163         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
11164
11165 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
11166
11167         * class.c: added locking comments to some functions.
11168         Cache the interface offsets arrays (saves about 20 KB
11169         of runtime memory in a typical app).
11170         Reduce the time overhead in mono_class_setup_supertypes ().
11171
11172 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
11173
11174         * icall.c: speedup and fix leaks in GetMethodsByName and
11175         GetPropertiesByName.
11176
11177 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
11178
11179         * reflection.c: some locking fixes.
11180
11181 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
11182
11183         * metadata.c: added missing break in case statement.
11184
11185 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
11186
11187         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
11188         typedbyref return values. Fixes #73941.
11189
11190 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
11191
11192         * security-manager.c|h: Added demandunmanaged method and 
11193         suppressunmanagedcodesecurity class to MonoSecurityManager.
11194         Renamed aptc class to allowpartiallytrustedcallers.
11195
11196 2005-03-17  Martin Baulig  <martin@ximian.com>
11197
11198         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
11199
11200 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11201
11202         * file-io.c: disabled file async. IO using aio_*. It uses the
11203         threadpool now. Workaround for bug #73718.
11204
11205 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
11206
11207         * assembly.h, mono-config.c: added code to deal with bundled configs
11208         for bundled assemblies.
11209
11210 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
11211
11212         * *.c, private.h: cleanup, removing old private.h header file.
11213
11214 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
11215
11216         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
11217         and throw_on_unmappable_char attributes.
11218
11219 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
11220
11221         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
11222         _ProcessName_internal.
11223
11224 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
11225
11226         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
11227         #73631.
11228
11229         * icall.c threads.c threads-types.h: Remove slothash icalls as they
11230         are no longer used.
11231
11232 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
11233
11234         * object.c (compute_class_bitmap): Add support for generics. Fixes
11235         #73527.
11236
11237 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
11238
11239         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
11240
11241 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11242
11243         * filewatcher.c: commented out the code for windows watcher, as we don't
11244         use it (we use the managed implementation instead).
11245
11246 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
11247
11248         * object-internals.h (MonoThread): Remove 'unused1' field.
11249
11250         * appdomain.c: Bump corlib version.
11251
11252         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
11253
11254         * reflection.c (mono_reflection_create_runtime_class): Remove the
11255         AssemblyBuilder.Save optimization since it causes too many problems.
11256
11257 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
11258
11259         * exception.c|h: Added mono_get_exception_reflection_type_load to
11260         create a ReflectionTypeLoadException object.
11261         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
11262         to return NULL is a InheritanceDemand fails during reflection. Updated
11263         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
11264         ReflectionTypeLoadException if an InheritanceDemand fails during 
11265         reflection. Added icall mapping for GetLinkDemandSecurity.
11266         * security-manager.c|h: Added ves_icall_System_Security_
11267         SecurityManager_GetLinkDemandSecurity internal call to return the
11268         class and methods permissions set for a LinkDemand. Removed unused
11269         fields in MonoSecurityManager.
11270
11271 2005-03-10  Martin Baulig  <martin@ximian.com>
11272
11273         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
11274         it's a generic instance.
11275
11276 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
11277
11278         * reflection.c (mono_get_object_from_blob): Applied patch from
11279         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
11280
11281         * class.c (mono_class_is_assignable_from): Another try at fixing 
11282         #73469 without breaking anything.
11283
11284 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
11285
11286         * class.c: (mono_class_is_assignable_from): Revert the last changes
11287         since they don't work with generics.
11288         
11289         * class.c (mono_class_is_assignable_from): Fix build bustage.
11290
11291         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
11292         the managed IsAssignableFrom method. Fixes #73469.
11293
11294         * reflection.c (mono_reflection_call_is_assignable_from): New helper
11295         function.
11296
11297 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
11298
11299         * object.c (mono_load_remote_field_new): Fix returning uninitialized
11300         memory when the remoting callback does not sets the out arguments.
11301         Fixes #73007.
11302
11303         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
11304         by mistake.
11305
11306         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
11307
11308         * object-internals.h (MonoStackFrame): Sync with managed object layout.
11309
11310         * appdomain.c: Bump corlib version.
11311
11312 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
11313
11314         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
11315         function.
11316
11317         * threads.c (mono_thread_attach): Detect threads which are not started
11318         by the GC pthread wrappers.
11319
11320 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
11321
11322         * icall.c: Added new icall for RNG.
11323         * rand.c|h: Added new icall to open the RNG. This allows to share a 
11324         single handle on Linux to access /dev/urandom and fix #73183.
11325
11326 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
11327
11328         * object.c: setting the new vtable in a transparent proxy object must
11329         not change the GC descriptor.
11330
11331 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
11332
11333         * object.c: fixed compilation without GCJ support.
11334         * reflection.c: for runtime-created types ensure klass->has_references
11335         is correct (bug #73215).
11336
11337 2005-03-02  Martin Baulig  <martin@ximian.com>
11338
11339         * class.c (mono_class_is_assignable_from): Make this work if
11340         `oklass' is a generic instance; fixes #72831.
11341
11342 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
11343
11344         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
11345         with hasthis set.
11346         
11347         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
11348
11349         * marshal.c: Reorganize native->managed marshalling code to also use
11350         the emit_marshal_... functions.
11351
11352 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
11353
11354         * object.c: typed allocs have issues with bitmap sizes > 30,
11355         so check for max_set >= 30.
11356
11357 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
11358
11359         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
11360         managed code. Fixes #73012.
11361
11362         * metadata.h (MonoMarshalSpec): Add elem_mult field.
11363
11364         * metadata.c reflection.c: Load/Emit elem_mult as well.
11365         
11366         * metadata.h (MonoMarshalSpec): Add comment.
11367
11368         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
11369
11370         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
11371         num_elem to -1 if not given.
11372
11373         * object-internals.h (MonoReflectionMarshal): Add has_size field.
11374
11375         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
11376         given values.
11377
11378 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
11379
11380         * null-gc.c (mono_gc_free_fixed): Was not compilable.
11381
11382 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
11383
11384         * reflection.c (encode_marshal_blob): Encode param_num field as well.
11385
11386         * object-internals.h (MonoReflectionMarshal): Add param_num field.
11387
11388 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
11389
11390         * object.c: generalized the reference bitmap creation
11391         and added hooks for the new GC.
11392         * class-internals.c: removed the gc_bitmap field from MonoClass.
11393
11394 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
11395
11396         * domain.c: help the compiler to produce better code
11397         in mono_jit_info_table_find ().
11398
11399 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
11400
11401         * object.c: make all allocations look typed.
11402
11403 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
11404
11405         * socket-io.c: load Mono.Posix if it's not loaded already
11406         (fixes bug#73033).
11407
11408 2005-02-24  Martin Baulig  <martin@ximian.com>
11409
11410         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
11411         * reflection.c (dup_type): Likewise.
11412
11413 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
11414
11415         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
11416         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
11417
11418 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
11419
11420         * domain.c, threads.c, object-internals.h: make the critical thread
11421         local vars use the fast access mode (even when we're compiled in
11422         a lib). Provide accessors to be used by the jit during codegen.
11423
11424 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11425
11426         * appdomain.c: Changed hook functios behavior to include
11427         support for the reflection only assemblies. Some icalls were changed
11428         to support the mentioned assemblies too. Signatures of static methods
11429         try_assembly_resolve and real_load now have an additional parameter:
11430         refonly.
11431
11432         * assembly.c: General changes to mono_assembly_ methods to support
11433         reflection only api. Functions mono_assembly_open, mono_assembly_load,
11434         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
11435         suffix, to support an additional gbool parameter to specify whether
11436         the assembli is reflection only or not. Created some new hook functions 
11437         to add support for reflection only assemblies. Signatures of static 
11438         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
11439         have now an additional parameter: refonly.
11440
11441         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
11442         indicating whether the assembly is reflection only or not.
11443
11444         * exception.c: Add mono_get_exception_invalid_operation.
11445
11446         * icall.c: Throw an InvalidOperationException when trying to invoke
11447         a property/method/event, or trying to set/get the value of a field.
11448         Also add an icall to retrieve the ref_only flag to the
11449         MonoReflectionAssembly.
11450
11451 2005-02-23  Chris Toshok  <toshok@ximian.com>
11452
11453         Part of fix for #72827.
11454         * mono-debug.c (mono_debug_add_method): add lexical block data to
11455         the info we write.  Kind of a hack at the moment - we copy the
11456         lexical block info from the MonoDebugMethodInfo to the
11457         MonoDebugMethodJitInfo here, before writing it.
11458         (mono_debug_read_method): read the lexical block info.
11459
11460         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
11461
11462         * debug-mono-symfile.h: add lexical block support.
11463
11464         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
11465         support.
11466
11467 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
11468
11469         * loader.c (mono_lookup_pinvoke_call): Fix warning.
11470
11471         * object.c (mono_runtime_free_method): Call mono_free_method () and
11472         put the TODOs there.
11473
11474         * loader.c (mono_free_method): Free up most memory allocated for 
11475         dynamic methods.
11476
11477 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
11478
11479         * reflection.c: properly flag a Type argument to a
11480         named custom attr value (bug #72248).
11481
11482 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
11483
11484         * reflection.c: reduce code duplication in named custom
11485         attribute encoding.
11486
11487 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
11488
11489         * reflection.c: properly encode custom attrs of type object
11490         (bug #72649).
11491
11492 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
11493
11494         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
11495
11496 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
11497
11498         * socket-io.c: load System.dll if it's not loaded already
11499         (bug #72850 and #70477).
11500
11501 2005-02-21  Martin Baulig  <martin@ximian.com>
11502
11503         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
11504         generic instances.
11505
11506 2005-02-21  Martin Baulig  <martin@ximian.com>
11507
11508         * reflection.c (mono_image_build_metadata): We also need to
11509         "fixup" the MethodImpl table after we computed the final method
11510         indices.  Call fixup_methodimpl() to do that.
11511         (fixup_methodimpl): New private method.
11512
11513 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
11514
11515         * assembly.c: special case mscorlib.dll (bug#72536),
11516         patch from Carlos Alberto Cortez.
11517
11518 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
11519
11520         * threads-types.h threads.c: Fix build bustage.
11521
11522         * threads.c: Use a union for long<->double conversions.
11523
11524         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
11525         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
11526
11527         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
11528         containing the checkpoint call with NOT_TAKEN.
11529         
11530         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
11531         checkpoint before pushing the arguments, so they won't have to be
11532         spilled to stack.
11533
11534 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
11535
11536         * domain.c, assembly.c, domain-internals.h: make some data
11537         const and relocation-free.
11538
11539 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
11540
11541         * object.c, appdomain.c, class-internals.h: introduce the
11542         MonoClassRuntimeInfo structure to hold the info needed to
11543         use a class at runtime. Made mono_class_vtable() lock-free
11544         for all the appdomains.
11545
11546 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
11547
11548         * metadata-internals.h, image.c: introduce a per-image mempool to
11549         be used for memory that has the same lifetime as the image.
11550
11551 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
11552
11553         * domain.c: In mono_init_internal(), instead of selecting the first
11554         runtime version supported by an executable, get a list of all
11555         supported versions and select the one for which an mscorlib exists
11556         (since even if the runtime supports a given version, it doesn't mean
11557         that the framework for that version is installed).
11558         Modified get_runtimes_from_exe to support this behavior.
11559         In supported_runtimes, added information about additional system
11560         assembly versions.
11561         
11562         * assembly.c: Added support for more than one system assembly version
11563         per runtime version. Updated the assembly list.
11564         In mono_assembly_remap_version, removed the initial version check,
11565         since we don't know to which version we need to compare until we
11566         get the version set on which the assembly is based.
11567         Moved the code for loading corlib into the new method
11568         mono_assembly_load_corlib(), so it can be used by the initialization
11569         code.
11570         
11571         * domain-internals.h: Updated data structures and added declaration
11572         for mono_assembly_load_corlib.
11573
11574 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
11575
11576         * reflection.c (resolve_object): Fix the creation of the signature in 
11577         the SignatureHelper case.
11578
11579         * assembly.c (mono_assembly_remap_version): Fix binary search.
11580         
11581 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
11582  
11583         * class.c: Added inheritance check when a method is overloaded (from a
11584         virtual method or when implementing an interface) and when a class is
11585         inherited. Added functions to set a failure for a class and to 
11586         retreive the exception from a failure.
11587         * class-internals.h: Added fields to MonoClass to keep the exception
11588         information status for inheritance (or other exceptions) to be thrown
11589         later (i.e. not at load time).
11590         * object.c: Throw the inheritance SecurityException when a type is to 
11591         be created with either class or method inheritance violations.
11592         * reflection.c|h: Fix when getting declsec from a class. Removed 
11593         unrequired code for class. Improved sanity in parameter naming.
11594         * security-manager.c|h: Added functions to check for class and method
11595         inheritance.
11596
11597 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
11598
11599         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
11600         and has_finalize in dynamic types as well.
11601
11602 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
11603
11604         * culture-info-table.h : fixed currency format for en-GB (and so on).
11605
11606 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
11607
11608         * gc.c: ensure the GC handles never have 0 as a value.
11609
11610 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
11611
11612         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
11613         a pointer to a struct to unmanaged code. Fixes #72625.
11614
11615 2005-02-16  Martin Baulig  <martin@ximian.com>
11616
11617         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
11618
11619 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
11620
11621         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
11622
11623 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
11624
11625         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
11626
11627         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
11628         UnmanagedFunctionPointerAttribute, use it for determining calling convention
11629         etc. Fixes #71471.
11630
11631         * reflection.c (mono_custom_attrs_get_attr): New helper function.
11632
11633         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
11634
11635 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
11636
11637         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
11638         changes to make the current context a field in MonoThread.
11639
11640 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
11641
11642         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
11643         the last change.
11644         
11645         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
11646         extracted from mono_marshal_get_native_wrapper.
11647
11648         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
11649         to create wrappers around native functions.
11650
11651         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
11652         delegates for arbitrary function pointers. Fixes #71472.
11653
11654 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
11655
11656         * threads.c: cleaned up the code a little.
11657
11658 2005-02-15  Martin Baulig  <martin@ximian.com>
11659
11660         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
11661         the data table.
11662
11663         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
11664         allocate larger chunks if needed.
11665
11666 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
11667
11668         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
11669         in by mistake.
11670
11671 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
11672
11673         * domain.c: keep the domains in an array and ensure the domain ids
11674         are kept small, so they can be used as indexes to domain-specific data
11675         with a small memory overhead.
11676
11677 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
11678
11679         * icall.c: Handle byref types in Type icalls. Fixes #72544.
11680
11681 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
11682
11683         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
11684
11685 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
11686
11687         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
11688
11689         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
11690         values.
11691
11692         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
11693         
11694 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
11695
11696         * domain-internals.h: add the hashtable here.
11697
11698         * class-internals.h: Remove `info' from MonoMethod
11699
11700         * domain.c: Add a new hashtable, jit_trampoline_hash
11701
11702 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
11703
11704         * object.c: don't set the value of static fields
11705         (fixes bug#72494).
11706
11707 2005-02-11  Martin Baulig  <martin@ximian.com>
11708
11709         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
11710         (mono_debug_add_method): Silently ignore the method if it's too big.
11711         (mono_debug_add_type): Likewise.
11712
11713 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
11714
11715         * threads.c, appdomain.c: remove #ifdefs from the code.
11716
11717 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
11718
11719         * metadata-internals.h: Added flags to MonoAssembly to cache the most
11720         common security informations. This allows us to stay in unmanaged code
11721         when doing LinkDemand and it's special cases (except for the first 
11722         time for initialization). The flags a very much used with --security.
11723         * reflection.c|h: Added code to get declarative security attributes 
11724         for LinkDemand and InheritanceDemand. This required to refactor the
11725         existing code for Demand.
11726         * security-manager.c|h: Added new method fields for the special cases
11727         of LinkDemand.
11728
11729 2005-02-10  Martin Baulig  <martin@ximian.com>
11730
11731         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
11732         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
11733
11734 2005-02-10  Martin Baulig  <martin@ximian.com>
11735
11736         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
11737         debugging code; this is almost a complete rewrite.
11738
11739         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
11740
11741 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
11742
11743         * domain.c, object.h: expose mono_string_equal () and 
11744         mono_string_hash ().
11745         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
11746         it's implemented in managed code.
11747
11748 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
11749
11750         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
11751         lo leak objects between appdomains.
11752
11753 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
11754
11755         * assembly.c: old compilers compilation fix from 
11756         robertj@gmx.net (Robert Jordan).
11757
11758 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
11759
11760         * class-internals.h: Little reminder for the future.
11761
11762         * debug-helpers.c: Fix up wrapper_type_names
11763
11764 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
11765
11766         * image.c, metadata-internals.h: when loading an image from a file,
11767         mmap all of it and use the same codepaths as when using a
11768         in-memory image: the code is simpler and we use less memory
11769         (both writable and readonly).
11770
11771 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
11772
11773         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
11774         API to alloc runtime data structures that need to be tracked by the
11775         GC and contain pointers.
11776         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
11777         make the code more readable and eventually use a different GC.
11778
11779 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
11780
11781         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
11782         for out arguments.
11783         
11784 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
11785
11786         * object.c: In release_type_locks(), don't release the cctor lock
11787         if it has already been released. This fixes a crash in the
11788         thread5 test.
11789
11790 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
11791
11792         * gc.c, marshal.c, icall.c: register a delegate for finalization
11793         only when the native function pointer has been allocated for it.
11794
11795 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
11796
11797         * object.c: cleaned up some code, allocate objects that are
11798         pointer free with the atomic malloc variant. Allocate memory
11799         for static data from the mempool if it's pointer-free.
11800         Allocate the bounds array at the end of the array data, when needed.
11801         * object-internals.h, object.h: move a private function in a private
11802         header.
11803         * class.c: handle missing case in tracking references in fields.
11804
11805 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
11806
11807         * class.c, class-internals.h: keep track if a type has
11808         reference fields in either the instance or static fields.
11809
11810 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
11811
11812         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
11813         and renamed to MonoRuntimeInfo. Added fields to store the expected
11814         framework assembly version. Changed mono_get_framework_version and
11815         mono_get_runtime_version for a single mono_get_runtime_info method.
11816         
11817         * assembly.c: Added method to remap system assembly versions to the
11818         current executing runtime version. Removed old mapping code.
11819         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
11820         
11821         * icall.c, reflection.c: Track api changes.
11822
11823 2005-02-06  Miguel de Icaza  <miguel@novell.com>
11824
11825         * loader.c (method_from_memberref): Improve error reporting,
11826         produce the class name instead of the typeref/typedef index. 
11827
11828 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
11829
11830         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
11831
11832 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
11833
11834         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
11835         stdcall and charset name mangling.  Reorganize the code and add
11836         some tracing stuff.
11837
11838 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
11839
11840         * monodiet.c: More iters!
11841
11842         * marshal.c: Iter usage.
11843
11844         * icall.c: Iter usage.
11845
11846         * object.c: Use iters.
11847
11848         * debug-helpers.c: More iters
11849
11850 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
11851
11852         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
11853         under win32.
11854
11855 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
11856
11857         * mono-debug-debugger.c: use iters
11858
11859         * class.c, class-internals.h: mono_class_setup_events is static
11860         now
11861
11862         * All callers: use iters
11863
11864 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
11865
11866         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
11867         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
11868
11869 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
11870
11871         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
11872
11873         * marshal.h: Add prototypes for ldfld/stfld_remote.
11874
11875         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
11876         this is called during startup.
11877         
11878 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
11879
11880         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
11881         MonoThreadsSync struct private in monitor.c. Changed the way
11882         MonoThreadsSync is allocated so it's faster and there is no
11883         need to keep track of it with a finalizer and it uses less memory.
11884         This also finally allows us to allocate mono objects as ptrfree when
11885         there are no reference fields.
11886
11887 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
11888
11889         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
11890         disappearing link to the GC interface and use them to simplify
11891         the gchandles code.
11892
11893 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
11894
11895         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
11896         stfld_remote which call mono_load/store_field_new. This allows methods
11897         calling ldfld/stfld wrappers to be AOTed.
11898
11899         * console-io.c: Include sys/filio.h under solaris.
11900         
11901         * console-io.c: Include curses.h if needed correctly.
11902
11903 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
11904         
11905         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
11906         method->klass as well.
11907
11908         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
11909
11910         * class.c (mono_class_init): Switch on lazy initialization of 
11911         methods.
11912
11913         * class.c (mono_class_get_finalizer): Handle the case when the 
11914         finalizer is inherited.
11915
11916 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11917
11918         * console-io.c: <curses.h> is needed by term.h on solaris.
11919
11920 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
11921
11922         * icall.c, class-internals.h, monodiet.c, class.c: Remove
11923         mono_class_setup_properties where possible. Remove this ftn from
11924         the header file, and make it static.
11925
11926 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
11927
11928         * loader.c: Add missing setup_... call.
11929
11930         * class.c: Add missing setup_... calls.
11931
11932         * class.c (mono_class_init): Switch on lazy initialization of 
11933         the generic vtable.
11934         
11935         * class.c (mono_class_init): Fix generics broken by the recent changes.
11936
11937         * monodiet.c (handle_type): Add missing setup_... calls.
11938
11939         * class.c: Back out garbage in previous patch.
11940         
11941         * class.c: Add missing setup_... calls.
11942
11943         * class.c (mono_class_get_method_from_name_flags): Avoid calling
11944         mono_class_setup_methods () if possible.
11945
11946         * class-internals.h (MonoClass): Add 'has_cctor' flag.
11947
11948         * class-internals.h (MonoCachedClassInfo): New structure.
11949
11950         * class.c: Initialize properties and events fields of MonoClass lazily.
11951
11952         * class.c: Add infrastructure for lazily initializing the methods and
11953         vtable fields of MonoClass. Not yet used.
11954
11955         * class.c (mono_class_get_finalizer): New helper function.
11956
11957         * class.c: Add infrastructure for loading some class related data from
11958         an AOT file.
11959
11960         * object.c: Add infrastructure for initializing the vtable from data
11961         in the AOT file.
11962
11963         * gc.c (run_finalize): Use mono_class_get_finalizer ().
11964
11965         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
11966         appropriate initialization function before accessing parts of the
11967         MonoClass structure.
11968
11969         * marshal.c: Fix warnings.
11970         
11971         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
11972
11973         * mono-debug-debugger.c (get_exception_message): Use 
11974         mono_class_get_method_from_name_flags ().
11975
11976 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
11977
11978         * reflection.c, appdomain.c: Replace a few manual searches that
11979         Zoltan missed. (Paolo approved this part of my initial patch).
11980
11981 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
11982
11983         * profiler.c: disable recording statistical events at report time.
11984
11985 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
11986
11987         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
11988         to byteswap arrays of enum values, too (bug #72080).
11989
11990 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
11991
11992         * appdomain.c (set_domain_search_path): Allow this to be called if
11993         domain->setup is not yet set.
11994
11995         * loader.c (mono_method_get_index): New helper function.
11996
11997         * loader.c reflection.c: Use mono_method_get_index ().
11998
11999         * class.c (mono_class_get_method_from_name_flags): New helper method.
12000
12001         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
12002         this.
12003
12004         * class.c (mono_class_get_cctor): New helper method.
12005
12006         * string-icalls.c object.c class.c marshal.c reflection.c: Use
12007         mono_class_get_method () to look up methods.
12008
12009 2005-02-01  Miguel de Icaza  <miguel@novell.com>
12010
12011         * console-io.c: Fix the build, this should work on Windows.
12012
12013 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
12014
12015         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
12016         be set to null to keep things valid
12017
12018 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12019
12020         * icall.c: added Console 2.0 icalls.
12021         * Makefile.am: added console-io.[ch]
12022         * console-io.[ch]: internal calls for Console 2.0 API.
12023
12024 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
12025
12026         * class.c: make sure we consider all the interfaces
12027         when calculating max_interface_id (bug found by
12028         Jeroen Frijters running ikvm).
12029
12030 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
12031
12032         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
12033         valuetype fields to null.
12034
12035         * object.c (set_value): Ditto. Fixes #71669.    
12036
12037 2005-01-31  Martin Baulig  <martin@ximian.com>
12038
12039         * metadata.c (mono_metadata_has_generic_params): New public
12040         function; checks whether something is a generic method.
12041
12042 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
12043
12044         * appdomain.c: fix infinite recursion when adding assemblies.
12045
12046 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
12047
12048         * object.c: Fix small typo to return all items for Environment.
12049         GetCommandLineArgs.
12050
12051 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
12052
12053         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
12054         reflection.c: more domain and assembly-unload related fixes
12055         and memory leaks plugs.
12056
12057 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
12058
12059         * class.c loader.c security.c loader.h process.c threads.c mono-debug-debugger.c profiler.c marshal.c rand.cpedump.c: Fix 64 bit warnings.
12060
12061 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
12062
12063         * loader.c (mono_method_signature): Make this method lazy
12064         (mono_get_method_from_token): Don't computate the signature here.
12065
12066         Doing this saves quite a bit of memory. I got 90 kb on starting up
12067         monodoc. It should also save some disk reads on startup.
12068
12069         * *: MonoMethod->signature might be NULL now. You *MUST* use
12070         mono_method_signature.
12071
12072 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
12073
12074         * object.c (mono_runtime_get_main_args): Return an array from the
12075         current domain here. Fixes #71938.
12076
12077 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
12078
12079         * monitor.c: formatting changes to comply with the
12080         mono coding style and remove #ifdefs from the code.
12081
12082 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
12083
12084         * metadata.c, private.h: remove some unneeded data
12085         and use a more compact representation for table schemas.
12086
12087 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
12088
12089         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
12090         to get a better distribution in hash tables.
12091         * *.c: use mono_aligned_addr_hash() where appropriate.
12092         * assembly.c: make var static.
12093
12094 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
12095
12096         * domain-internals.h: Put MonoJitInfo on a diet.
12097
12098         * domain.c: Fix a warning.
12099
12100 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
12101
12102         * gc.c: rework the gc handles code to reuse handles
12103         when freed.
12104
12105 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
12106
12107         * domain.c: fixed long standing bug in mono_string_equal() which
12108         was brought to light with the ldstr changes.
12109
12110 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
12111
12112         * reflection.c: Remove warning by adding missing include for marshal.h
12113
12114 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
12115
12116         * domain.c, object.c: change the ldstr_table to hold
12117         MonoString* as keys: makes the runtime isinterned lookup
12118         faster and simplifies memory management.
12119
12120 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
12121  
12122         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
12123         possible to add imperative security checks before calling the icall.
12124         * reflection.c: Return security attributes on the original MonoMethod
12125         (and not the wrapped one). This fix permissions on icalls.
12126
12127 2005-01-25  Dick Porter  <dick@ximian.com>
12128
12129         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
12130         the check for mktime() support actually test the mktime() return
12131         value.  "Fixes" bug 71682, though the output is still different to
12132         MS.
12133
12134 2005-01-25  Martin Baulig  <martin@ximian.com>
12135
12136         * class.c (mono_class_is_assignable_from): Make this work for
12137         generic instances.
12138
12139 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
12140
12141         * marshal.c (mono_string_utf8_to_builder)
12142         (mono_string_builder_to_utf16): We might not have ownership of the
12143         string. In thise case, we need to create a new buffer.
12144
12145         * object-internals.h (mono_stringbuilder_capacity): sb->str might
12146         be null, in which case, use the default capacity.
12147
12148 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
12149
12150         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
12151         GC events to the profiler.
12152
12153 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
12154
12155         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
12156         if you don't want the GC to run.
12157
12158 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
12159
12160         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
12161         start providing a GC API and keeping different implementations in
12162         their own file.
12163         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
12164
12165 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
12166
12167         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
12168         mmap rather than allocating a huge buffer.
12169         (mono_debug_close_mono_symbol_file): Free the buffer allocated
12170         above.
12171
12172 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
12173
12174         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
12175         and CheckExecutionRights.
12176         * reflection.c|h: Keep the index of the declarative security to be 
12177         used, instead of the pointer, when AOT compiler is used. Also add 
12178         class initialization when requesting demands.
12179         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
12180         CheckExecutionRights. Both properties are now FALSE by default, and
12181         unmodifiable, unless the --security option is used.
12182
12183 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
12184
12185         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
12186         reflection.c: properly refcount images and assemblies, many leaks fixed.
12187
12188 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12189
12190         * threadpool.c: increase the timeout for threads in the thread pool to
12191         10s.  Fixes bug #67159.
12192
12193 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
12194
12195         * class-internals.h: Sun's compiler insists on explicit
12196         signed on bit fields to handle then correctly.
12197
12198 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
12199
12200         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
12201         Make the size of the array fit only the number of invalid path
12202         chars that we have.
12203
12204         * class.c (_mono_class_get): Improve the error reporting when a
12205         class referenced is not found, to assist debugging. 
12206
12207 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
12208
12209         * threads.c: fix off-by-one error.
12210         * domain.c: free data allocated in the domain.
12211
12212 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
12213
12214         * reflection.c (mono_method_body_get_object): Fill out exception info
12215         as well.
12216
12217         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
12218         structure.
12219         
12220 2005-01-19  Martin Baulig  <martin@ximian.com>
12221
12222         * loader.c (mono_get_method_constrained): Make this work again.
12223
12224 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
12225
12226         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
12227         guint16 to match the managed side.
12228
12229         * reflection.c (mono_reflection_body_get_object): Fill out local
12230         variables array.
12231
12232         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
12233         as well.
12234
12235         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
12236         'local_var_sig_token'.
12237
12238 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
12239
12240         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
12241         System.Drawing.
12242
12243         * reflection.c (mono_method_body_get_object): Handle abstract and
12244         runtime methods.
12245
12246 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
12247
12248         * marshal.c, loader.c, class-internals.h, reflection.c:
12249         store the emthod data for a wrapper in an array instead of a list.
12250
12251 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
12252
12253         * marshal.c: change the code to allocate memory more
12254         conservatively for method wrappers.
12255
12256 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
12257
12258         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
12259         fields from MonoClass to the marshal info structure where they belong.
12260
12261 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
12262
12263         * class.c, object.c, class-internals.h, marshal.c: rearrange
12264         some fields and tweak some types to lower memory usage.
12265
12266 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
12267
12268         * threads.c (signal_thread_state_change): Handle the case when the
12269         target thread is the current thread.
12270
12271         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
12272
12273         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
12274         emit_ptr_to_object_conv. 
12275
12276         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
12277         marshalling. Fixes #71352.
12278
12279 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
12280
12281         * metadata.h, blob.h: move table enum to blob.h so it can be included
12282         in any header.
12283         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
12284         cut the size of MonoImage/MonoDynamicImage.
12285
12286 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
12287
12288         * profiler.c (mono_profiler_install_simple): Fix default arguments.
12289
12290 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
12291
12292         * reflection.c, reflection.h, icall.c: add a function to check
12293         if an attribute type is defined for a metadata object.
12294
12295 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
12296
12297         * object-internals.h: Added some needed fields from StringBuilder class.
12298         * marshal.c: Set the maxCapacity when creating a StringBuilder.
12299
12300 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
12301
12302         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
12303         threads before shutting down the runtime.
12304
12305         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
12306
12307 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
12308
12309         * object-internal.h, threads.c: implement stacksize and 
12310         parameterized thread start functionality (requires
12311         matching corlib). Marked broken code for later removal.
12312
12313 2005-01-12  Martin Baulig  <martin@ximian.com>
12314
12315         * class-internals.h (MonoGenericClass): Moved the `initialized'
12316         flag to MonoDynamicGenericClass, removed `init_pending'.
12317         (MonoGenericInst): Added `is_reference' flag.
12318
12319 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
12320
12321         * reflection.c (mono_image_create_pefile): Only set the pe_offset
12322         inside the MSDOS header. Fixes #71201.
12323
12324         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
12325         gc thread.
12326         (mono_domain_finalize): Ditto.
12327
12328 2005-01-12  Martin Baulig  <martin@ximian.com>
12329
12330         * class.c (mono_get_shared_generic_class): Use the cache for
12331         non-dynamic generic classes.
12332
12333         * class-internals.h (mono_class_create_generic_2): Removed
12334         function prototype, this function is now static inside class.c.
12335
12336         * class.c (mono_class_create_generic_2): Made this static, only
12337         call it from mono_class_init() and mono_class_setup_parent().
12338         (collect_implemented_interfaces_aux): Call mono_class_init() on
12339         the interfaces we collect.
12340         (mono_class_setup_vtable): Call mono_class_init (class->parent).
12341
12342 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
12343
12344         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
12345         it a real thread handle.
12346
12347         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
12348         MonoJitExceptionInfo, since each catch clause needs its own variable.
12349         
12350 2005-01-11  Dick Porter  <dick@ximian.com>
12351
12352         * image.c (mono_pe_file_open): New variant on mono_image_open()
12353         that does not set up the CLI metadata; used for FileVersionInfo so
12354         it can get the data for windows binaries too.
12355         
12356         * process.c (process_read_string_block): Don't read off the end of
12357         the StringTable block.
12358
12359         These both fix bug 70766.
12360
12361 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
12362
12363         * gc.c: set some fields to NULL at GC cleanup time.
12364         * threads.c: if we quit the main thread, call exit ().
12365
12366 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
12367
12368         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
12369
12370 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
12371
12372         * threads.h, threads.c, object.c: added accessor and settor for
12373         main_thread. Handle it specially when exiting from it: wait
12374         for other foreground threads to exit.
12375
12376 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
12377
12378         * process.c, verify.c: remove some bloat.
12379
12380 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
12381
12382         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
12383         the calling convention to cdecl under win32.
12384
12385 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
12386
12387         * object.c (mono_object_get_size): New function to get the size of
12388         an object instance.
12389
12390         * profiler.c (simple_allocation): Use above.
12391
12392 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
12393
12394         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
12395         ves_icall_System_AppDomain_getRootDomain (as it's not required to
12396         get an appdomain by it's id and we can't assume the root's id is 0).
12397         * domain-internals.h: Change the function prototype to match.
12398         * icall.c: Change the icall table for AppDomain.
12399
12400 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
12401
12402         * locales.c (string_invariant_compare_char): Only compute
12403         GUnicodeTypes in the case where we need them.  Test for ordinality
12404         first and return if so.
12405
12406         From the commit:
12407
12408                 /*
12409                  * FIXME: here we must use the information from c1type and c2type
12410                  * to find out the proper collation, even on the InvariantCulture, the
12411                  * sorting is not done by computing the unicode values, but their
12412                  * actual sort order.
12413                  */
12414
12415 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
12416
12417         * loader.c: for P/Invoke methods, allow the "Internal" shared
12418         library name to refer to the calling process symbol namespace.
12419
12420 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
12421
12422         * Makefile.am: Add the security manager to the build.
12423         * security-manager.c|h: New. Initialization of the security manager.
12424
12425 2005-01-07  Dick Porter  <dick@ximian.com>
12426
12427         * threads.c: 
12428         * monitor.c: Update thread state during Monitor and WaitHandle
12429         waits.  Fixes bug 71031.
12430
12431 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
12432
12433         * reflection.c (property_encode_signature): Correctly handle when the
12434         property has no methods.
12435
12436 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
12437
12438         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
12439         
12440         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
12441         fields from mb, not rmb. Fixes #71017.
12442
12443         * marshal.c (emit_ptr_to_str_conv): Add support for 
12444         ByValTStr -> string conversion. Fixes #71015.
12445
12446         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
12447
12448         * mempool.c (mono_mempool_contains_addr): New helper function.
12449
12450 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
12451
12452         * metadata.c (mono_metadata_compute_size): Fix size calculation of
12453         HasSematics encoded fields.
12454         
12455         * metadata.c (mono_type_to_unmanaged): Improve error message for 
12456         invalid string marshalling.
12457
12458         * metadata.c: Fix warnings.
12459         
12460 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
12461
12462         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
12463         profiler support.
12464
12465 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
12466
12467         * domain.c object.c domain-internals.h: Revert part of r38077 since the
12468         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
12469         tests.
12470
12471 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
12472
12473         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
12474         so methods containing these can be AOTed.
12475
12476 2005-01-03  Martin Baulig  <martin@ximian.com>
12477
12478         * loader.c (find_method): Removed the hack for generic instances.
12479         (method_from_memberref): If our parent is a generic instance, pass
12480         its generic type definition to find_method() and then inflate the
12481         method.
12482         (mono_get_method_constrained): Pass the generic type definition to
12483         find_method() and inflate the method later.
12484
12485         * class-internals.h (MonoStats): Added `generic_class_count'.
12486
12487         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
12488         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
12489
12490         * reflection.c (mono_custom_attrs_from_params): Don't ignore
12491         generic type definitions.
12492
12493 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
12494
12495         * loader.c icall.c: Fix warnings.
12496
12497 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
12498
12499         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
12500         blittable types. Fixes #70864.
12501
12502 2004-12-29  Martin Baulig  <martin@ximian.com>
12503
12504         * icall.c
12505         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
12506
12507         * reflection.c (mono_method_get_object): Create a
12508         "System.Reflection.MonoGenericMethod" for inflated methods; don't
12509         call mono_get_inflated_method().
12510
12511         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
12512
12513 2004-12-27  Martin Baulig  <martin@ximian.com>
12514
12515         * class-internals.h (MonoMethod): Added `is_inflated' flag.
12516         (MonoMethodInflated): Added `inflated' field.
12517
12518         * class.c (mono_class_inflate_generic_method): Don't really
12519         inflate the method here; just set the `is_inflated' flag in the
12520         MonoMethod.
12521         (mono_class_get_inflated_method): Actually inflate the method here
12522         if it's not already inflated; we use the MonoMethodInflated's new
12523         `inflated' field as a cache.
12524
12525 2004-12-26  Martin Baulig  <martin@ximian.com>
12526
12527         * class.c
12528         (inflate_generic_class): Moved some code out of inflate_generic_type().
12529         (mono_class_inflate_generic_method): If we're already inflated,
12530         inflate the context and use the declaring method; ie. make sure
12531         the declaring method of an inflated method is always the generic
12532         method definition.
12533         (mono_class_create_from_typedef): Create
12534         `class->generic_container->context->gclass'.
12535
12536 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
12537
12538         * metadata-internals.h, marshal.c, reflection.c: More
12539         MonoGHashTable->GHashTable.
12540
12541         * domain-internals.h, class.c: Change MonoGHashTable's into
12542         GHashTables for some cases where no gc stuff is used
12543
12544         All users: update apis
12545
12546 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
12547
12548         * metadata.c (builtin_types): Make this `const'. Makes this get
12549         put into the shareable section.
12550         (mono_metadata_init): Casts to make gcc happy.
12551
12552 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
12553
12554         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
12555
12556 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
12557
12558         * icall.c: Added an internal call to retrieve the position and length
12559         of assembly-level declarative security attributes (RequestMinimum, 
12560         RequestOptional and RequestRefuse). This is used by the Assembly class
12561         to re-create the corresponding permission sets.
12562
12563 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
12564
12565         * marshal.c: fix the stelemref wrapper to be type correct
12566         (and faster).
12567
12568 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
12569
12570         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
12571         to do key & 0x7fffffff. Hashtable already does this. It just
12572         results in longer code.
12573
12574 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
12575
12576         * appdomain.c: Bump corlib version.
12577         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
12578         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
12579         * reflection.c|h: Add functions to get declarative security infos
12580         (blob position and length) for assemblies, classes and methods.
12581
12582 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
12583
12584         * reflection.c: sort the constant table (bug #70693).
12585
12586 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
12587
12588         * object-internals.h, threads.c, domain.c: add accessors for
12589         the MonoThread and MonoDomain tls keys.
12590
12591 2004-12-18  Martin Baulig  <martin@ximian.com>
12592
12593         * class.c (inflate_generic_type): If we're inflating a generic
12594         instance, set `ngclass->context->container = context->container';
12595         ie. the container we inflated into.
12596
12597         * metadata.c (mono_metadata_parse_generic_param): Reflect above
12598         inflate_generic_type() changes.
12599
12600 2004-12-17  Martin Baulig  <martin@ximian.com>
12601
12602         * class-internals.h
12603         (MonoGenericClass): Replaced `MonoType *generic_type' with
12604         `MonoClass *generic_class'.  Removed `dynamic_info'; if
12605         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
12606         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
12607
12608 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
12609
12610         * exception.c (mono_exception_from_token): New helper function.
12611
12612 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
12613
12614         * assembly.c (mono_assembly_load_with_partial_name): Call 
12615         mono_assembly_loaded before invoking the preload hooks. Fixes
12616         #70564.
12617
12618         * object-internals.h (MonoThread): Change culture_info and 
12619         ui_culture_info into an array.
12620
12621         * threads.c: Cache culture info objects from more than one appdomain.
12622
12623         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
12624         current UI culture.
12625
12626 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
12627
12628         * threads.h threads.c appdomain.c: Clear the culture_info field of
12629         all threads during unloading if they point to an object in the dying
12630         appdomain.
12631
12632 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
12633
12634         * culture-info.h (TextInfoEntry): New struct
12635         * object-internals.h: sync with managed
12636         * locales.c: fill the `text_info_data' field
12637         * culture-info-tables.h: update
12638
12639 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
12640
12641         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
12642         collector.
12643
12644 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
12645
12646         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
12647         (ves_icall_ModuleBuilder_getMethodToken): Ditto
12648
12649 2004-12-12  Martin Baulig  <martin@ximian.com>
12650
12651         * mono-debug-debugger.c (write_type): If we're an enum and the
12652         builtin types have already been initialized, call mono_class_init().
12653
12654 2004-12-11  Martin Baulig  <martin@ximian.com>
12655
12656         * metadata.c (mono_metadata_load_generic_params): Added
12657         `MonoGenericContainer *parent_container' argument; automatically
12658         compute `container->is_method'; pass the correct owner to
12659         get_constraints().      
12660
12661         * reflection.c (compare_genericparam): Sort the GenericParam table
12662         according to increasing owners. 
12663
12664 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
12665
12666         * profiler.c: allow disabling the default profiler.
12667
12668 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
12669
12670         * decimal.c, icall.c: allow disabling System.Decimal support.
12671
12672 2004-12-09  Marek Safar <marek.safar@seznam.cz>
12673
12674         * reflection.c: Add support for null attribute arguments.
12675
12676 2004-12-09  Martin Baulig  <martin@ximian.com>
12677
12678         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
12679         names to get rid of compiler warnings.
12680
12681 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
12682
12683         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
12684         mono_marshal_load_type_info (). Fixes #69625.
12685         (mono_marshal_get_ptr_to_struct): Likewise.
12686
12687 2004-12-08  Martin Baulig  <martin@ximian.com>
12688
12689         * mono-debug.h: Bumped version number to 47.
12690
12691         * mono-debug-debugger.c
12692         (mono_debugger_event_handler, mono_debugger_event): Take two
12693         guint64 arguments insteed of a gpointer and a guint32.  
12694
12695 2004-12-08  Martin Baulig  <martin@ximian.com>
12696
12697         * debug-mono-symfile.h
12698         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
12699         `address' to `native_offset'.
12700
12701 2004-12-08  Martin Baulig  <martin@ximian.com>
12702
12703         * class.c (mono_class_create_from_typespec): Only inflate if we
12704         either have `context->gclass' or `context->gmethod'.
12705
12706 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
12707
12708         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
12709
12710         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
12711
12712         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
12713
12714         * reflection.c (mono_assembly_get_object): Remove the workaround put
12715         in for the release.
12716         
12717         * appdomain.c: Use the corlib_internal field from MonoAssembly.
12718
12719         * appdomain.c: Bump corlib version.
12720
12721         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
12722         be visible in other appdomains.
12723
12724 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
12725
12726         * threads.c: Interlocked inc and dec for longs were messed up,
12727         use a KISS based impl for this. Fixes 70234
12728
12729 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
12730
12731         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
12732
12733 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
12734
12735         * icall.c: fix to follow policy not to allow struct
12736         arguments in icalls.
12737
12738 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12739
12740         * process.c: make the patch that handles spaces in file paths work
12741         on mono/windows too.
12742
12743 2004-12-06  Martin Baulig  <martin@ximian.com>
12744
12745         * class.c (mono_class_create_generic): Call
12746         mono_class_setup_supertypes() if we're dynamic.
12747         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
12748
12749 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
12750
12751         * object-internals.h: Add new fields to MonoThread.
12752
12753         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12754
12755         * icall.c threads-types.h threads.c: Add new icalls.
12756
12757         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
12758
12759         * object-internals.h (MonoReflectionAssembly): Sync object layout with
12760         managed side.
12761
12762         * appdomain.c: Bump corlib version.
12763
12764         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
12765         internal assemblies. Fixes #69181.
12766
12767 2004-12-05  Martin Baulig  <martin@ximian.com>
12768
12769         * class.c (mono_class_inflate_generic_signature): Make this a
12770         no-op if `context' is NULL or we don't have any type parameters;
12771         also copy `sentinelpos'.        
12772
12773 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
12774
12775         * image.c: Add unbox_wrapper_cache.
12776
12777         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
12778
12779         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
12780         function generator.
12781         
12782         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
12783         Fixes #70173.
12784
12785         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
12786         
12787 2004-12-04  Martin Baulig  <martin@ximian.com>
12788
12789         * loader.c (mono_method_get_signature_full): New public function;
12790         like mono_method_get_signature(), but with an additional
12791         `MonoGenericContext *' argument.
12792
12793         * class.c (mono_class_inflate_generic_signature): Formerly known
12794         as inflate_generic_signature(); make this public.
12795
12796 2004-12-04  Martin Baulig  <martin@ximian.com>
12797
12798         * metadata.c
12799         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
12800         instead of a `MonoGenericContainer *'.  
12801         (mono_metadata_parse_array_full): Likewise.
12802         (mono_metadata_parse_signature_full): Likewise.
12803         (mono_metadata_parse_method_signature_full): Likewise.
12804         (mono_metadata_parse_generic_inst): Likewise.
12805         (mono_metadata_parse_generic_param): Likewise.
12806         (mono_metadata_parse_mh_full): Likewise.
12807         (mono_type_create_from_typespec_full): Likewise.
12808
12809 2004-12-03  Martin Baulig  <martin@ximian.com>
12810
12811         * class-internals.h (MonoGenericContainer): Replaced the
12812         `MonoGenericContext * pointer with a `MonoGenericContext'
12813         structure and made it the first element.
12814
12815 2004-12-03  Martin Baulig  <martin@ximian.com>
12816
12817         * class.c
12818         (inflate_generic_type): Set the `context->container' when creating
12819         a new MonoGenericContext.
12820         (mono_class_inflate_generic_method): Likewise.
12821         (mono_class_create_from_typespec): Just use `context->container'
12822         to get the container.
12823
12824         * loader.c (method_from_methodspec): Set `context->parent' from
12825         `context->container' - and if that's a method container, use its
12826         parent.  Also set the `context->container' when creating a new
12827         MonoGenericContext.
12828         (mono_get_method_from_token): Use just `context->container' to get
12829         the container.
12830
12831         * metadata.c (do_mono_metadata_parse_generic_class): Also set
12832         `gclass->context->container'.
12833
12834         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
12835         the `context->container' when creating a new MonoGenericContext.
12836
12837 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
12838
12839         * reflection.c (compare_genericparam): Sort params with identical
12840         owner by their number. Fixes gen-111 on sparc.
12841
12842 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
12843
12844         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
12845         around the domain changes.
12846
12847         * appdomain.c (mono_domain_unload): Handle the case when the thread
12848         calling Unload is itself being aborted during unloading. Fixes #70022.
12849
12850         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
12851
12852         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
12853         checkpoint_func as an icall so it gets a wrapper.
12854         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
12855         in the cross-appdomain wrappers too.
12856
12857         * threads.c (mono_thread_has_appdomain_ref): Make this public.
12858
12859         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
12860
12861         * reflection.c: Fix some memory leaks.
12862         
12863 2004-12-02  Martin Baulig  <martin@ximian.com>
12864
12865         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
12866
12867         * metadata.c (generic_class_cache): New static hashtable.
12868         (mono_metadata_lookup_generic_class): New public method.
12869
12870 2004-12-02  Martin Baulig  <martin@ximian.com>
12871
12872         * class.c (mono_class_create_from_typedef): Call
12873         mono_class_setup_parent() and mono_class_create_mono_type() before
12874         parsing the interfaces.
12875
12876 2004-12-02  Martin Baulig  <martin@ximian.com>
12877
12878         * metadata.c (generic_inst_cache): New static hashtable.
12879         (mono_metadata_lookup_generic_inst): New public function.
12880         (mono_metadata_inflate_generic_inst): New public function.
12881         (mono_metadata_parse_generic_inst): New public function.
12882         (do_mono_metadata_parse_generic_class): Use the new
12883         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
12884         since this'll also use the cache.
12885
12886         * reflection.c (mono_reflection_bind_generic_method_parameters):
12887         Use mono_metadata_lookup_generic_inst() to use the new cache.
12888
12889         * class.c (inflate_mono_type): Use
12890         mono_metadata_inflate_generic_inst() to inflate a generic
12891         instance; this'll also use the new cache.
12892
12893         * loader.c (method_from_methodspec): Use
12894         mono_metadata_parse_generic_inst() and
12895         mono_metadata_inflate_generic_inst() rather than parsing it
12896         manually, so we can use the new cache.
12897
12898 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
12899
12900         * threads.c (wait_for_tids): Do not incorrectly free threads when 
12901         the wait times out.
12902
12903 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
12904
12905         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
12906         iter->args based on whether parameters are passed in registers (i.e.
12907         MONO_ARCH_REGPARMS is defined)
12908
12909 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
12910
12911         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
12912         the exception message. Fixes #70070.
12913         (method_from_methodspec): Fix warnings.
12914
12915 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12916
12917         * process.c: (complete_path) return the path quoted
12918
12919 2004-12-01  Martin Baulig  <martin@ximian.com>
12920
12921         * class-internals.h (MonoGenericInst): New structure.
12922         (MonoGenericClass): Replaced `type_argc', `type_argv' and
12923         `is_open' with `MonoGenericInst *inst'.
12924         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
12925         `is_open' with `MonoGenericInst *inst'.
12926
12927 2004-11-30  Martin Baulig  <martin@ximian.com>
12928
12929         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
12930
12931         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
12932         to `generic_class_cache'.
12933
12934         * metadata.c
12935         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
12936         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
12937         (mono_generic_inst_is_valuetype): Renamed to
12938         mono_generic_class_is_valuetype().
12939
12940         * class-internals.h
12941         (MonoGenericInst): Renamed to MonoGenericClass.
12942         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
12943         (MonoClass): Renamed `generic_inst' to `generic_class'.
12944         (MonoGenericContext): Renamed `ginst' to `gclass'.
12945
12946         * object-internals.h
12947         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
12948
12949         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
12950         mono_reflection_generic_class_initialize().
12951
12952         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
12953         now known as "System.Reflection.MonoGenericClass".
12954         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
12955
12956 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
12957
12958         * class-internals.h: Added a flag field to MonoClass to cache the
12959         declarative security attributes actions associated with the class.
12960         * domain-internals.h: Added booleans to MonoJitInfo to cache the
12961         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
12962         applicable to the JITted method.
12963         * reflection.c|h: Added functions to extract (as flags) which security
12964         actions are available (declaratively) for a method, class or assembly.
12965         * metadata.c|h: Added functions to search the declarative security
12966         table in the metadata.
12967         
12968 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
12969
12970         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
12971         EXPORTEDTYPES are already in the class name cache, so there is no
12972         need to add extra code here to look at them. Just removes a bit of
12973         cruft.
12974
12975         (ves_icall_System_Environment_get_TickCount): No need for #if
12976         WINDOWS. We already have the code in io-layer.
12977
12978 2004-11-28  Martin Baulig  <martin@ximian.com>
12979
12980         * loader.c
12981         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
12982         Fixes gen-112.cs.
12983
12984 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
12985
12986         * assembly.c (do_mono_assembly_open): Instead of having a
12987         conditional WITH_BUNDLE, incorporate support for bundles here, by
12988         having a global `bundles' variable holding a pointer to the actual
12989         bundles. 
12990
12991         (mono_register_bundled_assemblies): New API call used by the
12992         bundle code. 
12993
12994         See mkbundle.1 for details.
12995         
12996 2004-11-27  Martin Baulig  <martin@ximian.com>
12997
12998         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
12999         the vtable for generic methods.
13000
13001 2004-11-26  Martin Baulig  <martin@ximian.com>
13002
13003         * metadata.c
13004         (mono_metadata_generic_method_hash): New public function.
13005         (mono_metadata_generic_method_equal): Likewise.
13006
13007         * class-internals.h
13008         (MonoGenericContainer): Added `GHashTable *method_hash'.
13009
13010         * reflection.c (ReflectionMethodBuilder): Added
13011         `MonoGenericContainer *generic_container'.
13012         (reflection_methodbuilder_to_mono_method): Don't create a new
13013         MonoGenericContainer each time we're called.
13014         (mono_reflection_bind_generic_method_parameters): Use
13015         `container->method_hash' to cache the results so we don't create a
13016         different method if we're called several times with the same
13017         arguments.
13018
13019         * loader.c (method_from_methodspec): Use the new
13020         `container->method_hash' here, too.
13021
13022 2004-11-26  Martin Baulig  <martin@ximian.com>
13023
13024         * class.c (inflate_generic_signature): Correctly compute
13025         `res->has_type_parameters'.
13026         (mono_class_vtable): Use the `has_type_parameters' flag to
13027         determine whether we're a generic method.
13028
13029         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
13030
13031 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
13032
13033         * object.c (mono_runtime_run_main): Fix a small memory leak.
13034
13035 2004-11-25  Martin Baulig  <martin@ximian.com>
13036
13037         * class.c (set_generic_param_owner): Fixed the loop.
13038
13039 2004-11-25  Martin Baulig  <martin@ximian.com>
13040
13041         * object.c (mono_class_vtable): Don't create any JIT wrappers for
13042         generic methods.
13043
13044 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
13045
13046         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
13047         names. Fixes #69787.
13048
13049 2004-11-24  Martin Baulig  <martin@ximian.com>
13050
13051         * class.c (mono_class_create_generic_2): If we don't have a
13052         `ginst->parent', inflate `gklass->parent' to get our parent.
13053
13054 2004-11-24  Martin Baulig  <martin@ximian.com>
13055
13056         * reflection.c (compare_genericparam): Correctly sort the
13057         GenericParam table; fixes #69779.
13058
13059 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
13060
13061         * reflection.c: When writing a PE file, don't create a huge
13062         buffer in memory. Just write the arrays we have to the file.
13063         This reduces memory usage.
13064
13065         * metadata-internals.h: MonoDynamicStream pefile is no longer used
13066         globally.
13067
13068 2004-11-17  Martin Baulig  <martin@ximian.com>
13069
13070         * class.c (mono_class_init): Don't setup `class->parent' for
13071         dynamic instances; moved this to mono_class_generic_2().
13072         (mono_class_create_generic): Also set `klass->inited' for dynamic
13073         generic instances.
13074         (mono_class_create_generic_2): Don't do anything for dynamic
13075         generic instances.  Set `klass->parent' here and also call
13076         mono_class_setup_parent() here. 
13077
13078         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
13079         `MonoType *parent' argument; set `ginst->parent' before calling
13080         mono_class_create_generic_2(), so we set the correct parent.
13081
13082 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
13083
13084         * reflection.c: allow getting attributes from ModuleBuilder
13085         (used by ikvm).
13086
13087 2004-11-17  Martin Baulig  <martin@ximian.com>
13088
13089         * class.c (mono_class_create_from_typedef): If a type parameter is
13090         inherited from an outer class, set its owner to that class.
13091
13092 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
13093
13094         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
13095           for (int*) written size. This fixes bug #69592.
13096
13097 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
13098
13099         * icall.c: Added IsAuthenticodePresnet internal call.
13100         * image.c|h: New function that check a MonoImage for an Authenticode
13101         signature in the certificate PE data directory.
13102         * security.c|h: New internal call to ask the runtime if an 
13103         Authenticode signature seems referenced in the PE header.
13104
13105 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
13106
13107         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
13108
13109         * reflection.c (mono_image_create_pefile): Free the assembly streams
13110         after writing out the assembly file.
13111
13112         * object.c (mono_runtime_run_main): Fix small memory leak.
13113
13114         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
13115         property access modifiers. Fixes #69389.
13116
13117 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
13118
13119         * domain.c, object.c, object-internals.h, domain-internals.h,
13120         object.h, marshal.c: keep dynamic code info per domain.
13121
13122 2004-11-15  Martin Baulig  <martin@ximian.com>
13123
13124         * class.c (mono_type_get_name_recurse): Put type arguments in
13125         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
13126         see bug #68387.
13127
13128 2004-11-15  Martin Baulig  <martin@ximian.com>
13129
13130         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
13131         (mono_class_setup_vtable): When computing `the_cname' for a
13132         generic instance, don't include the namespace since we'd otherwise
13133         add it twice.
13134
13135 2004-11-15  Martin Baulig  <martin@ximian.com>
13136
13137         * class.c (mono_class_create_generic): Changed return type to void.
13138         (mono_class_create_generic_2): New public function; setup
13139         `class->method', `class->field' and `class->interfaces' here
13140         instead of in mono_class_init().
13141
13142         * class.h (mono_class_create_generic): Moved to class-internals.h.
13143
13144 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
13145
13146         * reflection.c (mono_image_create_pefile): take a file HANDLE.
13147         rather than writing to memory, write to this file. Right now,
13148         we are just writting into a buffer, and copying that. However
13149         we can avoid the buffer later.
13150
13151         (mono_dynamic_stream_reset): new function
13152
13153         * icall.c, object-internals.h: update for the above.
13154
13155 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
13156
13157         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
13158         have been using gc'd memory. First it is slower, unlikely
13159         the comment in the source code said, secondly, it increases
13160         our footprint to do it in the gc.
13161
13162         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
13163         the method so that it does not have to copy to managed code.
13164
13165 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
13166
13167         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
13168
13169 2004-11-12  Martin Baulig  <martin@localhost>
13170
13171         * reflection.c (mono_image_create_token): Allow generic method
13172         definitions here, since they may appear in an `.override'; see
13173         gen-98/gen-99 for an example.
13174
13175 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
13176
13177         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
13178         #69365.
13179
13180         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
13181         descriptive.
13182
13183 2004-11-11  Martin Baulig  <martin@ximian.com>
13184
13185         * class.c (mono_class_setup_vtable): In an explicit interface
13186         implementation, the method name now includes the arity.
13187
13188 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
13189
13190         * object.c (mono_array_full_copy): Fix warning.
13191
13192 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
13193
13194         * appdomain.c: Removed look_for_method_by_name(). Use the new method
13195         mono_class_get_method_from_name() instead.
13196         
13197         * class-internals.h: Added two new types of wrappers. 
13198         Added MonoRemotingTarget enum. Added new trampoline function type, which
13199         takes an additional MonoRemotingTarget value as parameter, so it is
13200         possible to request a trampoline for a specific target.
13201         
13202         * class.c: Added new mono_class_get_method_from_name() method.
13203         
13204         * class.h: In MonoRemoteClass, we can have now to vtables, one for
13205         general remoting sinks and one specific for cross domain calls.
13206         
13207         * debug-helpers.c: Added new wrapper names.
13208         
13209         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
13210         of a remote class.
13211         
13212         * image.c: Porperly delete value objects form the remoting invoke hashtable.
13213         
13214         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
13215         with several other methods (mono_marshal_get_xappdomain_dispatch,
13216         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
13217         and others) can generate a fast remoting wrapper for cross domain calls.
13218         More information can be found in docs/remoting.
13219         Other changes: Removed mono_find_method_by_name, and used
13220         mono_class_get_method_from_name instead.
13221         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
13222         is stored in the remoting invoke hashtable.
13223         
13224         * marshal.h: published the new method for getting the xdomain wrapper,
13225         and also added a method for getting the adequate wrapper for a given
13226         method and target.
13227         
13228         * object-internals.h, object.c: Added a couple of methods for capying and
13229         cloning arrays.
13230         Modified mono_install_remoting_trampoline, which takes the new remoting
13231         trampoline that has a remoting target as parameter.
13232         mono_class_proxy_vtable now also takes a remoting target as parameter, and
13233         will return the most suitable vtable for the target.
13234         Added mono_remote_class_vtable, which returns the vtable of a remote class
13235         (which can be the normal remoting vtable or the xdomain vtable).
13236         
13237         * threads.c: the xdomain invoke and dispatch wrappers must also be
13238         protected against interruptions.
13239
13240 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13241
13242         * icall.c: use memmove in BlockCopyInternal when the source and
13243         destination arrays are the same.
13244
13245 2004-11-09  Martin Baulig  <martin@ximian.com>
13246
13247         * class-internals.h (MonoGenericContainer): Removed `method' and
13248         `signature', replaced them with `is_method' and `is_signature'
13249         flags.  Added `context'.
13250
13251         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
13252         instead of a `MonoGenericContainer *'.
13253
13254         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
13255         for dynamic type parameters.
13256         (mono_metadata_load_generic_params): Setup `container->context'.
13257
13258         * reflection.c (mono_reflection_setup_generic_class): Setup
13259         `tb->generic_container->context'.
13260         (do_mono_reflection_bind_generic_parameters): Use
13261         mono_class_inflate_generic_type() to correctly inflate types,
13262         rather than using our own hack just for MONO_TYPE_VAR.
13263
13264 2004-11-09  Martin Baulig  <martin@ximian.com>
13265
13266         * class.c (mono_class_inflate_generic_method): Small fix; don't
13267         crash here.
13268
13269         * icall.c
13270         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
13271         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
13272         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
13273         (ves_icall_Type_BindGenericParameters): Likewise.
13274         (ves_icall_Type_get_IsGenericInstance): Likewise.
13275         (ves_icall_Type_GetGenericParameterPosition): Likewise.
13276         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
13277         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
13278         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
13279
13280 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
13281
13282         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
13283         assembly versions and public key tokens. Fixes #69113.
13284
13285 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
13286
13287         * metadata.c: fix bug introduced with the type cache changes
13288         on 2004-11-06.
13289
13290 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
13291
13292         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
13293         the MonoClass pointer instead of the token in exception clauses.
13294         * reflection.c: updates for the above and make the code not depend
13295         on the structure of MonoExceptionClause.
13296
13297 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
13298
13299         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13300         Add support for dynamic assemblies. Fixes #69114.
13301
13302         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
13303
13304 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
13305
13306         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
13307         since most only those methods use it. the code member of
13308         MonoMethodPInvoke was dead, so that can be removed too. Also,
13309         remove inline_count (again, not used), and move slot so that it
13310         can share bits with some other flags. This saves 8 bytes in the
13311         structure and gives us about 50 kb back for mcs helloworld.cs
13312
13313         * *.[ch]: Do naming changes for the above.
13314
13315         * loader.c (mono_method_get_header): Lazily init the header
13316         on first access.
13317         (mono_get_method_from_token): don't init the header here
13318         (mono_free_method): the header may never be allocated
13319
13320         Overall, this saves 150 kb of unmanaged allocations
13321         for mcs helloworld.cs. That accounts for 10% of the unmanaged
13322         memory at runtime.
13323         
13324         * loader.c, loader.h (mono_method_get_header): new accessor.
13325
13326         * *.[ch]: use the above method. Prepares us to lazily load
13327         the header.
13328
13329         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
13330         three warnings, which are actual bugs (see 69206).
13331
13332         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
13333         unused. Saves a cool 4 bytes / method.
13334
13335 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
13336
13337         * metadata.c (builtin_types): Add types for System.Object here.
13338         (mono_metadata_parse_type_full): Cache MonoType*'s that are
13339         for a class or valuetype from klass->this_arg or klass->byval_arg.
13340
13341         On mcs for a hello world, this gets us down from 21836 MonoType's
13342         to 14560.
13343
13344         (mono_metadata_free_type): Account for the above change.
13345
13346 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
13347
13348         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
13349         exception instead of asserting if name is null.
13350         (ves_icall_System_AppDomain_GetData): Ditto.
13351
13352 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
13353
13354         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
13355         EnumBuilder.
13356
13357         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
13358         Return NULL when the domain does not have entry_assembly set.
13359
13360         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
13361         Add a 'resource_modules' argument.
13362         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
13363
13364         * reflection.c (mono_reflection_create_runtime_class): Move setting
13365         of wastypebuilder here, so mono_get_type_object () returns a MonoType
13366         for enums too.
13367
13368         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
13369         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
13370         Throw an ArgumentNullException if 'ptr' is null.
13371
13372         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
13373         assemblies here. Fixes #69020.
13374
13375 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
13376
13377         * reflection.c (build_compressed_metadata): Fix the previous patch for
13378         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
13379         the stack.
13380
13381 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
13382
13383         * assembly.c (mono_assembly_names_equal): Allow a match if one of
13384         the cultures is false. Fixes #69090.
13385
13386         * reflection.c (build_compressed_metadata): Fix invalid memory read 
13387         detected by valgrind.
13388         
13389         * reflection.c (mono_reflection_get_type): Avoid triggering a 
13390         TypeResolve multiple times for the same type. Fixes #65577.
13391
13392 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
13393
13394         * marshal.c: Avoid using ldftn to call managed functions. It is
13395         much slower than just a call.
13396
13397         * reflection.c (mono_module_get_object): free the basename we
13398         allocate here from glib.
13399         
13400         * reflection.c (ensure_runtime_vtable): make sure to free
13401         overrides.  Also, we were allocating an array of MonoMethod not an
13402         array of MonoMethod*.
13403
13404         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
13405
13406         * image.c (mono_image_close): free image->guid here.
13407
13408 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
13409
13410         * reflection.c: Fix some spec conformance issues with the PE file
13411         structures so mcs compiled apps run on the Net 2.0 beta.
13412
13413 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
13414
13415         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
13416         Implement this. Fixes #67264.
13417
13418         * debug-helpers.h debug-helpers.c marshal.c: Move 
13419         mono_find_method_by_name to debug-helpers.c.
13420
13421 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
13422
13423         * object.c (mono_release_type_locks): type_initialization_hash is
13424         a GHashTable.
13425
13426         * reflection.c object.c object-internals.h: Fix warnings.
13427
13428         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
13429         without accessors. Fixes #61561.
13430
13431         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
13432         application base from the root domain if not set. Fixes #65641.
13433         (mono_runtime_init): Fix warning.
13434
13435 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13436
13437         * appdomain.c: call mono_thread_pool_init.
13438         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
13439         of worker threads based on the number of CPUs and the environment
13440         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
13441         for non-windows (windows) systems.
13442
13443 2004-10-27  Chris Toshok  <toshok@ximian.com>
13444
13445         * mono-debug-debugger.c (write_class): don't call mono_class_init
13446         here, as even with the check for (!klass->init_pending), we get
13447         into a situation where we're hitting cycles in class
13448         initialization.  Fixes #68816.
13449
13450 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
13451
13452         * image.c: Avoid overwriting values in the loaded_images_hash when an
13453         assembly is loaded multiple times. Fixes #61152.
13454
13455         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
13456         so multiple satellite assemblies for the same name can be loaded.
13457         Fixes #68259.
13458
13459         * mono_domain_assembly_preload: Actually return the loaded assembly, 
13460         not NULL.
13461
13462         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
13463         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
13464
13465         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
13466         pending finalizers are not invoked after the appdomain has been 
13467         unloaded. Fixes #67862.
13468
13469 2004-10-22  Martin Baulig  <martin@ximian.com>
13470
13471         * mono-debug-debugger.c
13472         (mono_debugger_runtime_invoke): Don't box valuetypes.
13473
13474 2004-10-22  Chris Toshok  <toshok@ximian.com>
13475
13476         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
13477         don't hide private methods.
13478
13479 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
13480
13481         * icall.c: Allows the runtime to "share" (when known) the public key
13482         token of an assembly. This avoid the need to recalculate the token 
13483         (from the public key) in managed code.
13484
13485 2004-10-21  Chris Toshok  <toshok@ximian.com>
13486
13487         * debug-helpers.c (append_class_name): argh, revert last patch.
13488         
13489 2004-10-21  Chris Toshok  <toshok@ximian.com>
13490
13491         * debug-helpers.c (append_class_name): use '+' as the delimiter,
13492         not '/', so that it matches what the debugger uses to look up
13493         methods.
13494
13495 2004-10-21  Martin Baulig  <martin@ximian.com>
13496
13497         * mono-debug-debugger.c (mono_debugger_throw_exception): New
13498         public method; this is called each time an exception is thrown and
13499         allows the debugger to use exception catch points.
13500
13501 2004-10-21  Martin Baulig  <martin@ximian.com>
13502
13503         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
13504         the stack pointer and the exception object in some struct and pass
13505         that to the debugger.
13506
13507 2004-10-21  Chris Toshok  <toshok@ximian.com>
13508
13509         * mono-debug-debugger.c (do_write_class): add instance/static
13510         event support.  We don't expose "raise" or "other" yet.
13511         (event_is_static): new method.
13512
13513 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
13514
13515         * mono-debug-debugger.c
13516         (mono_debugger_handle_exception): Remove
13517         bogus return value for fussy compilers.
13518
13519 2004-10-20  Martin Baulig  <martin@ximian.com>
13520
13521         * mono-debug-debugger.c
13522         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
13523         (mono_debugger_handled_exception): Likewise.
13524
13525 2004-10-20  Martin Baulig  <martin@ximian.com>
13526
13527         * mono-debug-debugger.h (MonoDebuggerEvent): Added
13528         MONO_DEBUGGER_EVENT_EXCEPTION.
13529
13530         * mono-debug-debugger.c (mono_debugger_handle_exception): New
13531         public function to send the debugger a notification for an
13532         exception and inform it about a catch/finally clause.
13533
13534 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
13535
13536         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
13537         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
13538         fix 2.95 build. 
13539
13540         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
13541
13542 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
13543
13544         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
13545         marshalled as [In,Out]. Fixes #58325.
13546
13547 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
13548
13549         * reflection.c (mono_method_body_get_object): Implement some fields.
13550
13551 2004-10-12  Martin Baulig  <martin@ximian.com>
13552
13553         * reflection.c (mono_reflection_bind_generic_parameters): Small
13554         fix, correctly retrieve our parent from a generic instance.
13555
13556 2004-10-12  Martin Baulig  <martin@ximian.com>
13557
13558         * metadata.c (mono_metadata_generic_param_equal): We always have
13559         an owner.
13560
13561         * class.c
13562         (mono_class_from_generic_parameter): We need to have an owner.
13563         (my_mono_class_from_generic_parameter): Likewise.
13564
13565         * reflection.c (mono_reflection_setup_generic_class): Renamed to
13566         mono_reflection_create_generic_class() and added a new
13567         mono_reflection_setup_generic_class().  
13568         (mono_reflection_initialize_generic_param): If we're a nested
13569         generic type and inherited from the containing class, set our
13570         owner to the outer class.
13571
13572 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
13573
13574         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
13575
13576         * reflection.c (mono_method_body_get_object): New function to create
13577         a MethodBody object.
13578
13579         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
13580
13581 2004-10-11  Martin Baulig  <martin@ximian.com>
13582
13583         * metadata.c (_mono_metadata_type_equal): Renamed to
13584         do_mono_metadata_type_equal() and made static.
13585
13586 2004-10-11  Martin Baulig  <martin@ximian.com>
13587
13588         * appdomain.c: Bump corlib version number to 28.
13589
13590 2004-10-10  Martin Baulig  <martin@ximian.com>
13591
13592         * class-internals.h
13593         (MonoGenericInst): Added `MonoGenericContainer *container'.
13594         (MonoGenericMethod): Likewise.
13595         (MonoGenericContext): Likewise.
13596         (MonoGenericParam): Added `MonoGenericContainer *owner'.
13597
13598         * metadata.c
13599         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
13600         (do_mono_metadata_parse_generic_inst): Likewise.
13601         (mono_metadata_parse_type_full): New public method.  This is the actual
13602         mono_metadata_parse_type() implementation - with an additional
13603         `MonoGenericContainer *' argument.
13604         (mono_metadata_parse_array_full): Likewise.
13605         (mono_metadata_parse_signature_full): Likewise.
13606         (mono_metadata_parse_method_signature_full): Likewise.
13607         (mono_metadata_parse_mh_full): Likewise.
13608         (mono_type_create_from_typespec): Likewise.
13609         (mono_metadata_interfaces_from_typedef_full): New public method;
13610         this is similar to the other _full() methods, but we take a
13611         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
13612         (mono_metadata_parse_generic_param): Take an additional
13613         `MonoGenericContainer *' argument and lookup the MonoGenericParam
13614         from that container.
13615         (mono_metadata_generic_param_equal): New static method to compare
13616         two type parameters.
13617         (_mono_metadata_type_equal): New static method; takes an
13618         additional `gboolean signature_only' argument - if true, we don't
13619         compare the owners of generic parameters.
13620         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
13621         with a TRUE argument - do a signature-only comparision.
13622
13623         * loader.c: Use the new _full() methods and pass the
13624         MonoGenericContainer to them.
13625
13626         * object-internals.h (MonoReflectionTypeBuilder): Added
13627         `MonoGenericContainer *generic_container' field.
13628         (MonoReflectionMethodBuilder): Likewise.
13629
13630 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
13631
13632         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
13633         case initial images of dynamic assemblies.
13634
13635         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
13636
13637         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
13638
13639         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
13640         length of event->other array.
13641         (typebuilder_setup_events): Ditto.
13642
13643         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
13644         'assembly_by_name' and add an 'assemblies' list.
13645
13646         * assembly.h assembly.c: Add a new search hook for determining whenever
13647         an assembly is already loaded. Use this instead of searching in the
13648         loaded_assemblies list.
13649
13650         * domain.c appdomain.c: Implement the new search hook so loaded 
13651         assemblies are now scoped by appdomain. Fixes #67727.
13652
13653 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
13654
13655         * threads.c (mono_thread_attach): Initialize synch_lock field so
13656         mono_thread_detach works again.
13657
13658         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
13659         'lib' too. Fixes #63130.
13660
13661 2004-10-06  Jackson Harper  <jackson@ximian.com>
13662
13663         * culture-info-tables.h: regenerated.
13664
13665 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
13666
13667         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
13668         implemented by other interfaces in the result. Fixes #65764.
13669         
13670         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13671         Handle unloadable modules without crashing.
13672
13673         * image.c (load_modules): Revert the previous patch since modules must
13674         have a fixed index inside the array.
13675         
13676         * image.c (load_modules): Don't include native modules in the modules
13677         array.
13678
13679 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
13680
13681         * reflection.h: Add param_defaults field.
13682
13683         * reflection.c: Add support for parameter defaults in dynamic methods.
13684         Fixes #64595.
13685
13686         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
13687         an empty string when a type has no namespace. Fixes #64230.
13688
13689 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
13690
13691         * tabledefs.h: Added "internal" security actions to support non-CAS
13692         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
13693         Note: they do not seems to be used anymore in 2.0 (new metadata format)
13694
13695 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
13696
13697         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
13698         constructor of abstract class. Fixes #61689.
13699
13700 2004-10-04  Martin Baulig  <martin@ximian.com>
13701
13702         * class-internals.h (MonoGenericContainer): New type.
13703         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
13704         `MonoGenericContainer *generic_container'.
13705         (MonoClass): Replaced `gen_params' and `num_gen_params' with
13706         `MonoGenericContainer *generic_container'.
13707
13708         * metadata.c (mono_metadata_load_generic_params): Return a
13709         `MonoGenericContainer *' instead of a `MonoGenericParam *';
13710         removed the `num' argument.
13711
13712 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
13713
13714         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
13715         for dynamic images.
13716
13717         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
13718         machine fields.
13719
13720         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
13721
13722         * reflection.c: Save pe_kind and machine values into the generated
13723         image file.
13724
13725         * appdomain.c: Bump corlib version number.
13726
13727         * object-internals.h: Reorganize layout of LocalBuilder.
13728
13729         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
13730         New helper function.
13731
13732         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
13733         created MonoType for dynamic types. Fixes #66180.
13734
13735 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
13736
13737         * threadpool.c: the ares hashtable needs a critical section around it.
13738         this prevents some nasty segfaults
13739
13740 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
13741
13742         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
13743         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
13744         bug 67324).
13745         
13746 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
13747
13748         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
13749         
13750 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
13751
13752         * image.c: Always canonicalize image file names, to avoid loading
13753         the same assembly twice when referenced using a relative path.
13754
13755 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
13756
13757         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
13758
13759         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
13760
13761         * marshal.c: Fix warnings.
13762
13763 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
13764
13765         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
13766         attempting to marshal the delegate_trampoline as the method_addr.
13767         This patch has a static hashtable of marshalled delegates so that 
13768         we can map delegate_trampoline addresses back to delegates.  This
13769         allows a delegate passed to managed code to be passed back into native
13770         code.  Fixes #67039
13771
13772 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
13773
13774         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
13775
13776         * reflection.c (method_encode_code): Align method headers properly.
13777         Fixes #66025.
13778
13779 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
13780
13781         * marshal.c: In the runtime invoke wrapper, reset the abort
13782         exception if it is cached. This avoids the automatic rethrowal of 
13783         the exception after the catch of the wrapper. Also check for pending
13784         interruptions before calling the managed method. This is done using
13785         the new method emit_thread_force_interrupt_checkpoint, since the
13786         normal checkpoint method is ignored when running the invoke wrapper.
13787         * object.c: If the abort exception is rethrown, set the abort_exc
13788         field of the thread, so it will be rethrown aftere every catch.
13789         * threadpool.c: Only run an interruption checkpoint if what has been
13790         requested is a stop of the thread (aborts will be ignored).
13791         * threads.c: By default, a thread will now never be interrumped while
13792         running the runtime invoke wrapper (this ensures that runtime_invoke
13793         will always return to the caller if an exception pointer is provided).
13794         There is a new special method mono_thread_force_interruption_checkpoint()
13795         to force an interruption checkpoint even if running a protected
13796         wrapper, which is used by the same runtime invoke wrapper to do a check
13797         at a safe point.
13798
13799 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
13800
13801         * object.c, object-internals.h: Implemented mono_release_type_locks,
13802         which releases the cctor locks held by a thread.
13803         * threads.c, threads.h: In thread_cleanup, release cctor locks held
13804         by a thread. Added mono_thread_exit() method to be used to safely stop
13805         a thread.
13806
13807 2004-09-28  Raja R Harinath  <rharinath@novell.com>
13808
13809         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13810         Move null check before dereference.  Avoid indexing beyond the end
13811         of the 'modules' array.
13812
13813 2004-09-28  Raja R Harinath  <rharinath@novell.com>
13814
13815         * metadata-internals.h (MonoImage): Add module_count field.
13816         * image.c (load_modules): Set image->module_count.
13817         (mono_image_load_file_for_image): Use image->module_count.
13818         * reflection.c (mono_image_load_module): Append to image->modules array 
13819         of dynamic assembly.
13820         (mono_module_get_object): Fix loop to actually increment index.
13821         Use image->module_count.
13822         * assembly.c (mono_assembly_load_references): Use image->module_count.
13823         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
13824         Likewise.
13825
13826 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
13827
13828         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
13829         Avoid assert on generic types.
13830
13831 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
13832
13833         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
13834
13835         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
13836
13837         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
13838         function to convert a MarshalSpec structure to its managed counterpart.
13839
13840         * reflection.c: Fix warnings.
13841         
13842         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
13843         field.
13844
13845         * icall.c (mono_create_icall_signature): Fix build.
13846
13847 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
13848
13849         * icall.c: Add MakePointType icall.
13850
13851         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
13852         warnings.
13853
13854 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13855
13856         * threadpool.c: reuse allocated slots in the queue.
13857
13858 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
13859
13860         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
13861
13862         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
13863
13864         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
13865         previous change.
13866
13867         * tabledefs.h: Add constants for pinvoke attributes BestFit and
13868         ThrowOnUnmappableChar.
13869
13870         * icall.c (ves_icall_Type_GetPacking): New icall.
13871
13872 2004-09-24  Martin Baulig  <martin@ximian.com>
13873
13874         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
13875
13876 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13877
13878         * appdomain.c:
13879         (mono_domain_set): allow setting a domain that is being unloaded.
13880         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
13881         being unloaded.
13882
13883 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
13884
13885         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
13886         the GetCustomAttributes icall.
13887
13888 2004-09-23  Martin Baulig  <martin@ximian.com>
13889
13890         * object-internals.h (MonoReflectionGenericParam): Replaced
13891         'has_ctor_constraint', `has_reference_type' and `has_value_type'
13892         with `guint32 attrs'.
13893
13894 2004-09-23  Martin Baulig  <martin@ximian.com>
13895
13896         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
13897
13898 2004-09-23  Martin Baulig  <martin@ximian.com>
13899
13900         * object-internals.h (GenericParameterAttributes): New enum.
13901
13902 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
13903
13904         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
13905         
13906         * class.c (init_events): Fill out event->other field.
13907
13908         * class.c: Fix warnings.
13909
13910         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
13911
13912 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
13913
13914         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
13915         walk which doesn't supply the IL offset.
13916
13917 2004-09-22  Martin Baulig  <martin@ximian.com>
13918
13919         * reflection.c (mono_reflection_setup_internal_class): If we're
13920         System.ValueType, System.Object or System.Enum, set
13921         `klass->instance_size' and create the vtable.
13922         (mono_reflection_create_internal_class): If we're an enum type,
13923         get the base class from our current corlib.
13924
13925 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
13926
13927         * reflection.h (MonoResolveTokenError): New type.
13928
13929         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
13930         icall.
13931
13932         * icall.c: Add an 'error' argument to the ResolveToken icalls.
13933
13934 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
13935
13936         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
13937         Support also calling constructors, but only for already allocated objects.
13938
13939 2004-09-17  Geoff Norton <gnorton@customerdna.com>
13940
13941         * reflection.c (type_get_qualified_name): If the klass is null
13942         return the typename to avoid a NullRefEx.
13943         (encode_cattr_value): Get the qualified name of the boxed type,
13944         not the underlying enumtype.  Fixes #62984.
13945
13946 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
13947
13948         * marshal.c: Fix problems with previous checkin.
13949
13950 2004-09-21    <vargaz@freemail.hu>
13951
13952         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
13953         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
13954
13955         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
13956
13957 2004-09-21  Geoff Norton <gnorton@customerdna.com>
13958
13959         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
13960         should only return a type for pointers, arrays, and passbyref types.
13961         Fixes bug #63841.
13962
13963 2004-09-21  Martin Baulig  <martin@ximian.com>
13964
13965         * domain.c (mono_debugger_check_runtime_version): New public
13966         function.
13967
13968         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
13969
13970 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
13971
13972         * reflection.c: Added missing sort to the declarative security 
13973         attributes table. MS implementation stops seeing the attributes if the
13974         token number regress in the table (as shown by ildasm and permview).
13975
13976 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
13977
13978         * object-internals.h (MonoReflectionModule): Add 'token' field.
13979         
13980         * reflection.c (mono_reflection_get_token): Add support for Module
13981         and Assembly.
13982         (mono_module_get_object): Set 'token' field.
13983         (mono_module_file_get_object): Set 'token' field.
13984
13985         * icall.c: Add new Assembly and Module icalls.
13986
13987         * appdomain.c: Bump corlib version.
13988
13989 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
13990
13991         * loader.h loader.c class.h class.c: Add helper functions for obtaining
13992         tokens of metadata objects.
13993
13994         * reflection.h reflection.c (mono_reflection_get_token): New function
13995         to obtain the token of a metadata object.
13996
13997         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
13998
13999 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
14000
14001         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
14002         
14003         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
14004
14005 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
14006
14007         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
14008         * object-internals.h: Added 3 MonoArray* members to MonoReflection
14009         AssemblyBuilder to access the permissions set in the class lib.
14010         * reflection.c: Added security attributes encoding step in 
14011         mono_image_build_metadata.
14012         * tabledefs.h: Added new security actions defined in 2.0:
14013         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
14014
14015 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
14016
14017         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
14018         macro parameter.
14019
14020 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
14021  
14022         * locales.c: nullify the ICU_collator member of CompareInfo when it is
14023           finalized. There where random SIGSEVs at program termination, when
14024           an object being finalized was trying to do a string comparison and
14025           the current culture was already finalized.
14026  
14027 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14028
14029         * threads.c: call thread_cleanup before finishing the thread if we get
14030         there.
14031
14032 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
14033
14034         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
14035         assemblies from the parent. Fixes #65665.
14036
14037 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
14038
14039         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
14040         modifiers.
14041
14042 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
14043
14044         * reflection.h: add prototype for mono_get_dbnull_object
14045         * reflection.c: add prototypes for get_default_param_value_blobs 
14046         and mono_get_object_from_blob for fussier compilers
14047
14048 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
14049  
14050         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
14051         false deadlock checks in class initialization.
14052  
14053 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
14054
14055         * image.c (mono_image_addref): Fix comment.
14056
14057         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
14058         possible.
14059
14060 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
14061
14062         * reflection.c (mono_param_get_objects): Modified to return
14063         ParameterInfo.DefaultValue object.
14064
14065         (get_default_param_value_blobs):
14066         (mono_get_object_from_blob):
14067         (mono_get_dbnull_object): New helper routines. 
14068
14069         * object.c (mono_get_constant_value_from_blob): New helper routine
14070         carved out from get_default_field_value ()
14071
14072         * object-internals.h (mono_get_constant_value_from_blob): Added
14073         function declaration.
14074
14075 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
14076
14077         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
14078         referenced assemblies. Fixes #62135.
14079
14080         * exception.h exception.c (mono_get_exception_file_not_found2): New
14081         helper function.
14082
14083 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
14084
14085         * class.h class.c: Add mono_type_get_underlying_type ().
14086
14087 2004-09-09  Geoff Norton <gnorton@customerndna.com>
14088
14089         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
14090         Fix GetTypes() to support dynamically created assemblies.
14091
14092 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
14093
14094         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
14095         
14096         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
14097         previous patch.
14098
14099         * reflection.h reflection.c loader.c: Allow dynamic construction of
14100         pinvoke methods. Fixes #65571.
14101         
14102         * reflection.c (mono_reflection_get_type): Revert previous change since
14103         it causes regressions.
14104
14105 2004-09-08  Martin Baulig  <martin@ximian.com>
14106
14107         * class.c (class_compute_field_layout): Don't call
14108         mono_class_layout_fields() for open generic instances.
14109
14110 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
14111         * threads.c appdomain.c: fix typo in GC macro
14112
14113 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14114
14115         * threads.c: don't call mono_thread_detach() in start_wrapper(),
14116         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
14117
14118 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
14119
14120         * image.c (mono_image_close): Applied patch from 
14121         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
14122         assembly is loaded multiple times from data.
14123         
14124         * image.c (mono_image_open): Fix warning.
14125
14126 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
14127
14128         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
14129         once. Fixes #58334.
14130         
14131         * reflection.c (mono_reflection_create_runtime_class): Initialize
14132         klass->nested_classes. Fixes #61224.
14133
14134 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
14135
14136         * threads.c: sched_yield() on exit, to allow threads to quit.
14137
14138 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
14139
14140         * object.c (mono_unhandled_exception): Remove leftover debug code.
14141
14142 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
14143
14144         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
14145
14146 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
14147
14148         * marshal.c (emit_marshal_array): Really null terminate string arrays.
14149         
14150         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
14151
14152 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
14153
14154         * marshal.c (emit_marshal_array): Null terminate string arrays.
14155         
14156         * marshal.c (raise_auto_layout_exception): Fix warning.
14157
14158         * reflection.c (mono_param_get_objects): Initialize the default value
14159         with DBNull.Value, not null. Fixes #62123.
14160
14161 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
14162
14163         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
14164         throw an exception with a cute explanation.
14165
14166 2004-09-06  Dick Porter  <dick@ximian.com>
14167
14168         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
14169         Close the new process's thread handle, as we don't use it.  The
14170         handle stays around forever otherwise.
14171
14172 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
14173
14174         * object.c (arith_overflow): Fix warning.
14175
14176         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
14177         calling conventions in method refs. Fixes #65352.
14178
14179         * reflection.c: Fix warnings.
14180
14181 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
14182
14183         * icall.c: Add a new icall for Array.Clear
14184
14185 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
14186
14187         * object.c: When allocating an array, we have to throw
14188         an overflow exception if any of the lengths are < 0.
14189
14190 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
14191
14192         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
14193         properly. Also move implementation of string array marshalling to 
14194         managed code. Fixes #42316.
14195
14196 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14197
14198         * assembly.c: provide more information when loading an assembly fails.
14199
14200 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14201
14202         * filewatcher.c: don't expect the development fam package to be
14203         installed.
14204
14205 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
14206
14207         * marshal.c: Make a copy of the signature cookie since it will be
14208         freed by the caller.
14209         
14210         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
14211
14212         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
14213
14214         * metadata.c (mono_metadata_free_marshal_spec): New function to free
14215         marshal specs.
14216
14217         * marshal.c: More refactoring.
14218         
14219         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
14220         smaller functions.
14221
14222 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
14223
14224         * object.c: In mono_message_invoke, fill the output parameter array after
14225           calling the managed method (it was done before the call). This fixes
14226           bug #59299.
14227
14228 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
14229
14230         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
14231         as well.
14232
14233 2004-09-02  Martin Baulig  <martin@ximian.com>
14234
14235         * class.c (mono_class_instance_size): Don't allow generic type
14236         definitions or open generic instances.
14237         (mono_class_array_element_size): If we're a value type, call
14238         mono_class_instance_size() on the original class.
14239
14240         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
14241         handle generic instances.
14242
14243         * mono-debug-debugger.c (write_type): Handle generic instances
14244         like classes.
14245
14246 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
14247
14248         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
14249         the allocation request fails. Fixes #65089.
14250
14251         * object.c (mono_runtime_free_method): Do not call mono_free_method.
14252         
14253         * object.c (mono_runtime_free_method): New function to free a dynamic
14254         method.
14255
14256         * marshal.c (mono_delegate_free_ftnptr): New function to free the
14257         delegate trampoline.
14258
14259         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
14260         with hasthis as dynamic,
14261
14262         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
14263
14264         * domain.c (mono_jit_info_table_remove): New function to remove an
14265         entry from the jit info table.
14266
14267         * class-internals.h (MonoMethod): Add 'dynamic' field.
14268
14269         * loader.c: Fix warnings.
14270
14271 2004-09-01  Martin Baulig  <martin@ximian.com>
14272
14273         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
14274         instead of mono_debugger_lock() because the latter one is a no-op
14275         unless running in the debugger.
14276
14277 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
14278
14279         * class.c (class_compute_field_layout): Classes with auto-layout or
14280         reference fields are not blittable.
14281         
14282 2004-09-01  Dick Porter  <dick@ximian.com>
14283
14284         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
14285         mono_image_get_filename() to get the assembly location.
14286
14287         * icall.c:
14288         * metadata.h: Fix compile warnings
14289
14290 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
14291
14292         * class.c (class_compute_field_layout): System.Object is blittable.
14293
14294         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
14295         as in/out. Fixes #59909.
14296
14297 2004-09-01  Martin Baulig  <martin@ximian.com>
14298
14299         * metadata.h (MONO_TYPE_ISREFERENCE): Call
14300         mono_metadata_generic_inst_is_valuetype() if we're a generic
14301         instance to check whether our underlying type is a reference type.
14302
14303 2004-09-01  Martin Baulig  <martin@ximian.com>
14304
14305         * metadata.c (mono_type_size): If we're a generic instance, call
14306         mono_class_value_size() for value types.
14307
14308 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
14309
14310         * marshal.c: Implement more custom marshalling functionality. Fixes
14311         #64915.
14312
14313 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
14314
14315         * mono-debug.c, debug-mono-symfile.c: add some locking love.
14316
14317 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
14318
14319         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
14320
14321         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
14322
14323         * icall.c: Fix some warnings.
14324
14325         * threads.c (abort_appdomain_thread): Fix unref errors.
14326         (mono_thread_current): Fix THREAD_DEBUG define.
14327
14328 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
14329
14330         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
14331
14332         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
14333
14334 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
14335
14336         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
14337         string arrays.
14338
14339 2004-08-28  Martin Baulig  <martin@ximian.com>
14340
14341         * metadata.c
14342         (mono_metadata_generic_inst_is_valuetype): New public function.
14343
14344         * metadata.h (MONO_TYPE_ISSTRUCT): Call
14345         mono_metadata_generic_inst_is_valuetype() if we're a generic
14346         instance to check whether our underlying type is a valuetype.
14347
14348 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
14349
14350         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
14351         #63768.
14352
14353 2004-08-25  Martin Baulig  <martin@ximian.com>
14354
14355         * loader.c (mono_get_method_from_token): Abstract methods can also
14356         be generic and thus have type parameters.
14357
14358         * metadata-internals.h
14359         (MonoDynamicImage): Added `GPtrArray *gen_params'.
14360
14361         * reflection.c (mono_image_get_generic_param_info): Don't create a
14362         metadata row, just add an entry to the `gen_params' array.
14363         (build_compressed_metadata): Sort the `gen_params' array and then
14364         actually create the metadata.
14365
14366 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14367
14368         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
14369
14370 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
14371
14372         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
14373
14374 2004-08-24  Martin Baulig  <martin@ximian.com>
14375
14376         * class.cs (mono_class_is_subclass_of): Like an interface, a
14377         generic instance also derives from System.Object.
14378
14379 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
14380
14381         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
14382         custom modifiers to be in any order. Fixes #61990.
14383
14384 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
14385
14386         * object.c: Register mono_object_new_fast icall.
14387         
14388         * object.c (mono_class_get_allocation_ftn): Return to calling
14389         mono_object_new_fast, since it seems faster to compute the object 
14390         size in unmanaged code than passing it as a parameter.
14391
14392         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
14393
14394         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
14395         this function with Boehm as the oom handler, so we don't have to check
14396         the result of GC_malloc.
14397
14398         * object.c: Remove checks for oom.
14399
14400         * object.h object.c (mono_class_get_allocation_ftn): New function to
14401         return the icall which can be used to allocate an instance of a given
14402         class. 
14403
14404         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
14405
14406         * class-internals.h: Add 'enabled' field.
14407
14408 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
14409
14410         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
14411
14412 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
14413         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
14414         value 0x0010.
14415
14416 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
14417
14418         * appdomain.c: use the Tls function for appdomain too,
14419         at Zoltan's request. Actually return in mono_context_get
14420
14421         * appdomain.c, profiler.c, threads.c: use __thread
14422
14423 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
14424
14425         * appdomain.c threads.c: Call GC_CreateThread on windows.
14426
14427         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
14428         multiple libraries since this don't work on windows.
14429
14430 2004-08-18  Martin Baulig  <martin@ximian.com>
14431
14432         * class-internals.h
14433         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
14434         MonoMethodHeader.
14435
14436         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
14437         MonoMethodNormal since we also need it for abstract and interface
14438         methods.
14439
14440         * reflection.c
14441         (build_compressed_metadata): Sort the GenericParam table.
14442         (mono_image_create_token): Added `gboolean create_methodspec'
14443         argument; this is false when generating a MethodImpl token.
14444         (reflection_methodbuilder_to_mono_method): Abstract and interface
14445         methods may also have generic parameters.
14446
14447 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
14448
14449         * appdomain.c: thread local alloc
14450
14451 2004-08-17  Martin Baulig  <martin@ximian.com>
14452
14453         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
14454
14455         * icall.c
14456         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
14457         argument.
14458
14459         * class.c (mono_type_get_full_name): New public function.
14460         (mono_type_get_name): Don't include the type arguments.
14461
14462 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
14463
14464         * Makefile.am: Build static versions of libmetadata and libmonoruntime
14465         for inclusion into the mono executable.
14466
14467 2004-08-16  Martin Baulig  <martin@ximian.com>
14468
14469         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
14470         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
14471
14472 2004-08-14  Martin Baulig  <martin@ximian.com>
14473
14474         * class.c (dup_type): Also copy the `byref' field.
14475
14476 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
14477
14478         * reflection.c (create_dynamic_mono_image): Revert the last change 
14479         since it breaks bootstrap.
14480
14481 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
14482
14483         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
14484
14485         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
14486         not free them with g_free.
14487
14488 2004-08-11  Martin Baulig  <martin@ximian.com>
14489
14490         * reflection.c (mono_reflection_setup_internal_class): Also call
14491         mono_class_setup_mono_type() if we already have a `tb->type.type'.
14492
14493 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
14494
14495         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
14496         called during default (first) AppDomain creation. Keep track of
14497         Evidence when loading assemblies.
14498
14499 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
14500
14501         * opcodes.c, opcodes.h: reduce runtime relocations.
14502
14503 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
14504
14505         * culture-info.h, locales.c: fixes and chages to sue the new
14506         optimized format of the locale data.
14507         * culture-info-tables.h: regenerated.
14508
14509 2004-08-06  Geoff Norton <gnorton@customerdna.com>
14510         
14511         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
14512
14513 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
14514
14515         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
14516         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
14517         * domain-internals.h: icall declaration.
14518         * icall.c: icall registration.
14519         * object-internals.h: New fields in MonoAssembly for CAS.
14520
14521 2004-08-05  Duncan Mak  <duncan@ximian.com>
14522
14523         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
14524         CEE_LDELEM_ANY.
14525
14526 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
14527
14528         * reflection.c: fix to deal with object[] arrays in custom ctors
14529         (bug #62550).
14530
14531 2004-08-05  Martin Baulig  <martin@ximian.com>
14532
14533         * class.c (mono_class_array_element_size): Added support for
14534         generic instances and correctly handle "recursive" types.
14535
14536 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
14537
14538         * assembly.c: Fix warnings.
14539
14540 2004-08-04  Martin Baulig  <martin@ximian.com>
14541
14542         * class.c
14543         (mono_type_get_name_recurse): Added `gboolean include_arity'
14544         argument specifying whether or not we should include the generic
14545         arity in the type name.
14546         (_mono_type_get_name): New static function.
14547         (mono_class_setup_vtable): If we're a generic instance, don't
14548         include the generic arity in the names of explicit method
14549         implementations.        
14550
14551 2004-08-03  Martin Baulig  <martin@ximian.com>
14552
14553         * class.c (mono_type_get_name_recurse): Enclose the generic type
14554         arguments in `<', '>'.
14555
14556 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
14557
14558         * gc.c: make GC warning messages use the trace API, they are just
14559         noise to most of the users.
14560
14561 2004-08-03  Martin Baulig  <martin@ximian.com>
14562
14563         * debug-mono-symfile.c (read_string): Correctly read the string.
14564
14565 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
14566
14567         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
14568         
14569         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
14570         icalls.
14571         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
14572
14573 2004-07-30  Martin Baulig  <martin@ximian.com>
14574
14575         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
14576         Reflect latest symbol writer changes.   
14577
14578 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
14579
14580         * object.c: always create an object if null is passed
14581         to Invoke() where a valuetype is expected.
14582
14583 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
14584
14585         * marshal.c (mono_marshal_init): make managed
14586         signatures match native ones better for 64bits.
14587
14588 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14589
14590         * appdomain.c: hack to build correctly the private bin path on windows.
14591         Fixes bug #61991.
14592
14593 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
14594
14595         * assembly.c: Load mscorlib from the correct framework directory
14596           (mono/<version>/mscorlib.dll).
14597         * appdomain.h: Added prototypes for new functions.
14598         * internals.h: Added some prototypes.
14599         * domain.c: When initializing the runtime, get from the executable and
14600           the configuration files the runtime version that the app supports.
14601           Added support methods for reading app.exe.config. Added list of versions
14602           supported by the JIT. Added two new methods: mono_init_from_assembly,
14603           which initializes the runtime and determines the required version from
14604           the provided exe file, and mono_init_version, which initializes
14605           the runtime using the provided version.
14606         * icall.c: Get machine.config from version-specific directory.
14607         * reflection.c: When generating an image, embed the version number
14608           of the current runtime.
14609
14610 2004-07-28  Dick Porter  <dick@ximian.com>
14611
14612         * socket-io.c
14613         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
14614         returned sockaddr size before creating the remote address object.
14615         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
14616         61608.
14617
14618 2004-07-28  Dick Porter  <dick@ximian.com>
14619
14620         * locales.c (string_invariant_compare_char): Fix invariant char
14621         compares between upper and lower cases.  Fixes bug 61458.
14622
14623 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
14624         
14625         * marshal.c: actually cache stelem.ref wrappers.
14626         
14627 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
14628
14629         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
14630         sections and remove the mono_cli_rva_map () function.
14631
14632 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
14633
14634         * debug-mono-symfile.c: fix one more endianess issue, from a patch
14635         by Geoff Norton (<gnorton@customerdna.com>).
14636
14637 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
14638
14639         * class.c: fix class loads for pointer types (typeof(int) !=
14640         typeof(int*)).
14641
14642 2004-07-27  Martin Baulig  <martin@ximian.com>
14643
14644         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
14645         reading the debugging information from an external ".mdb" file.
14646
14647 2004-07-24  Martin Baulig  <martin@ximian.com>
14648
14649         * reflection.c (mono_image_get_type_info): Only write a class
14650         layout entry if we actually have a size or a packing size.
14651
14652 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
14653
14654         * reflection.c (type_get_fully_qualified_name): 
14655         insert cast to get type checking of ?: with non-gcc compilers
14656
14657 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
14658
14659         * rand.c: use g_getenv for both lookups of
14660         MONO_EGD_SOCKET
14661
14662 2004-07-17  Martin Baulig  <martin@ximian.com>
14663
14664         * reflection.c (mono_reflection_bind_generic_method_parameters):
14665         Set `gmethod->reflection_info'.
14666
14667 2004-07-17  Martin Baulig  <martin@ximian.com>
14668
14669         * class.c (mono_class_create_from_typedef): Insert the newly
14670         created class into the hash table before computing the interfaces
14671         since we could be called recursively.
14672
14673 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
14674
14675         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
14676         function to implement stelem.ref in managed code
14677         * class-internals.h, debug-helpers.c: a new wrapper type
14678         for the above.
14679
14680 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
14681
14682         * gc.c: allow GC handles to work even when no GC is compiled in.
14683         Fix part of bug #61134 (GetAddrOfPinnedObject).
14684
14685 2004-07-13  Peter Williams  <peter@newton.cx>
14686  
14687         * process.c (complete_path): Make sure we don't attempt to execute
14688         directories.
14689  
14690 2004-07-12  Geoff Norton <gnorton@customerdna.com>
14691
14692         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
14693           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
14694           and will add/subtract the hour if needed
14695
14696 2004-07-12  Martin Baulig  <martin@ximian.com>
14697
14698         * reflection.c (mono_field_get_object): If we have
14699         `field->generic_info', take the attributes from
14700         `field->generic_info->generic_type'.    
14701
14702 2004-07-12  Martin Baulig  <martin@ximian.com>
14703
14704         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
14705         This function must be called before initializing the runtime.
14706         (mono_debug_init_1): New function; call this after initializing
14707         the runtime, but before loading the assembly.  It tells the
14708         debugger to load corlib and the builtin types.
14709
14710         * mono-debug-debugger.c: Did some larger changes in the debugging
14711         code; support recursive class declarations, make sure we actually
14712         add all classes.
14713
14714 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14715
14716         * debug-helpers.c: undo my previous patch and fixed the real issue in
14717         ../mini/exceptions-x86.c
14718
14719 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14720
14721         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
14722         when no HOME env. variable was set and a NullRef was thrown in a .cctor
14723         called from other .cctors.
14724
14725 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
14726
14727         * loader.c: Removed the mono_loader_wine_init hack now that we are
14728         doing a managed version of Windows.Forms.
14729
14730 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
14731
14732         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
14733         threadpool.c, threads.c: remove static data from rootset.
14734
14735 2004-07-09  Dick Porter  <dick@ximian.com>
14736
14737         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
14738         Don't do any more processing if the matched length was 0.  It was
14739         increasing the size of the string before.  Fixes bug 61167.
14740
14741 2004-07-09  Dick Porter  <dick@ximian.com>
14742
14743         * socket-io.h:
14744         * socket-io.c
14745         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14746         Add support for SO_PEERCRED if its available.
14747
14748 2004-07-09  Peter Bartok <pbartok@novell.com>
14749         * loader.c: winelib.exe.so error message is now only displayed if
14750         MONO_DEBUG is set. To help us avoid questions when people are trying
14751         out the new Managed.Windows.Forms.
14752
14753 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
14754
14755         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
14756         for isinst and castclass wrappers.
14757
14758         * class-internals.h icall.c: Move registration and lookup of JIT icalls
14759         to libmetadata from the JIT, so they could be used by the marshalling
14760         code and the interpreter.
14761
14762         * marshal.c: Register marshalling related JIT icalls here instead of
14763         in mini.c. Use CEE_MONO_ICALL instead of the family of 
14764         CEE_MONO_PROC<x> opcodes to call marshalling functions.
14765
14766         * metadata.h: Remove unneeded marshalling conversions.
14767
14768         * opcodes.c: Update for new opcodes.
14769         
14770 2004-07-08  Martin Baulig  <martin@ximian.com>
14771
14772         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
14773         (mono_debug_get_domain_data): Make this function static.
14774
14775 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
14776
14777         * gc.c, object.h: add nice GC handle API for embedders.
14778
14779 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
14780
14781         * reflection.c: more changes for the new api
14782
14783         * object.c: When we reflect on a field w/ a constant value, it
14784         will not have a memory location, so we must access metadata. Also,
14785         allow easier reading of strings so that we can read them from
14786         the constant data.
14787
14788         * class.c (mono_class_layout_fields): no need for literal fields here.
14789
14790         * class-internals.h: api changes for const fields
14791
14792         * icall.c (ves_icall_get_enum_info): use new apis for const fields
14793
14794 2004-07-06  Martin Baulig  <martin@ximian.com>
14795
14796         * mono-debug.h: Increment version number to 44.
14797
14798         * mono-debug.c (mono_debug_add_wrapper): The second argument is
14799         now a gpointer, rewrote this whole method.
14800
14801         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
14802         function.  Add information about the wrapper in a new "misc table".
14803
14804         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
14805         for the new misc table.
14806
14807 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
14808
14809         * metadata-internals.h image.c: Add a cache for helper signatures.
14810
14811         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
14812
14813 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
14814
14815         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
14816         delegates from a delegate. Fixes #61033.
14817         
14818         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
14819         marshalling of stringbuilder arrays. Fixes #59900.
14820
14821 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
14822
14823         * icall.c: Add EnumBuilder:setup_enum_type icall.
14824
14825 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
14826
14827         * icall.c: Added a new icall for the property version of
14828         OffsetOfStringData.
14829
14830 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
14831
14832         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
14833         it has a constant size across platforms.
14834
14835         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
14836         stack trace.
14837
14838 2004-06-29  Martin Baulig  <martin@ximian.com>
14839
14840         * mono-debug.c (mono_debug_add_method): Protect the whole function
14841         in mono_debugger_lock(), not just parts of it.
14842
14843 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
14844
14845         * reflection.c: make sure padding bytes in heaps are zeroed.
14846
14847 2004-06-24  David Waite  <mass@akuma.org>
14848
14849         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
14850         image.c, loader.c, locales.c, marshal.c, metadata.c,
14851         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
14852         string-icalls.c, threads.c: change to C90-style comments from C99 /
14853         C++ -style
14854
14855 2004-06-24  Dick Porter  <dick@ximian.com>
14856
14857         * threads.c
14858         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
14859         return createdNew.  Fixes bug 60412.
14860
14861         * threads-types.h: 
14862         * icall.c: Add createdNew parameter to CreateMutex icall
14863
14864 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
14865
14866         * reflection.c, object-internals.h: save default value in params.
14867
14868 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14869
14870         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
14871         no need to build a new path combining that with the application base.
14872         Fixes bug #60442.
14873
14874 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
14875
14876         * reflection.c: fixed minor standard compliance issues.
14877
14878 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
14879
14880         * reflection.c: fixed issue with encoding some custom attributes
14881         (arrays in properties and fields, bug #60411).
14882
14883 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14884
14885         * reflection.c: fix start address when copying the public key token.
14886
14887 2004-06-23  Martin Baulig  <martin@ximian.com>
14888
14889         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
14890         the `exc' object in a static object to put it into the GC's root set.
14891
14892 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
14893
14894         * reflection.c: make mono_reflection_setup_internal_class ()
14895         callable a second time to setup a new parent class.
14896
14897 2004-06-23  Dick Porter  <dick@ximian.com>
14898
14899         * threads.c: Check for WAIT_IO_COMPLETION return values.
14900
14901 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
14902
14903         * appdomain.c: Removed the g_free on the public key token. Now copy 
14904         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
14905         * assembly.c: Added public key token string value when loading 
14906         assemblies. Fix bug #60439.
14907         * icall.c: Added missing informations (like public key) in 
14908         GetReferencedAssemblies. Fix #60519.
14909         * image.h: Changed definition for public key token from const char*
14910         public_tok_value to guchar public_key_token [17];
14911         * reflection.c: Updated for changes to public key token.
14912
14913 2004-06-22  Lluis Sanchez Gual
14914
14915         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
14916         for the field in base classes.
14917
14918 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
14919
14920         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
14921         mark headers as not supported, they are installed only for use by the
14922         debugger.
14923
14924 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
14925
14926         * *.c, *.h: avoid namespace pollution in public headers.
14927
14928 2004-06-21  Martin Baulig  <martin@ximian.com>
14929
14930         * exception.c (mono_get_exception_security): It's in
14931         "System.Security", not in "System".
14932
14933         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
14934         the exception classes.
14935
14936 2004-06-21  Martin Baulig  <martin@ximian.com>
14937
14938         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
14939         Protect the exception object from being finalized.
14940
14941 2004-06-21  Martin Baulig  <martin@ximian.com>
14942
14943         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
14944         public function.
14945
14946 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
14947
14948         * reflection.c: Load the assembly in mono_reflection_type_from_name,
14949         if it was not loaded before. Fix parts of #60439.
14950
14951 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
14952
14953         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
14954         code that was broken since Ben's change: wrappers are now
14955         dependent on the method signature only again.
14956
14957 2004-06-21  Martin Baulig  <martin@ximian.com>
14958
14959         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
14960         added interface support.
14961
14962 2004-06-21  Martin Baulig  <martin@ximian.com>
14963
14964         * class.c (mono_vtable_get_static_field_data): New public method.
14965
14966 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
14967
14968         * filewatcher.c : Windows build fix to be compliant with API changes.
14969
14970 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
14971
14972         * class.h, class.c: more accessors.
14973         * metadata.h, metadata.c: prepare for hiding MonoType and
14974         MonoMethodSignature: people should use the accessors from now on
14975         outside of the tree.
14976
14977 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
14978
14979         * *.c, *.h: more API cleanups.
14980
14981 2004-06-18  Jackson Harper  <jackson@ximian.com>
14982
14983         * assembly.c: Trace loading assemblies.
14984         * loader.c: Trace loading native libraries.
14985         * mono-config.c: Trace loading config files.
14986         
14987 2004-06-18  Dick Porter  <dick@ximian.com>
14988
14989         * locales.c: Tell ICU the lengths of strings, it can cope with
14990         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
14991
14992 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
14993
14994         * image.c: swapped name/filename;
14995
14996 2004-06-18  Martin Baulig  <martin@ximian.com>
14997
14998         * mono-debug-debugger.c (write_class): Write the parent class at
14999         the end of the header.
15000
15001 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
15002
15003         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
15004
15005 2004-06-17  Raja R Harinath  <rharinath@novell.com>
15006
15007         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
15008         (bundle_obj): New conditional define.
15009         (BUILT_SOURCES): Remove.
15010         ($(bundle_srcs)): Make parallel-make safe.
15011         (libmonoruntime_la_LIBADD): Make unconditional.
15012         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
15013         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
15014
15015 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
15016
15017         * culture-info-tables.h: It was inconsistent with the latest
15018           supp info files.
15019
15020 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
15021
15022         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
15023         be loaded.
15024
15025         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
15026         with gcc 2.95.
15027
15028 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
15029
15030         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
15031         cleaned up public header threads.h.
15032
15033 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
15034
15035         * Makefile.am, *.c, *.h: more API cleanups.
15036
15037 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
15038
15039         * Makefile.am: removed monosn from compilation.
15040         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
15041         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
15042         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
15043         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
15044         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
15045         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
15046
15047 2004-06-15  Jackson Harper  <jackson@ximian.com>
15048
15049         * assembly.c: Make locales lower case when searching the GAC for
15050         assemblies. gacutil will always make locales lowercase when
15051         installing so this effectively makes them case insensitive.
15052         
15053 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
15054
15055         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
15056         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
15057           parameter which allows to choose whether the wait can be interrupted or 
15058           not. Also added the method mono_monitor_enter(), which locks the monitor
15059           using an infinite wait and without allowing interruption.
15060           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
15061           interrupted.
15062         * object.h: Added new fields in MonoThread. suspend_event holds the event
15063           used to susped/resume the thread. synch_lock is the lock object to use for
15064           modifying the thread state.
15065         * threads.c: Use the new synch_lock object for locking, instead of "this",
15066           which can generate deadlocks.
15067           Moved thread state change in Thread.Sleep and Thread.Join from managed
15068           to unmanaged code. This avoids a deadlock when the thread was suspended
15069           just after acquiring the thread lock.
15070           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
15071           Implemented Thread.Suspend using an event instead of ThreadSuspend,
15072           which is not fully implemented in the io-layer.
15073         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
15074
15075 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
15076
15077         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
15078         threads-types.h: more API cleanups.
15079
15080 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
15081
15082         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
15083         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
15084         threadpool.c, threads.c: first pass at the exported API cleanup.
15085
15086 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
15087
15088         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
15089
15090 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15091
15092         * icall.c: added internalGetHome.
15093
15094 2004-06-14  Dick Porter  <dick@ximian.com>
15095
15096         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
15097         possible to return successfully when '.' or '..' were the only
15098         entries in a directory, but were skipped.  The MonoIOStat was not
15099         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
15100         Fixes bug 59574.
15101
15102 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
15103
15104         * reflection.c: make binaries run on .Net 1.1 by default.
15105
15106 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
15107
15108         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
15109
15110 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
15111
15112         * marshal.c: keep track of struct size with explicit layout
15113         (bug #59979).
15114
15115 2004-06-12  Martin Baulig  <martin@ximian.com>
15116
15117         * mono-debug-debugger.c: Comment out a debugging g_message().
15118
15119 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
15120
15121         * reflection.c, reflection.h: do not free custom attrs that are cached.
15122         * icall.c: use braces to make code clearer.
15123
15124 2004-06-11  Martin Baulig  <martin@ximian.com>
15125
15126         * class.h (MonoInflatedField): New type.
15127         (MonoClassField): Replaced `MonoType *generic_type' with
15128         `MonoInflatedField *generic_info'.
15129
15130         * icall.c
15131         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
15132
15133 2004-06-11  Martin Baulig  <martin@ximian.com>
15134
15135         * reflection.c (mono_image_create_method_token): Correctly encode
15136         varargs methods.
15137
15138 2004-06-11  Martin Baulig  <martin@ximian.com>
15139
15140         * metadata.c (mono_metadata_parse_method_signature): When parsing
15141         a MethodDef which has VarArgs, also set sentinelpos if we don't
15142         have any parameters.
15143
15144 2004-06-11  Martin Baulig  <martin@ximian.com>
15145
15146         * verify.c (mono_method_verify): In CEE_CALL, use
15147         mono_method_get_signature() to get the method's signature, unless
15148         we're a PInvoke method.
15149
15150 2004-06-10  Jackson Harper  <jackson@ximian.com>
15151
15152         * assembly.c: Use <path>/lib/mono/gac for the extra paths
15153         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
15154         logical name as the supplied path is just a prefix to the gac not
15155         the direct path to it.
15156         
15157 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
15158
15159         * reflection.c: make the token for a created method match
15160         the token of the MethodBuilder it was created from
15161         (IKVM requires this behaviour now).
15162
15163 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
15164
15165         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
15166         reflection.c, socket-io.c: leak fixes.
15167
15168 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
15169
15170         * icall.c: handle sentinel pos in vararg methods in position different
15171         from 0.
15172
15173 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15174
15175         * culture-info-tables.h: freshly generated.
15176
15177 2004-06-09  Martin Baulig  <martin@ximian.com>
15178
15179         * loader.c (mono_get_method_constrained): Call `mono_class_init
15180         (constrained_class)'.   
15181
15182 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
15183
15184         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
15185         any methods. Fixes #59629.
15186
15187 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
15188
15189         * culture-info-tables.h: reflecting locale-builder updates.
15190
15191 2004-06-08  Dick Porter  <dick@ximian.com>
15192
15193         * object.h:
15194         * locales.c: Fixed compile warnings, including a real bug in
15195         CompareInfo_internal_compare.
15196         
15197 2004-06-08  Dick Porter  <dick@ximian.com>
15198
15199         * locales.c
15200         (ves_icall_System_Globalization_CompareInfo_internal_index):
15201         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
15202         Double-check the resuls of usearches, because ICU currently
15203         ignores most of the collator settings here.  Fixes bug 59720.
15204         
15205 2004-06-08  Dick Porter  <dick@ximian.com>
15206
15207         * locales.c
15208         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
15209         Fix memory leak and segfault-causing typo.  No idea how this one
15210         lasted so long without being noticed.
15211
15212 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
15213
15214         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
15215         any methods. Fixes #59629.
15216
15217 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15218
15219         * assembly.c:
15220         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
15221         own the critical section before). Removed dead code (that's done
15222         in the preload hook).
15223
15224         (mono_assembly_load_with_partial_name): call the preload hook.
15225
15226 2004-06-08  Martin Baulig  <martin@ximian.com>
15227
15228         * metadata.c (mono_metadata_signature_alloc): Default
15229         `sentinelpos' to -1.
15230
15231         * reflection.c (mono_image_get_array_token): Likewise.
15232
15233 2004-06-08  Martin Baulig  <martin@ximian.com>
15234
15235         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
15236
15237         * metadata.c (mono_metadata_parse_method_signature): When parsing
15238         a MethodDef which has VarArgs, set sentinelpos.
15239
15240         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
15241         `gint16' since we're using -1 for non-varargs methods.
15242
15243         * reflection.c
15244         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
15245         (method_encode_signature): Added varargs support.
15246         (method_builder_encode_signature): Likewise.
15247         (mono_image_get_varargs_method_token): New static method.
15248         (mono_image_create_method_token): New public method; this is
15249         called via an icall instead of mono_image_create_token() when
15250         calling a varargs method.       
15251
15252 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
15253
15254         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
15255
15256 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
15257
15258         * culture-info-tables.h : Reflecting the latest locale-builder that
15259           fixed empty array representation ({} to {0}).
15260
15261 2004-06-07  Jackson Harper  <jackson@ximian.com>
15262
15263         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
15264         looking up extra gac paths. This allows MONO_GAC_PATH to act
15265         exactly like a prefix.
15266         
15267 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
15268
15269         * reflection.c (mono_reflection_type_from_name): Make a copy of the
15270         type name before modifying it. Fixes #59405.
15271
15272 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
15273
15274         * culture-info.h: added fields for "all datetime patterns".
15275         * locales.c: (  ves_icall_System_Globalization_CultureInfo
15276           _construct_datetime_format ()): fill xxx_patterns fields.
15277         * object.h: added fields for "all datetime patterns" to
15278           MonoDateTimeFormatInfo.
15279         * culture-info-tables.h: reflecting locale-builder updates.
15280
15281 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
15282
15283         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
15284         the event has no add and remove methods. Fixes #59629.
15285
15286 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
15287
15288         * object.c: Fixed possible integer overflow when allocating large
15289         strings.
15290
15291 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
15292
15293         * culture-info-tables.h: reflecting locale-builder updates.
15294
15295 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
15296
15297         * culture-info-tables.h: reflecting locale-builder updates.
15298
15299 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
15300
15301         * culture-info-tables.h: reflecting locale-builder updates.
15302
15303 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
15304
15305         * threads.c: Made Thread.Sleep abortable.
15306
15307 2004-06-02  Martin Baulig  <martin@ximian.com>
15308
15309         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
15310
15311         * debug-mono-symfile.h: Bumped symbol file version number to 37.
15312
15313 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
15314
15315         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
15316
15317 2004-05-30  Jackson Harper  <jackson@ximian.com>
15318
15319         * reflection.c: Do not hardcode assembly versions or public key
15320         tokens anymore. All of this except the corlib section was dead
15321         code anyways.
15322         
15323 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
15324
15325         * object.c (mono_runtime_invoke_array): Automatically create boxed
15326         objects for byref valuetypes if needed. Fixes #59300.
15327         
15328         * object.c (mono_method_return_message_restore): Handle 
15329         MONO_TYPE_OBJECT as well.
15330
15331 2004-05-28  Jackson Harper  <jackson@ximian.com>
15332
15333         * reflection.c: The modified type encoding was causing build
15334         problems. Reverted for now.
15335         
15336 2004-05-28  Jackson Harper  <jackson@ximian.com>
15337
15338         * reflection.c/h: Take an assembly ref so that we dont create
15339         fully qualified names when encoding types in the same assembly as
15340         the custom attribute being emitted.
15341         * appdomain.c: Increment version number.
15342         
15343 2004-05-26  Duncan Mak  <duncan@ximian.com>
15344
15345         * icall.c
15346         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15347         Set the full version number (major, minor, build, revision).
15348
15349 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
15350
15351         * marshal.c (emit_struct_conv): increment src/dst after blit
15352         (mono_marshal_get_managed_wrapper,
15353         mono_marshal_get_native_wrapper): make sure we have marshalling
15354         info before marshalling params (info computation affects
15355         blittable)
15356
15357         * class.c (class_compute_field_layout): correctly deal with
15358         blittable
15359         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
15360         value types (as per what windows dows by default)
15361         (mono_class_setup_mono_type): System.ValueType is blittable
15362         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
15363         blittable
15364
15365         * marshal.c (mono_marshal_load_type_info): flag types  as
15366         non-blittable if the native layout doesn't match the managed
15367         layout
15368
15369 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15370
15371         * appdomain.c: don't add stuff in the private search path that is
15372         above the application base. If application base is not set, there's
15373         no private search path.
15374
15375 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
15376
15377         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
15378         byref struct arguments in native->managed marshalling.
15379
15380 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
15381
15382         * marshal.c (mono_marshal_get_runtime_invoke): correctly
15383         cache methods using signature (special case for methods
15384         that are value type or string class)
15385         
15386         * image.c (mono_image_close): clean up allocated GSList's
15387         in runtime_invoke_cache.
15388
15389 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15390
15391         * mono-config.c: set the correct path for mono_cfg_dir on windows when
15392         there's no MONO_CFG_DIR environment variable defined.
15393
15394 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15395
15396         * threads.c: windows version must be >= 0x0500 to include OpenThread.
15397
15398 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
15399
15400         * threadpool.c: Really wait for 500ms after the async call, even if the wait
15401           is interrumped.
15402         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
15403           before waiting for it, and call CloseHandle after the wait to unref it.
15404           This will make sure that handles are not disposed too early.
15405
15406 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15407
15408         * appdomain.c:
15409         * appdomain.h:
15410         * icall.c: removed
15411         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
15412         needed now.
15413
15414         * object.c: se the application_base only for the domain that runs
15415         Main. Fixes bug #59216,
15416
15417 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15418
15419         * appdomain.c:
15420         * object.c: only the domain in which Main is run have
15421         SetupInformation.ConfigurationFile set, so moved a few lines from
15422         appdomain.c to object.c.
15423
15424 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15425
15426         * appdomain.c: we tried to load [name].(dll|exe), but according
15427         to bug #57710, we must also try [culture]/[name].(dll|exe) and
15428         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
15429         There's a test case attached to bug #58922.
15430
15431 2004-05-27  Dick Porter  <dick@ximian.com>
15432
15433         * icall.c:
15434         * file-io.c: Implemented icalls for locking and unlocking regions
15435         in a file.
15436         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
15437         FALSE on error (fixes both compiler warning and real bug.)
15438
15439 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
15440
15441         * culture-info-tables.h: reflecting locale-builder updates.
15442
15443           (Added missing ChangeLog entry for 05/26)
15444
15445 2004-05-27  Jackson Harper  <jackson@ximian.com>
15446
15447         * locales.c: Fix some cut and paste errors.
15448         
15449 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15450
15451         * mono-config.c: set the correct path for config. directory on windows.
15452
15453 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
15454
15455         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
15456           on win32.
15457
15458 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
15459
15460         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
15461         from pinvoke functions.
15462         
15463         * marshal.c (mono_ftnptr_to_delegate): Implement this.
15464
15465 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
15466
15467         * culture-info-tables.h: reflecting locale-builder updates.
15468
15469 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
15470
15471         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
15472         #59086.
15473
15474 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
15475
15476         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
15477         * icall.c: Modified icalls for RNG.
15478         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
15479         Windows (CryptoAPI).
15480
15481 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
15482
15483         * locales.c: Fix build.
15484
15485 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
15486
15487         * culture-info-tables.h: reflecting locale-builder updates.
15488
15489 2004-05-25  Jackson Harper  <jackson@ximian.com>
15490
15491         * locales.c: When creating the current culture use the $LANGs
15492         specific culture. So DateTimeFormat and NumberFormat entries are created.
15493         
15494 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
15495
15496         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
15497         a char array as parameter.
15498
15499 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
15500
15501         * image.c: In mono_image_open(), always use an absolute path name to
15502           look for already loaded images.
15503
15504 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
15505
15506         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
15507         missing in the windows build (like older cygwin include files).
15508
15509 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
15510
15511         * icall.c: Fixed check for possible integer overflow in Buffer_
15512         BlockCopy icall. Replaced comments style // by /* */.
15513
15514 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
15515
15516         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
15517         
15518         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
15519         check after MONO_VTADDR. Fixes pinvoke2.exe.
15520
15521         * marshal.h marshal.c metadata.h: Add beginnings of support for
15522         ftnptr -> delegate marshalling.
15523
15524 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
15525
15526         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
15527         * threads.c: Fix warnings.
15528
15529 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
15530
15531         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
15532         * icall.c: Registered icalls for Suspend and Resume.
15533         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
15534           Thread.Abort.
15535         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
15536         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
15537         * process.c: Use WaitForSingleObjectEx.
15538         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
15539           checkpoints.
15540         * threads.c, threads.h: Make use of new Ex wait methods. Improved
15541           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
15542           for Suspend and Resume. Added new mono_thread_stop, used for stoping
15543           background threads. Added basic support for Abort in Windows.
15544           Start new threads using a managed delegate invoke wrapper. This wrapper
15545           has an interruption checkpoint that is needed since an interruption
15546           can be requested before the thread leaves the unmanaged code that starts 
15547           the thread.
15548         * marshal.c: Added interruption checkpoint after every native call, and
15549           also before managed calls for wrappers called from unmanaged code to
15550           go into managed code.
15551         * object.h: Added new field in MonoThread to keep track of interruption
15552           requests.
15553
15554 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
15555
15556         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
15557         calls.
15558
15559 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15560
15561         * appdomain.c:
15562         * assembly.c:
15563         * gc.c:
15564         * locales.c:
15565         * mono-config.c:
15566         * rand.c: getenv -> g_getenv (windows!)
15567
15568         * process.c: complete_path is also used on non-windows platforms.
15569
15570 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15571
15572         * icall.c: new signature for Process_Start.
15573
15574         * process.[ch]: new signature for Process_Start. If we're on windows
15575         and UseShellExecute is false, we have to search for the program by
15576         ourselves if we don't get a full path.
15577
15578 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
15579
15580         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
15581         marshalling and call CleanUpNativeData if needed. Fixes #58646.
15582
15583 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15584
15585         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
15586         Fixes bug #58373.
15587
15588 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15589
15590         * process.c: use double quotes to quote program name and arguments on
15591         windows. Fixes bug #58575.
15592
15593 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15594
15595         * file-io.c: don't return "." and ".." when using windows Find*File.
15596
15597 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
15598
15599         * marshal.c: Don't pass wrappers to message init because method 
15600         addressed used to lookup metadata. part of remoting[2|3] fix.
15601
15602 2004-05-15  Jackson Harper  <jackson@ximian.com>
15603
15604         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
15605         path is essentially the same as MONO_PATH except that it points to
15606         GACs instead of lib directories.
15607         * loader.h: The user gac is gone so we dont need function to
15608         enable/disable it.
15609         * mono-config.c: user gac option is now gone.
15610         
15611 2004-05-15  Jackson Harper  <jackson@ximian.com>
15612
15613         * culture-info.h: Make defines more consistent, add calendar data
15614         to the culture info table.
15615         * culture-info-tables.h: Add basic calendar data. Basically
15616         everyone gets default gregorian until all the data is
15617         updated.
15618         * locales.c: Use the new consistent defines. Set calendar data for
15619         culture info objects.
15620         * object.h: add a field for calendar data to CultureInfo
15621         
15622 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
15623
15624         * image.c: image->runtime_invoke_cache is keyed on signatures now.
15625         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
15626         a signature.
15627         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
15628         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
15629         an extra param that is the pointer of the method to invoke. The IL for
15630         the invoke method is no longer specific to the method, but to the
15631         signature of the method. Thus, we can share the same code for multiple
15632         methods. This reduces the number of methods that have to be compiled.
15633
15634 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
15635
15636         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
15637
15638         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15639
15640         * icall.c: Optimize Buffer.BlockCopy.
15641
15642 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15643
15644         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
15645         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
15646         quote). Changed them to "MMMM yyyy".
15647
15648 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
15649
15650         * rand.c
15651         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
15652
15653 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
15654
15655         * reflection.h: Updated after changes to managed structures.
15656
15657         * appdomain.c: Bump corlib version.
15658
15659 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15660
15661         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
15662         windows.
15663
15664 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15665
15666         * Makefile.am: link to ../os/libmonoos.la on windows.
15667
15668         * assembly.c:
15669                 -If MONO_DEBUG, warn about non-existing directories in
15670                 MONO_PATH.
15671                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
15672                 compile time variable.
15673                 -Removed init_default_path and call mono_set_rootdir from
15674                 libmonoos.a instead (windows only).
15675
15676         * assembly.h: declare mono_assembly_getrootdir().
15677
15678         * domain.c:
15679         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
15680
15681         * loader.c: s/getenv/g_getenv/
15682
15683 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
15684
15685         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
15686
15687         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
15688
15689         * metadata.h: Add new marshalling conversions.
15690
15691         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
15692         function.
15693
15694         * reflection.c (mono_reflection_get_type): Lookup the type in all
15695         modules of a multi-module assembly. Fixes #58291.
15696
15697 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
15698
15699         * threads.c: Before aborting a background, set the StopRequested
15700         state.  This avoids throwing the Abort exception.
15701         In mono_thread_manage, don't continue with the shutdown until all
15702         aborted threads have actually stopped.
15703
15704 2004-05-10  Jackson Harper  <jackson@ximian.com>
15705
15706         * locales.c: Remove the modifier from culture names.
15707         
15708 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15709
15710         * Makefile.am: monosn is not installed any more. It has been deprecated
15711         in favor of sn.
15712
15713 2004-05-07  Jackson Harper  <jackson@ximian.com>
15714
15715         * locales.c
15716         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
15717         Fix array construction, add bailout if the length is 0.
15718
15719 2004-05-07  Dick Porter  <dick@ximian.com>
15720
15721         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
15722         machine doesn't have a DNS entry.  Patch by Urs Muff
15723         (umuff@quark.com), fixes bug 57928.
15724
15725 2004-05-06  Jackson Harper  <jackson@ximian.com>
15726
15727         * reflection.c: Handle null PublicTokens properly. alloc mem for
15728         assembly names culture so we dont crash when freeing it.
15729         
15730 2004-05-06  Jackson Harper  <jackson@ximian.com>
15731
15732         * assembly.c: Check the usergac when loading with partial names.
15733         
15734 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
15735
15736         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
15737         does nothing for now (not required for Linux/Windows) but the class
15738         library can call it (and a newer or modified runtime could need it).
15739         * icall.c: Registred icall.
15740
15741 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15742
15743         * loader.c: prints a message on module loading error we set MONO_DEBUG
15744         environment variable.
15745
15746 2004-05-05  Jackson Harper  <jackson@ximian.com>
15747
15748         * appdomain.c: Handle PublicKeyToken=null properly.
15749         
15750 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
15751
15752         * environment.c|h: Added icall ves_icall_System_Environment_
15753         GetOSVersionString to get the current OS version as a string.
15754         * icall.c: Registred icall.
15755
15756 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
15757
15758         * object.c: in mono_object_get_virtual_method(), take into account that
15759         non-virtual methods don't have a slot in the vtable. Check needed when
15760         the object is a proxy.
15761
15762 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
15763
15764         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
15765         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
15766
15767         * object.c (mono_class_compute_gc_descriptor): Fix warning.
15768
15769         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
15770         passed when a valuetype is expected.
15771
15772         * object.c (mono_unhandled_exception): Only set the exit code if the
15773         exception happens in the main thread. Fixes thread5.exe.
15774
15775         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
15776         invalid names. Fixes #58047.
15777
15778 2004-05-03  Jackson Harper  <jackson@ximian.com>
15779
15780         * assembly.c: This line was committed accidently and is unneeded.
15781         
15782 2004-05-03  Jackson Harper  <jackson@ximian.com>
15783
15784         * icall.c: Add new icall for Assembly::LoadWithPartialName
15785         * assembly.c/.h: new function that probes the GAC to load partial
15786         assembly names by Paolo Molaro.
15787         
15788 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15789
15790         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
15791         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
15792         (type_get_fully_qualified_name): Added PublicKeyToken when building a
15793         full type name.
15794
15795 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15796
15797         * appdomain.c: fixed check for 'neutral' culture and removed warning.
15798         * reflection.c: fix bug when parsing a full type name and Version is not
15799         the last thing in the string.
15800
15801 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
15802
15803         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
15804         crashes when it is freed.
15805
15806 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15807
15808         * assembly.c: print the compat warning to stderr.
15809
15810 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
15811
15812         * assembly.c (mono_assembly_load_references): Add a compatibility
15813         hack to run old applications that might be still referencing the
15814         3300-based assemblies, only do this for System.xxx.
15815
15816 2004-05-01  Jackson Harper  <jackson@ximian.com>
15817
15818         * appdomain.c: If the culture is neutral we set it to "".
15819         
15820 2004-04-29  Jackson Harper  <jackson@ximian.com>
15821
15822         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
15823
15824 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
15825  
15826         * string-icalls.c: added low overhead function for copying chars
15827         * icall.c: added needed icall for the above function
15828  
15829 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15830
15831         * icall.c: fix return value of get_global_assembly_cache.  Implemented
15832         Environment.GetLogicalDrives.
15833
15834 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
15835
15836         * rand.c: try and talk to egd or prngd
15837         for random bytes if opening devices fail.
15838
15839 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
15840
15841         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
15842         alignment for the type using the native alignment of its members 
15843         instead of using klass->min_align.
15844
15845         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
15846
15847 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15848
15849         * file-io.c:
15850         * socket-io.c: added check for sys/aio.h.
15851
15852 2004-04-28  Dick Porter  <dick@ximian.com>
15853
15854         * threads.c: Don't abort a thread thats already aborting, when
15855         terminating everything.
15856
15857 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15858
15859         * icall.c: added 2 new async calls for Socket.
15860
15861         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
15862         IO on *nix systems.
15863
15864         * threadpool.c: removed unused variable.
15865
15866 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
15867
15868         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
15869
15870 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
15871
15872         * locales.c: put back string_invariant_tolower () and
15873         string_invariant_toupper ().
15874
15875 2004-04-26 David Waite <mass@akuma.org>
15876
15877         * file-io.h:
15878         * socket-io.h:
15879         * threads.h:
15880         * unicode.h: remove comma from end of enumeration declarations
15881
15882 2004-04-26 David Waite <mass@akuma.org>
15883
15884         * debug-mono-symfile.h:
15885         * decimal.c:
15886         * mono_debug.h:
15887         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
15888
15889
15890 2004-04-26  Jackson Harper  <jackson@ximian.com>
15891
15892         * appdomain.c: Increment version number.
15893         
15894 2004-04-26  Jackson Harper  <jackson@ximian.com>
15895
15896         * appdomain.c: Set assembly references public token value when
15897         PublicKeyToken is specified, not the hash_value. Free public token
15898         values when free assembly name data. Previously the public key
15899         token was hex decoded, however we are using hex encoded public key
15900         tokens, so this is not neccasary.
15901         * assembly.c: Lookup assemblies in the gac if their public token
15902         value is set. Add function to allow enabling user gac
15903         lookups. Specify whether or not the assembly was loaded from the
15904         GAC. Compare full assembly names when checking the cache for
15905         assemblies (Temporarily disabled see comment in code). Remove
15906         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
15907         specifies trace-loader they get extra info to stdout on the
15908         loading of assemblies.
15909         * image.h: Add a field for an assembly references public token
15910         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
15911         whether an assembly has been loaded from the GAC.
15912         * image.c: Remove a corlib -> mscorlib name mapping.
15913         * loader.h: Add function to enable/disable the user gac.
15914         * mono-config.c: Check if the usergac is enabled in the config
15915         file.
15916         * icall.c: New icall to determine whether or not an assembly has
15917         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
15918         * tabldefs.h: Add constant for assemblyref flag that specifies a
15919         full public key is used instead of a public token.
15920         * reflection.c: Remove mscorlib -> corlib mappings. Set
15921         PublicTokenValue instead of hash value. This value is a hex
15922         string so it does not need to be expanded.
15923
15924 2004-04-26  Martin Baulig  <martin@ximian.com>
15925
15926         * mono-debug-debugger.c (mono_debugger_initialize): Set
15927         `mono_debugger_initialized' before calling mono_debug_lock().
15928
15929 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
15930
15931         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
15932           InternalToUpper/InternalToLower.
15933         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
15934           removed invariant culture shortcut.  This is now done in managed code.
15935         * locales.c: (string_invariant_toupper/tolower) removed.
15936
15937 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15938
15939         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
15940         Added Poll internal call.
15941
15942         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
15943         call for Poll. Select was too heavy for polling a single socket.
15944
15945         * threadpool.[ch]: added mono_threadpool_cleanup.
15946         * threads.c: use it. Don't use Thread_Abort on windows.
15947
15948 2004-04-23  Martin Baulig  <martin@ximian.com>
15949
15950         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
15951
15952 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
15953
15954         * icall.c: Registred new icalls for key pair protection and added an
15955         icall for Environment.GetFolderPath on Windows.
15956         * security.c|h: Added new icalls for key pair protection.
15957
15958 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15959
15960         * socket-io.c: don't display the non-supported family warning for known
15961         families. Now this is not displayed on windows when checking support
15962         for IPv4/IPv6.
15963
15964 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15965
15966         * class.c: don't display the layout warning for static fields.
15967
15968 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
15969
15970         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
15971         * locales.c, locales.h: Added new icalls for culture-specific
15972         Char.ToLower and Char.ToUpper.
15973
15974 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15975
15976         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
15977         by David Waite.
15978
15979 2004-04-20  Martin Baulig  <martin@ximian.com>
15980
15981         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
15982         of the type name before passing it to mono_reflection_type_from_name().
15983
15984 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
15985
15986         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
15987         encodings here. Fixes #56965.
15988
15989 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
15990
15991         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
15992         fix test on strstr result not that I can see anything that
15993         relies on the result.
15994
15995 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
15996
15997         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
15998         Fixes #57081.
15999
16000         * marshal.c (mono_marshal_get_string_encoding): New helper function.
16001
16002         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
16003         function to determine which marshalling to use for strings. Fixes
16004         #56965.
16005
16006         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
16007
16008         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
16009
16010 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
16011
16012         * icall.c: #include mono-config.h
16013
16014 2004-04-15  Jackson Harper  <jackson@ximian.com>
16015
16016         * culture-info-tables.h: Fix date formats for en-US culture.
16017         
16018 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
16019
16020         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
16021         ThreadPool.SetMinThreads.
16022         * threadpool.c: Implemented ThreadPool.GetMinThreads and
16023         ThreadPool.SetMinThreads.
16024
16025 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
16026
16027         * mono-config.c: also load the .config file in the directory
16028         where the assembly was found.
16029
16030 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
16031
16032         * assembly.c: load per-assembly config files.
16033         * icall.c: decrapified code to get the config dir and moved to
16034         mono-config.c.
16035         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
16036         per-assembly config files. When doing a dll map lookup give precedence
16037         to the per-assembly data.
16038
16039 2004-04-14  Martin Baulig  <martin@ximian.com>
16040
16041         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
16042         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
16043         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
16044
16045         * mono-debugger-debugger.c: While the debugger is locked, remember
16046         whether the symbol tables have changes and send one single
16047         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
16048
16049 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
16050
16051         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
16052
16053         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
16054         function.
16055
16056         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
16057         account when marshalling string arrays. Fixes #56965.
16058
16059 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
16060
16061         * icall.c: Add new icalls mapping for security.
16062         * security.c|h: Add internal calls for WindowsIdentity,
16063         WindowsImpersonationContext and WindowsPrincipal.
16064
16065 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
16066
16067         * class.c: Added comment to ensure the System.MonoDummy class
16068         is removed when no longer necessary
16069
16070 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
16071
16072         * appdomain.c: Pass arguments to the bootstraping exceptions to
16073         minimize JITed methods at boot
16074
16075         * metadata.c (mono_exception_from_name_two_strings): Allow for the
16076         second string to be null.
16077
16078         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
16079         Change the protocol to minimize the JIT methods at startup.  Now
16080         it Returns the internal codepage, if the value of "int_code_page"
16081         is 1 at entry, and we can not compute a suitable code page
16082         number, returns the code page as a string.
16083
16084 2004-04-13  Jackson Harper  <jackson@ximian.com>
16085
16086         * culture-info-tables.h: Fix number of decimal digits for all
16087         english locales.
16088
16089 2004-04-13  Jackson Harper  <jackson@ximian.com>
16090
16091         * icall.c: Clairfy out of sync error message. It is not always
16092         your corlib that is out of sync.
16093
16094 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
16095
16096         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
16097         properties when only the set accessor is overriden. Fixes #55874.
16098
16099 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
16100
16101         * assembly.c (mono_assembly_load_references): Make this thread safe.
16102         Fixes #56327.
16103
16104 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
16105
16106         * monosn.c: Add missing initialization calls.
16107
16108 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
16109
16110         * locales.c:
16111         ves_icall_System_Globalization_CultureInfo_construct_number_format
16112         Fix g_assert so it compiles on fussier compilers re int/ptr
16113         mismatch
16114
16115 2004-04-08  Dick Porter  <dick@ximian.com>
16116
16117         * socket-io.h:
16118         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
16119         53992.  Also rearrange the code so that the internal calls return
16120         an error value and exceptions are thrown from managed code.
16121
16122         * icall.c: Add type info to the socket icalls.
16123
16124 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16125
16126         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
16127         owes me a beer.
16128
16129 2004-04-07  Martin Baulig  <martin@ximian.com>
16130
16131         * class.c (mono_class_from_generic_parameter): Don't default
16132         `klass->parent' to `mono_defaults.object_type'.
16133
16134 2004-04-07  Martin Baulig  <martin@ximian.com>
16135
16136         * reflection.c (mono_reflection_initialize_generic_parameter): Set
16137         `param->pklass->reflection_info'.       
16138
16139 2004-04-07  Jackson Harper  <jackson@ximian.com>
16140
16141         * culture-info-tables.h: Fix date separator symbol.
16142         
16143 2004-04-07  Martin Baulig  <martin@ximian.com>
16144
16145         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
16146         from System.Type to System.MonoType.
16147
16148 2004-04-07  Martin Baulig  <martin@ximian.com>
16149
16150         * reflection.h
16151         (MonoReflectionGenericParam): Added `has_reference_type' and
16152         `has_value_type' fields.
16153
16154         * reflection.c (mono_image_get_generic_param_info): Encode the
16155         correct flags if we have the `class' or `struct' constraint.
16156
16157 2004-04-07  Martin Baulig  <martin@ximian.com>
16158
16159         * reflection.h
16160         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
16161
16162 2004-04-07  Jackson Harper  <jackson@ximian.com>
16163
16164         * appdomain.c: Revert extra patches, just wanted to bump the
16165         version number.
16166         
16167 2004-04-07  Jackson Harper  <jackson@ximian.com>
16168
16169         * Makefile.am: Add culture-info private headers.
16170         * icall.c: Add new icalls for contructing locales.
16171         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
16172         * locales.h: Declare new culture info construction methods.
16173         * object.h: Add new fields used to avoid the CultureMap to
16174         MonoCultureInfo.
16175         * culture-info.h: Definition of structs used in the culture info
16176         tables.
16177         * culture-info-tables.h: Autogenerated tables that contain culture
16178         info data. This file was generated with the locale-builder tool.
16179         * appdomain.c: Incement corlib version number.
16180         
16181 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
16182
16183         * appdomain.c: (mono_runtime_init) move mono_thread_init
16184         to before mono_object_new calls so critical sections
16185         are initialized before use.
16186
16187 2004-04-07  Martin Baulig  <martin@ximian.com>
16188
16189         * icall.c
16190         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
16191         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
16192         (ves_icall_MonoGenericParam_initialize): Removed.
16193         (monogenericparam_icalls): Removed.
16194         (generictypeparambuilder_icalls): Added new table for
16195         System.Reflection.Emit.GenericTypeParameterBuilder.
16196
16197         * reflection.c
16198         (mono_reflection_define_generic_parameter): Removed.
16199         (mono_reflection_initialize_generic_parameter): This is now called
16200         from GenericTypeParameterBuilder's .ctor.
16201
16202 2004-04-06  Martin Baulig  <martin@ximian.com>
16203
16204         * class.c (mono_class_init): Don't inflate nested classes in a
16205         generic instance.
16206         (mono_type_get_name_recurse): Include the generic arguments for
16207         generic instances and generic type declarations.
16208         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
16209         (_mono_class_get_instantiation_name): Removed.
16210         (mono_class_create_generic): Always use `gklass->name' as our name.
16211
16212         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
16213
16214         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
16215         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
16216         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
16217         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
16218         closed generic methods here.
16219
16220         * reflection.c
16221         (mono_reflection_generic_inst_get_nested_types): Removed.
16222         (inflate_mono_method): Copy the generic parameters from the
16223         MonoMethodHeader into out MonoGenericMethod.
16224
16225 2004-04-06  Martin Baulig  <martin@ximian.com>
16226
16227         * row-indexes.h
16228         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
16229
16230         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
16231
16232         * reflection.c (build_compressed_metadata): If we have any entries
16233         in the GenericParam, MethodSpec or GenericParamConstraint tables,
16234         set the header version to 1.1.
16235
16236 2004-04-06  Martin Baulig  <martin@ximian.com>
16237
16238         * class.c (mono_class_init): If we're a generic instance,
16239         initialize our nested classes, too.
16240         (_mono_class_get_instantiation_name): Deal with the new `!%d'
16241         suffix. 
16242
16243 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16244
16245         * process.c: quote the argument passed to the shell on windows.
16246
16247 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
16248
16249         * threads.c (mono_alloc_special_static_data): Allow this to be
16250         called during startup.
16251
16252 2004-04-02  Martin Baulig  <martin@ximian.com>
16253
16254         * icall.c
16255         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
16256
16257 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
16258
16259         * icall.c: Fix build.
16260
16261 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
16262
16263         * Makefile.am: Added security.c|h.
16264         * icall.c: Added icall for get_UserName;
16265         * security.c: New file for security related icalls. Added function
16266         get_UserName for System.Environment (fix #56144).
16267         * security.h: New. Header file for security.c
16268
16269 2004-04-02  Dick Porter  <dick@ximian.com>
16270
16271         * icall.c: Deleted the icalls that were obsoleted some time ago
16272         by the ICU string code, and which were mixed into the icall
16273         rearranging.  Fixes bug 55969.
16274
16275         * string-icalls.h: 
16276         * string-icalls.c: Deleted the code that those icalls reference.
16277
16278 2004-04-01  Martin Baulig  <martin@ximian.com>
16279
16280         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
16281
16282         * class.c (mono_class_from_generic_parameter): Don't set 
16283         TYPE_ATTRIBUTE_INTERFACE.
16284         (my_mono_class_from_generic_parameter): Likewise.
16285
16286 2004-04-01  Martin Baulig  <martin@ximian.com>
16287
16288         * loader.c (find_method): Added an optional `MonoClass *ic'
16289         argument to search in a specific interface.
16290         (mono_get_method_constrained): New public function.
16291
16292 2004-04-01  Martin Baulig  <martin@ximian.com>
16293
16294         * reflection.c (mono_image_get_generic_field_token): Use the
16295         `handleref' cache here.
16296
16297 2004-04-01  Martin Baulig  <martin@ximian.com>
16298
16299         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
16300
16301         * reflection.c (create_generic_typespec): Use the `typespec' hash
16302         here, not the `typeref' one.    
16303
16304 2004-04-01  Martin Baulig  <martin@ximian.com>
16305
16306         * class.c (mono_class_inflate_generic_type): Moved the
16307         functionality into a new static inflate_generic_type() which
16308         returns NULL if it didn't do anything.  Only increment the
16309         `mono_stats.inflated_type_count' if we actually inflated
16310         something.
16311         (mono_class_get_full): Check the classes type to see whether we
16312         need to inflate it; also inflate MONO_TYPE_(M)VAR.
16313
16314 2004-04-01  Jackson Harper  <jackson@ximian.com>
16315
16316         * reflection.c: Set culture for assembly references.
16317         
16318 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
16319
16320         * reflection.[ch], icall.[ch], Fix support for pinning variables.
16321
16322 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16323
16324         * assembly.c:
16325         (do_mono_assembly_open): the critical section also covers
16326         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
16327
16328 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16329
16330         * threads.c:
16331         (mono_manage_threads): abort the background threads when finishing.
16332         Fixes bug #47232.
16333
16334 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16335
16336         * gc.c: only close the done_event handle if there was no timeout.
16337         C-ified comments.
16338
16339 2004-03-30  Martin Baulig  <martin@ximian.com>
16340
16341         * icall.c (icall_entries): It's called "System.Activator", not
16342         "System.Activation".    
16343
16344 2004-03-30  Martin Baulig  <martin@ximian.com>
16345
16346         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
16347         (mono_class_create_from_typespec): Likewise.
16348
16349 2004-03-30  Martin Baulig  <martin@ximian.com>
16350
16351         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
16352         `has_ctor_constraint' and `initialized'.
16353
16354 2004-03-30  Martin Baulig  <martin@ximian.com>
16355
16356         * reflection.c (encode_new_constraint): New static function to add
16357         the constructor constraint attribute to a type parameter.
16358         (encode_constraints): Call encode_new_constraint() if necessary.
16359
16360         * reflection.h
16361         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
16362
16363         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
16364         
16365 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
16366
16367         * reflection.c, icall.c: add support for pinning variables. 
16368
16369 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
16370
16371         * marshal.c (mono_marshal_get_managed_wrapper):
16372         init bool local with zero rather than null.
16373
16374 2004-03-29  Martin Baulig  <martin@ximian.com>
16375
16376         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
16377         the "official" behavior here.
16378         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
16379
16380 2004-03-29  Martin Baulig  <martin@ximian.com>
16381
16382         * icall.c: Reflect latest API changes.
16383
16384 2004-03-29  Martin Baulig  <martin@ximian.com>
16385
16386         * loader.c (mono_get_method_from_token): Also call
16387         mono_metadata_load_generic_params () for abstract and interface
16388         methods; replace the type arguments in the method signature with
16389         the ones which are loaded from the metadata.
16390
16391 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
16392
16393         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
16394         of the lock is not the current thread. MS.NET don't do it, in spite of
16395         what the documentation says. See bug #56157.
16396
16397 2004-03-28  Martin Baulig  <martin@ximian.com>
16398
16399         * class.c (mono_class_init): Don't call init_properties() and
16400         init_events() for generic instances; set `prop->parent' when
16401         inflating properties.
16402
16403         * reflection.c (mono_generic_inst_get_object): Call
16404         `mono_class_init (ginst->klass)'.
16405         (mono_type_get_object): Only create a MonoGenericInst if your
16406         generic type is a TypeBuilder.
16407         (do_mono_reflection_bind_generic_parameters): Only set
16408         `ginst->is_dynamic' if our generic type is a TypeBuilder.
16409
16410 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
16411
16412         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
16413         Fixes #56091.
16414
16415 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16416
16417         * icall.c: added Kill_internal icall.
16418         * process.[ch]: added Kill_internal icall.
16419
16420 2004-03-25  Martin Baulig  <martin@ximian.com>
16421
16422         * class.h (MonoStats): Added `generic_instance_count',
16423         `inflated_method_count', `inflated_type_count' and
16424         `generics_metadata_size'.       
16425
16426 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16427
16428         * reflection.c: no warnings now.
16429
16430 2004-03-25  Martin Baulig  <martin@ximian.com>
16431
16432         * class.c (mono_class_get_full): New public function; does a
16433         mono_class_get(), but also takes a `MonoGenericContext *'.
16434
16435         * loader.c (mono_field_from_memberref): Renamed to
16436         `field_from_memberref', made static and added `MonoGenericContext *'
16437         argument.
16438         (mono_field_from_token): Added `MonoGenericInst *' argument.
16439         (method_from_memberef): Likewise.
16440         (mono_get_method_from_token): Likewise.
16441         (mono_get_method_full): New public function; does a
16442         mono_get_method(), but also takes a `MonoGenericContext *'.
16443
16444         * verify.c (mono_method_verify): Get the method's generic context
16445         and pass it to mono_field_from_token(), mono_get_method_full() and
16446         mono_class_get_full().
16447
16448 2004-03-25  Martin Baulig  <martin@ximian.com>
16449
16450         * class.c (mono_class_inflate_generic_type): Take a
16451         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
16452         `MonoGenericMethod *'.
16453
16454 2004-03-25  Martin Baulig  <martin@ximian.com>
16455
16456         * loader.h (MonoMethodInflated): Store the MonoGenericContext
16457         instead of the MonoGenericMethod here.
16458
16459 2004-03-25  Martin Baulig  <martin@ximian.com>
16460
16461         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
16462         each time we create a new MonoGenericInst, we also create a new
16463         context which points back to us.
16464
16465         * class.c (inflate_method): Use `ginst->context' instead of
16466         creating a new context.
16467
16468         * loader.c (method_from_memberref): Use
16469         `klass->generic_inst->context' instead of creating a new context.
16470
16471 2004-03-25  Martin Baulig  <martin@ximian.com>
16472
16473         * class.h (MonoGenericContext): New struct.
16474         (MonoGenericMethod): Removed `generic_inst'.
16475
16476         * class.c (mono_class_inflate_generic_method): Take a
16477         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
16478
16479 2004-03-25  Martin Baulig  <martin@ximian.com>
16480
16481         * loader.h (MonoMethodInflated): New typedef.
16482
16483         * metadata.h (MonoMethodSignature): Removed `gen_method', make
16484         `generic_param_count' consume just 30 bits, added `is_inflated'
16485         and `has_type_parameters' flags (one bit each).
16486
16487         * class.c (mono_class_inflate_generic_method): Create a
16488         MonoMethodInflated instead of a MonoMethodNormal and set
16489         `is_inflated' in the method signature.
16490
16491         * class.h (MonoGenericMethod): Removed `generic_method'.
16492
16493 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
16494
16495         * image.c: Make sure the name of a MonoImage is always an absolute path.
16496           This fixes bug #54415.
16497
16498 2004-03-24  Martin Baulig  <martin@ximian.com>
16499
16500         * class.c (mono_class_setup_vtable): If we're a generic instance,
16501         use our generic type's vtable size.
16502
16503 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
16504
16505         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
16506         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
16507         problems.
16508
16509 2004-03-23  Martin Baulig  <martin@ximian.com>
16510
16511         * class.h (MonoDynamicGenericInst): Added `int count_events' and
16512         `MonoEvent *events'.
16513
16514         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
16515         (typebuilder_icalls): Added "get_event_info"; calls
16516         mono_reflection_event_builder_get_event_info(). 
16517
16518         * reflection.c (mono_reflection_generic_inst_initialize): Added
16519         `MonoArray *events'.
16520         (mono_reflection_event_builder_get_event_info): New function.
16521
16522 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
16523
16524         * object.h: add mono_type_initialization_init
16525
16526         * object.c (mono_runtime_class_init): 
16527         implement class constructor synchronization rules
16528         to cope with threading issues.  
16529         add mono_type_initialization_init
16530
16531         * appdomain.c (mono_runtime_init): call 
16532         mono_type_initialization_init
16533
16534         * class.h: removing initializing field from MonoVTable
16535
16536 2004-03-23  Martin Baulig  <martin@ximian.com>
16537
16538         * class.c (my_mono_class_from_generic_parameter): Use
16539         `param->name' if it's not NULL. 
16540
16541 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
16542
16543         * class.c: do not insert non-virtual methods in the vtable.
16544         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
16545         that means the method is non-virtual. This never would have
16546         happened before.
16547
16548 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
16549
16550         * profiler.c: Added lock for accessing coverage_hash.
16551
16552 2004-03-22  Martin Baulig  <martin@ximian.com>
16553
16554         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
16555         `method->method->signature->generic_param_count != 0' to make it
16556         work for interface methods.
16557
16558 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16559
16560         * process.c: quote the string passed to the shell using g_shell_quote.
16561
16562 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16563
16564         * threads.c:
16565         (mono_threads_manage): don't remove the finalizer thread and self
16566         from the threads hash table so that mono_thread_manage can be called
16567         more than once.
16568
16569 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16570
16571         * process.c: quote the arguments when UseShellExecute is true. Fixes
16572         bug #55790.
16573
16574 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16575
16576         * threads.c: set mono_thread_detach as a cleanup routine for every
16577         thread. This way it's always executed upon thread termination, either
16578         aborted or finished normally. No more xsp hangs!
16579
16580 2004-03-17  Martin Baulig  <martin@ximian.com>
16581
16582         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
16583         `int count_nested' and a `MonoType **nested'.
16584
16585         * reflection.c (mono_reflection_bind_generic_parameters): Moved
16586         most of the functionality into a new static
16587         do_mono_reflection_bind_generic_parameters() and don't take a
16588         `MonoType *nested_in' argument any more.  Don't compute nested
16589         types here.
16590         (mono_reflection_generic_inst_get_nested_types): New public method
16591         to get nested types.
16592
16593         * class.c (mono_class_create_generic): Set `klass->nested_in' if
16594         we're a nested class.
16595
16596         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
16597         mono_reflection_generic_inst_get_nested_types() to compute the
16598         nested types.
16599
16600 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
16601
16602         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
16603         descriptive error message under windows.
16604         
16605 2004-03-17  Martin Baulig  <martin@ximian.com>
16606
16607         * class.c (dup_type): Added `const MonoType *original' argument;
16608         copy the attrs from the original type.
16609
16610 2004-03-17  Martin Baulig  <martin@ximian.com>
16611
16612         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
16613         `m->generic_inst_cache' here.
16614
16615 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
16616
16617         * exception.h exception.c: Add stack_overflow_exception.
16618
16619 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16620
16621         * threadpool.c:
16622         (overlapped_callback): call SetEvent *after* invoking the callback.
16623         No need to call CloseHandle.
16624
16625 2004-03-16  Martin Baulig  <martin@ximian.com>
16626
16627         * reflection.c (mono_image_get_fieldref_token): Take a
16628         `MonoReflectionField *' instead of a `MonoClassField *' and a
16629         `MonoClass *'; store the `MonoReflectionField *' in the hash.
16630
16631 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16632
16633         * appdomain.c: don't add the culture to the filename we're looking for
16634         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
16635
16636 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16637
16638         * locales.c: don't ignore symbols when doing case insensitive compares.
16639         Thanks Dick! Fixes bug #54046.
16640
16641         * threads.c: surround 'threads' usage with enter/leave in
16642         mono_thread_manage.
16643
16644 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
16645
16646         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
16647         implicitly marshalled as [Out]. Fixes #55450.
16648
16649         (mono_marshal_get_runtime_invoke): Zero out the result if there is
16650         an exception.
16651
16652 2004-03-16  Martin Baulig  <martin@ximian.com>
16653
16654         * class.c (mono_class_from_generic_parameter): Use the actual
16655         parameter name. 
16656
16657 2004-03-16  Martin Baulig  <martin@ximian.com>
16658
16659         * reflection.c (type_get_signature_size): New static function.
16660         Compues the size of the type in a method signature.
16661         (method_get_signature_size): New static function; calls
16662         type_get_signature_size() to compute the actual size of the
16663         method's signature.
16664         (method_encode_signature): Use method_get_signature_size() to get
16665         the signature's size rather than using `nparams * 10'.
16666
16667 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16668
16669         * file-io.h: define here WapiOverlapped on windows. I don't want the
16670         regular OVERLAPPED one.
16671
16672         * file-io.c:
16673         * threadpool.c: somehow, BindIoCompletionCallback is not found.
16674         Disabling AIO on windows.
16675
16676 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16677
16678         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
16679         bug #55385.
16680
16681 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16682
16683         * appdomain.c: upgraded corlib version.
16684
16685         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
16686         and BeginWrite. Allow opening files for asynchrnous operations.
16687
16688         * file-io.h: new struct that maps FileStreamAsyncResult.
16689         * icall.c: added new icalls.
16690         * process.[ch]: support setting child process environment variables
16691         and use the SHELL or COMSPEC when UseShellExecute is true.
16692
16693         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
16694         callback for async. IO is here and also BindHandle.
16695
16696         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
16697         from here.
16698
16699 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
16700
16701         * reflection.c (create_custom_attr): Allow len == 0.
16702
16703         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
16704         computation on big-endian machines.
16705
16706 2004-03-13  Martin Baulig  <martin@ximian.com>
16707
16708         * class.h (MonoGenericInst): Added `int count_ifaces'.
16709
16710         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
16711         `ginst->count_ifaces' instead `klass->interface_count' since we
16712         may get called before the vtable is created.
16713
16714         * loader.c (mono_method_get_param_names): If we're a generic
16715         instance, return and don't initialize the class.
16716
16717         * reflection.c (mono_reflection_setup_generic_class): Don't call
16718         ensure_runtime_vtable().
16719         (mono_reflection_bind_generic_parameters): Set
16720         `ginst->count_ifaces'.
16721
16722 2004-03-11  Jackson Harper <jackson@ximian.com>
16723
16724         * icall.c:
16725         * unicode.c:
16726         * unicode.h: Remove unused System.Char icalls.
16727         
16728 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
16729
16730         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
16731         code when we P/Invoke the first library in Windows.Forms, instead
16732         of when we first open the assembly.
16733
16734         * assembly.c: Drop the lookup from here.
16735
16736 2004-03-10  Martin Baulig  <martin@ximian.com>
16737
16738         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
16739         class for properties, fields and events.  Finally fixes #54945.
16740
16741 2004-03-10  Martin Baulig  <martin@ximian.com>
16742
16743         * metadata.c (mono_metadata_class_equal): New static function;
16744         checks whether two generic instances or two generic parameters are
16745         equal.
16746         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
16747         compare classes.        
16748
16749 2004-03-10  Martin Baulig  <martin@ximian.com>
16750
16751         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
16752
16753         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
16754         argument and write it into the `reflection_info' field.
16755
16756         * icall.c
16757         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
16758         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
16759
16760 2004-03-09  Jackson Harper  <jackson@ximian.com>
16761
16762         * char-conversions.h: use 8 bits for numeric data its all we need
16763         * icall.c: numeric data is only 8 bits now.
16764
16765 2004-03-09  Martin Baulig  <martin@ximian.com>
16766
16767         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
16768
16769         * class.c (init_properties, init_events): Initialize the new
16770         `parent' field.
16771
16772         * reflection.c (typebuilder_setup_properties): Likewise.
16773         (typebuilder_setup_events): Likewise.
16774
16775         * reflection.h (MonoEventInfo): Replaced `parent with
16776         `declaring_type' and `reflected_type'.
16777
16778         * icall.c (ves_icall_get_property_info): Distinguish between
16779         declaring and reflected type.
16780         (ves_icall_get_event_info): Likewise.
16781
16782 2004-03-09  Martin Baulig  <martin@ximian.com>
16783
16784         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
16785         (ves_icall_Type_GetField): Correctly set field->klass.
16786
16787 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
16788
16789         * loader.h: Fix warning.
16790
16791 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
16792
16793         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
16794         library routine if present.  Notice that it will still continue
16795         executing even if its missing, for those working on the Gtk#
16796         edition of Windows.Forms.
16797
16798         * assembly.c (do_mono_assembly_open): If loading the
16799         System.Windows.Forms call mono_loader_wini_init.
16800
16801 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
16802
16803         * class.h: Added MonoRemoteClass struct.
16804         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
16805         function for MonoStrings.
16806         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
16807         Added internal call for getting the proxy type.
16808         * marshal.c: Get the type of transparent proxies from its remote_class.
16809         Added methods that generate the IL for type checks and casts:
16810         mono_marshal_get_isinst, mono_marshal_get_castclass, 
16811         mono_marshal_get_proxy_cancast.
16812         * marshal.h: Declaration of the previous new methods.
16813         * object.c: Added new moethods for creating and updating MonoRemoteClass
16814         instances: mono_remote_class, mono_upgrade_remote_class, 
16815         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
16816         * verify.c: FIx transparent_proxy_fields layout.
16817         * appdomain.c: Bump corlib version.
16818
16819 2004-03-04  Jackson Harper  <jackson@ximian.com>
16820
16821         * icall.c: Add icall to access char conversion tables.
16822         * char-conversions.h: Character conversion tables.
16823         * Makefile.am: Add char-conversions.h private header file.
16824         
16825 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
16826
16827         * appdomain.c (unload_thread_main): Increase unloading timeout to
16828         10 sec as a temporary workaround for Nant problems.
16829
16830 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
16831
16832         * gc.c: Add checks for GC_enable and GC_disable.
16833
16834         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
16835         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
16836         (bug #54988).
16837         
16838 2004-02-27  Martin Baulig  <martin@ximian.com>
16839
16840         * reflection.c (mono_reflection_bind_generic_parameters): Take a
16841         `MonoReflectionType *' instead of a `MonoType *'.
16842
16843 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
16844
16845         * gc.c (run_finalize): Avoid finalizing the object representing the
16846         finalizer thread.
16847         (finalizer_thread): Fix warning.
16848
16849 2004-02-25  Martin Baulig  <martin@ximian.com>
16850
16851         * class.c (_mono_class_get_instantiation_name): Added `int offset'
16852         argument for nested types.
16853         (mono_class_create_generic): Added support for nested generictypes.
16854
16855         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
16856         `GList *nested'.
16857
16858         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
16859
16860         * reflection.c (method_encode_signature): Increase the minimum
16861         value of `size' from 10 to 11.
16862         (mono_reflection_bind_generic_parameters): Take `int type_argc'
16863         and `MonoType **types' arguments instead of the `MonoArray
16864         *types'; added `MonoType *nested_in'.  Recursively instantiate
16865         nested classes. 
16866
16867 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
16868
16869         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
16870         stack_overflow_ex members which are used by exception handling.
16871
16872         * appdomain.c (mono_runtime_init): Initialize the new members.
16873
16874         * gc.c (mono_gc_enable): New helper function.
16875         * gc.c (mono_gc_disable): New helper function.
16876
16877 2004-02-23  Martin Baulig  <martin@ximian.com>
16878
16879         * icall.c: I must have been really stupid - make it actually work
16880         this time ;-)
16881
16882 2004-02-23  Martin Baulig  <martin@ximian.com>
16883
16884         * loader.c (method_from_memberref): Only inflate the method if
16885         it's in another klass.
16886
16887 2004-02-23  Martin Baulig  <martin@ximian.com>
16888
16889         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
16890         (mono_class_init): If we're a generic instance and an interface,
16891         compute `class->interface_id'; also create `class->interfaces'
16892         here and inflate them.
16893
16894         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
16895         `ginst->is_open'.
16896         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
16897
16898         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
16899
16900 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
16901
16902         * reflection.c (method_encode_code): Improved the error message
16903         generated by the exception.
16904
16905 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16906
16907         * icall.c: Martin did not do what he said in the ChangeLog for
16908         2004-02-18, but put back the changes for properties and events.
16909         Commenting those changes out again and adding comment to bug #54518.
16910         
16911         * process.c: removed warning.
16912
16913 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
16914
16915         * marshal.c (emit_struct_conv): Print an error message instead of
16916         asserting when a type does not have the StructLayout attribute.
16917
16918 2004-02-20  Martin Baulig  <martin@ximian.com>
16919
16920         * reflection.c (mono_type_get_object): Also use the cache for
16921         generic instances.
16922         (mono_reflection_bind_generic_parameters): Always compute
16923         `ginst->ifaces'.        
16924
16925 2004-02-20  Martin Baulig  <martin@ximian.com>
16926
16927         * class.h (MonoGenericMethod): Removed `klass'.
16928
16929         * class.c (mono_class_inflate_generic_method): Added `MonoClass
16930         *klass' argument.
16931
16932 2004-02-20  Martin Baulig  <martin@ximian.com>
16933
16934         * reflection.c (method_encode_methodspec): Actually use the
16935         uninflated signature for the memberref.
16936
16937 2004-02-20  Martin Baulig  <martin@ximian.com>
16938
16939         * class.h (MonoGenericMethod): Removed `declaring'.
16940
16941         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
16942         is NULL, compute it here.
16943
16944 2004-02-20  Martin Baulig  <martin@ximian.com>
16945
16946         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
16947
16948         * metadata.c (mono_metadata_generic_inst_hash): New method.
16949         (mono_metadata_generic_inst_equal): New method.
16950
16951         * reflection.c (mono_reflection_bind_generic_parameters): Use the
16952         `klass->image->generic_inst_cache' cache to avoid creating
16953         duplicate MonoGenericInst's.
16954
16955         * class.c (mono_class_inflate_generic_type): Use the cache.
16956
16957 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
16958
16959         * object.c: fixed gc descriptor calculation for embedded valuetypes.
16960
16961 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16962
16963         * icall.c: added Socket.WSAIoctl icall.
16964
16965         * socket-io.[ch]: implemented
16966         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
16967
16968 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
16969
16970         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
16971
16972 2004-02-18  Urs C Muff  <umuff@quark.com>
16973
16974         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
16975         this work on PPC and other big-endian architectures.
16976
16977         * debug-mono-symfile.h: Prepended the names of all the `guint32'
16978         fields with an underscore to make sure they're only accessed by
16979         the read32() macro.
16980
16981 2004-02-18  Martin Baulig  <martin@ximian.com>
16982
16983         * icall.c: Put the klass->refclass changes back for methods and
16984         fields, but not for properties and events.  We're currently not
16985         distinguishing between DeclaringType and ReflectedType for
16986         properties and events, that's what caused the regressions.
16987
16988 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16989
16990         * object.c:
16991         (mono_async_result_new): the handle can be NULL.
16992
16993         * threadpool.c: Use an event instead of a semaphore, don't initialize
16994         it until needed. This saves quite a few semaphores from being created
16995         when using the threadpool.
16996
16997 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
16998
16999         * object.c (mono_string_is_interned_lookup): Fix interning of long
17000         strings. Fixes #54473.
17001
17002         * domain.c (ldstr_equal): Optimize if the two strings are equal.
17003
17004         * icall.c: Revert the klass->refclass changes since they introduce
17005         regressions (bug #54518).
17006
17007 2004-02-18  Martin Baulig  <martin@ximian.com>
17008
17009         * class.c (mono_class_init): If we're a generic instance and don't
17010         come from a TypeBuilder, inflate our members here.
17011         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
17012         (mono_class_create_generic): New public method.
17013         (mono_class_initialize_generic): Removed.
17014         (get_instantiation_name): Renamed to
17015         _mono_class_get_instantiation_name() and made it public.
17016
17017 2004-02-18  Martin Baulig  <martin@ximian.com>
17018
17019         * class.c (mono_class_inflate_generic_type): Clear the new
17020         instance's `nginst->klass' when inflating a generic instance.
17021         (mono_class_is_subclass_of): Added (basic) support for generic
17022         instances.
17023
17024 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
17025
17026         * appdomain.h, domain.c: use a MonoCodeManager instead of a
17027         MonoMempool to hold compiled native code.
17028
17029 2004-02-17  Martin Baulig  <martin@ximian.com>
17030
17031         * class.h (MonoDynamicGenericInst): Added `count_properties' and
17032         `properties'.
17033
17034         * reflection.c (mono_reflection_generic_inst_initialize): Added
17035         `MonoArray *properties' argument.
17036
17037         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
17038
17039 2004-02-17  Martin Baulig  <martin@ximian.com>
17040
17041         * icall.c (ves_icall_Type_GetFields): Renamed to
17042         ves_icall_Type_GetFields_internal() and added a
17043         `MonoReflectionType *rtype' argument; pass it to
17044         mono_field_get_object() to set the field's "reflected" type.
17045         (ves_icall_Type_GetConstructors): Likewise.
17046         (ves_icall_Type_GetEvents): Likewise.
17047         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
17048         argument; pass it to mono_method_get_object() to set the method's
17049         "reflected" type.       
17050
17051 2004-02-17  Martin Baulig  <martin@ximian.com>
17052
17053         * class.h (MonoDynamicGenericInst): New type.
17054         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
17055
17056         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
17057         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
17058         (ves_icall_MonoGenericInst_GetFields): New interncall.
17059
17060         * class.c (mono_class_from_generic): Don't call
17061         mono_class_initialize_generic() if this is a dynamic instance;
17062         ie. it's being created from a TypeBuilder.
17063         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
17064         `class->byval_arg.type'.
17065
17066         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
17067         to `inflate_method' and made static.
17068         (mono_reflection_inflate_field): Removed.
17069         (mono_reflection_generic_inst_initialize): New public method.
17070
17071         * reflection.h (MonoReflectionGenericInst): Removed `methods',
17072         `ctors' and `fields'; added `initialized'.
17073
17074 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
17075
17076         * debug-helpers.c (mono_method_full_name): Fix output for empty
17077         namespaces.
17078
17079 2004-02-12  Martin Baulig  <martin@ximian.com>
17080
17081         * class.h (MonoClassField): Added `MonoType *generic_type'.
17082
17083         * reflection.c (mono_image_get_fieldref_token): Added support for
17084         instantiated generic types.
17085         (field_encode_inflated_field): Removed.
17086         (mono_image_get_inflated_field_token): Removed.
17087         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
17088
17089         * reflection.h (MonoReflectionInflatedField): Removed.
17090
17091 2004-02-12  Martin Baulig  <martin@ximian.com>
17092
17093         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
17094         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
17095
17096         * reflection.c (mono_image_get_methodspec_token): Take a
17097         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
17098         (mono_image_create_token): Check whether we have a
17099         `method->signature->gen_method' and call
17100         mono_image_get_methodspec_token() if appropriate.
17101         (inflated_method_get_object): Removed.
17102         (mono_reflection_bind_generic_method_parameters): Return a
17103         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
17104         (mono_reflection_inflate_method_or_ctor): Likewise.
17105
17106         * reflection.h (MonoReflectionInflatedMethod): Removed.
17107
17108 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
17109
17110         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
17111         for custom valuetype marshalling.
17112
17113         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
17114
17115 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17116
17117         * icall.c: fixed WSAGetLastError_internal name.
17118
17119 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
17120
17121         * threads.c (mono_thread_attach): Allow this to be called multiple
17122         times for a thread.
17123         
17124         * threads.c (build_wait_tids): Do not wait for ourselves.
17125
17126         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
17127         appdomain list is empty.
17128
17129         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
17130         memory returned by mono_string_builder_to_utf16, since it points into
17131         managed memory. Thanks to Bernie Solomon for noticing this.
17132
17133         * icall.c: Add AppDomainSetup icalls.
17134
17135         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
17136
17137         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
17138         types.
17139
17140         * reflection.c (reflection_methodbuilder_to_mono_method): Save
17141         custom attributes to the method_aux struct. Also fix array indexes etc.
17142
17143         * loader.c (mono_method_get_param_names): Make dynamic case work again.
17144         
17145 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
17146
17147         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
17148         (both static and runtime) and reduce startup time.
17149
17150 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
17151
17152         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
17153         AsAny marshalling conversion instead of crashing.
17154
17155         * marshal.c: Fix warnings.
17156
17157 2004-02-09  Martin Baulig  <martin@ximian.com>
17158
17159         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
17160
17161         * reflection.h (MonoReflectionInflatedMethod): Removed the
17162         `declaring' field, it's now in the unmanaged MonoGenericMethod.
17163
17164         * reflection.c (method_encode_methodspec): Removed the `method'
17165         argument; we get it from `gmethod->declaring'.
17166         (inflated_method_get_object): Removed the `declaring' argument.
17167
17168 2004-02-09  Martin Baulig  <martin@ximian.com>
17169
17170         * class.h (MonoGenericMethod): New type.
17171         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
17172         `generic_method'.
17173
17174         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
17175         a `MonoGenericMethod *gen_method' one.
17176
17177         * class.c (mono_class_inflate_generic_type): Take an additional
17178         `MonoGenericMethod * argument.  This is only non-NULL if we're
17179         inflating types for a generic method.   
17180         (mono_class_inflate_generic_signature): Renamed to
17181         inflate_generic_signature() and made static; take a
17182         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
17183         (inflate_generic_header): Take a `MonoGenericMethod *' argument
17184         instead of a `MonoGenericInst *' one.
17185         (mono_class_inflate_generic_method): Likewise.
17186
17187         * reflection.c (encode_generic_method_sig): Take a
17188         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
17189         (method_encode_methodspec): Likewise.
17190         (inflated_method_get_object): Likewise. 
17191
17192         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
17193         field with a `MonoGenericMethod *gmethod' one.  
17194
17195 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
17196
17197         * class.h (mono_class_has_parent): add parens to expansion
17198         so you can ! this.
17199
17200 2004-02-08  Martin Baulig  <martin@ximian.com>
17201
17202         * image.h (MonoImage): Removed `generics_cache'.
17203
17204         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
17205         instead of a `MonoType *' argument; removed the `inflate_methods'
17206         argument.  Don't inflate methods here.
17207
17208         * loader.c (find_method): If it's a generic instance, call
17209         mono_class_init() on the `sclass->generic_inst->generic_type'.
17210
17211         * metadata.c (mono_type_size): Make this work on uninitialized
17212         generic instances; call it on the `ginst->generic_type's class.
17213
17214         * reflection.c (mono_reflection_bind_generic_parameters): Call
17215         mono_class_from_generic() to create the `ginst->klass'.
17216
17217 2004-02-08  Martin Baulig  <martin@ximian.com>
17218
17219         * class.h (MonoClass): Changed type of `generic_inst' from
17220         `MonoType *' to `MonoGenericInst *'.
17221
17222 2004-02-08  Martin Baulig  <martin@ximian.com>
17223
17224         * icall.c (ves_icall_Type_BindGenericParameters): Just call
17225         mono_type_get_object(), this is now creating a `MonoGenericInst'
17226         for MONO_TYPE_GENERICINST.
17227         (ves_icall_MonoGenericInst_GetParentType): Likewise.
17228         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
17229
17230         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
17231         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
17232         (inflated_method_get_object): Added `MonoClass *refclass' argument.
17233         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
17234         and reflected type.
17235
17236         * reflection.h (MonoReflectionInflatedMethod): Removed
17237         `declaring_type' and `reflected_type'.
17238
17239 2004-02-08  Martin Baulig  <martin@ximian.com>
17240
17241         * class.h (MonoGenericInst): Added `MonoType *parent' and
17242         `MonoType **ifaces'.
17243
17244         * reflection.h (MonoReflectionGenericInst): Removed `klass',
17245         `parent' and `interfaces'.
17246
17247         * reflection.c (mono_reflection_bind_generic_parameters): Take a
17248         `MonoType *' argument and return a `MonoType *'.
17249
17250         * icall.c
17251         (ves_icall_MonoGenericInst_GetParentType): New interncall.
17252         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
17253
17254 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
17255
17256         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
17257         valuetype marshalling.
17258
17259 2004-02-06  Martin Baulig  <martin@ximian.com>
17260
17261         * class.c
17262         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
17263         (my_mono_class_from_generic_parameter): Likewise.
17264
17265 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
17266
17267         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
17268         contents of the symbol files lazily.
17269
17270         * object.h (MonoThread): Add 'name' and 'name_len' fields.
17271
17272         * threads.h threads.c icall.c: New icalls for getting and setting the
17273         threads name.
17274
17275 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
17276
17277         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
17278         Raise an exception when the domain is not found.
17279
17280 2004-02-03  Martin Baulig  <martin@ximian.com>
17281
17282         * reflection.c (mono_image_get_methodspec_token): Use the
17283         uninflated signature; fixes gen-33.
17284
17285 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
17286
17287         * gc.c threads.c: Make the finalizer thread a normal managed thread so
17288         the finalizer code can use thread functionality.
17289
17290         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
17291         the finalizer thread.
17292
17293         * threads.c: Make some functions more robust.
17294
17295         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
17296
17297         * metadata.h: Add new marshalling conventions.
17298
17299         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
17300         stringbuilder marshalling. Fixes #53700.
17301
17302         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
17303
17304         * reflection.c (mono_image_get_type_info): Save declarative security
17305         info.
17306
17307         * reflection.c (mono_image_get_field_info): Handle uninitialized 
17308         unmanaged fields as well.
17309
17310         * appdomain.c: Bump corlib version.
17311
17312 2004-02-01  Martin Baulig  <martin@ximian.com>
17313
17314         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
17315         method type arguments.  
17316
17317 2004-01-30  Duncan Mak  <duncan@ximian.com>
17318
17319         * marshal.h: Add prototype for
17320         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
17321         and
17322         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
17323         fix the build.
17324
17325 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
17326
17327         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
17328         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
17329
17330 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
17331
17332         * marshal.c (mono_marshal_get_native_wrapper): Add support for
17333         custom marshalling of valuetypes.
17334
17335         * marshal.c: Fix some warnings.
17336
17337 2004-01-29  Martin Baulig  <martin@ximian.com>
17338
17339         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
17340         for generic method parameters.
17341
17342         * reflection.c (method_encode_methodspec): Write the uninflated
17343         signature into the methodspec table.
17344         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
17345         is always the uninflated method.
17346         (reflection_methodbuilder_to_mono_method): Copy the generic
17347         parameters from the MethodBuilder into `header->gen_params'.
17348
17349 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
17350
17351         * class.c (mono_class_from_generic_parameter): Fix warning.
17352
17353 2004-01-27  Martin Baulig  <martin@ximian.com>
17354
17355         * class.c (mono_class_from_generic_parameter): Don't create
17356         `klass->methods' here.  
17357
17358 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
17359
17360         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
17361         extension since it does not work with libraries named lib<FOO>.dll.so.
17362
17363 2004-01-25  Martin Baulig  <martin@ximian.com>
17364
17365         * class.c (mono_class_inflate_generic_type): Added support for
17366         MONO_TYPE_GENERICINST.
17367
17368         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
17369         inflate methods on open constructed types.      
17370
17371 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17372
17373         * object.c: fire ProcessExit event in the root AppDomain after running
17374         Main. Fixes bug #53299.
17375
17376 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
17377
17378         * socket-io.c: include the new socket-wrappers.h header.
17379         Use the wrappers instead of the unix socket functions to make the code
17380         more clear.
17381
17382 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
17383
17384         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
17385
17386         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
17387         Fixes #22532.
17388
17389 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
17390
17391         * reflection.c (mono_image_create_pefile): Handle the case when the
17392         entry point is not a MethodBuilder.
17393
17394         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
17395         field to ReflectionMethod since it is not allways a builder.
17396
17397         * reflection.c (type_get_fully_qualified_name): New helper function to
17398         return the fully qualified name of a type.
17399
17400         * reflection.c (encode_marshal_blob): Always emit the fully qualified
17401         type name for custom marshallers.
17402
17403         * reflection.c (mono_marshal_spec_from_builder): Ditto.
17404
17405         * class.c (mono_class_setup_vtable): If a parent class already 
17406         implements an interface, use the implementing methods from that class.
17407         Fixes #53148.
17408
17409 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17410
17411         * threadpool.c: just return instead of ExitThread to allow for thread
17412         clean up earlier.
17413
17414 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
17415
17416         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
17417         when closing resource modules.
17418
17419         * reflection.c (mono_image_create_pefile): Handle the case when the
17420         entry point is not a MethodBuilder.
17421
17422         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
17423         field to ReflectionMethod since it is not allways a builder.
17424
17425 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
17426
17427         * marshal.c (mono_marshal_get_managed_wrapper): 
17428         mono_marshal_alloc takes native int so CONV_I
17429         the arg for 64bits.
17430
17431 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
17432
17433         * reflection.c (fixup_cattrs): New function to fixup the methoddef
17434         tokens in the cattr table. Fixes #53108.
17435
17436 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17437
17438         * loader.c: don't trim ".dll" before looking up in the config file.
17439         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
17440
17441 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
17442
17443         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
17444         Return the module which contains the resource as well.
17445         (ves_icall_System_Reflection_Module_Close): New icall.
17446
17447         * appdomain.c: Bump corlib version number.
17448
17449         * image.c (mono_image_addref): New public function.
17450
17451         * assembly.c: Call mono_image_addref.
17452
17453         * reflection.c (mono_module_get_object): Increase reference count of 
17454         the image.
17455
17456         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
17457         Fixes #22532.
17458
17459         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
17460         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
17461         proper exceptions on DllImport problems.
17462
17463 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
17464
17465         * class.c, metadata.c: eliminate CSIZE macro.
17466
17467 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
17468
17469         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
17470         * object.h: Added async_callback field in MonoAsyncResult.
17471         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
17472         * verify.c: Added async_callback in MonoAsyncResult layout.
17473
17474 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
17475
17476         * reflection.c (mono_reflection_get_custom_attrs): Add support
17477         for Modules.
17478
17479 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
17480
17481         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
17482         marshalling.
17483         (mono_marshal_method_from_wrapper): Add null pointer check.
17484
17485 2004-01-16  Martin Baulig  <martin@ximian.com>
17486
17487         * debug-mono-symfile.h: Set version number to 36 and reflect
17488         latest symbol writer changes.
17489
17490 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
17491
17492         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
17493         multi-dimensional arrays.
17494         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
17495         (mono_class_from_mono_type): Use bounded_array_class_get.
17496         
17497         * class.c (mono_bounded_array_class_get): New function which takes
17498         a 'bounded' bool argument to distinguish vectors from one dimensional
17499         arrays.
17500
17501         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
17502         bounded_array_class_get if the array has bounds.
17503
17504         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
17505         Search modules loaded using AssemblyBuilder:AddModule as well.
17506
17507 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17508
17509         * appdomain.c: increased corlib version.
17510         * filewatcher.c: removed g_print.
17511         * icall.c:
17512         (get_property_info): only allocate what is actually requested.
17513         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
17514
17515 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17516
17517         * Makefile.am: added filewatcher.[ch]
17518         * filewatcher.[ch]: FileSystemWatcher runtime support.
17519         * icall.c: added new FSW icalls.
17520
17521 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
17522
17523         * string-icalls.c: fix stringbuilder regression as suggested by
17524         Iain McCoy <iain@mccoy.id.au>.
17525
17526 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
17527
17528         * process.c (process_read_stringtable_block): Recognize '007f' as
17529         a language neutral stringtable block.
17530
17531 2004-01-12  Patrik Torstensson
17532
17533         * object.h (MonoStringBuilder) : Changed layout to support our
17534         new stringbuilder class.
17535         * marshal.c: Change marshalling to support the new layout of 
17536         string builder.
17537         * appdomain.c: increased version number because new layout of
17538         string builder.
17539
17540 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
17541
17542         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
17543         assembly name as an string instead of an AssemblyName, since it is
17544         easier to extract info from it.
17545
17546         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
17547         the culture subdirectories too. Fixes #52231.
17548
17549 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17550
17551         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
17552         It takes 2 new parameters with an optional name for the method to look
17553         for and case ignoring info.
17554
17555         * threadpool.c: removed unused variable.
17556
17557 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17558
17559         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
17560         It takes 2 new parameters with an optional name for the property to look
17561         for and case ignoring info.
17562         Fixes bug #52753.
17563
17564 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
17565
17566         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
17567         Fix #52451.
17568
17569 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17570
17571         * appdomain.c:
17572         * assembly.c: escape the uri before passing it to g_filename_from_uri.
17573         Fixes bug #52630.
17574
17575 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
17576
17577         * reflection.c: Add support for more than one unmanaged resource.
17578
17579         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
17580         in field->def_value, as done in all other cases.
17581
17582         * reflection.c (mono_reflection_get_custom_attrs): Add support for
17583         TypeBuilders.
17584
17585         * reflection.c (mono_reflection_create_runtime_class): Remove 
17586         errorneous assignment to klass->element_class, since it is already
17587         done in mono_reflection_setup_internal_class.
17588
17589 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17590
17591         * gc.c: added missing LeaveCriticalSection.
17592         * icall.c: indented a couple of lines.
17593         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
17594         if we call EndInvoke inside a callback. Fixes bug #52601.
17595
17596 2004-01-07  Martin Baulig  <martin@ximian.com>
17597
17598         * mono-debug-debugger.h
17599         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
17600
17601 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
17602
17603         * appdomain.c: Use messages in NotImplementedException.
17604
17605         * exception.c (mono_get_exception_not_implemented): Now this takes
17606         a message argument.
17607
17608         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
17609         exception instead of g_asserting an aborting when something is not
17610         implemented.
17611
17612         Add some inline docs.
17613
17614 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
17615
17616         * reflection.h: Update after changes to object layout.
17617
17618         * reflection.c: Implement saving of unmanaged aka win32 resources.
17619
17620         * appdomain.c: Bump version number.
17621
17622         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
17623         Handle missing domains gracefully.
17624
17625 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
17626
17627         * file-io.c : On Windows, there are much more invalid_path_chars.
17628
17629 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
17630
17631         * class.h, object.c: prepare for GetType () speedup.
17632
17633 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
17634
17635         * profiler.c: workaround for --profile null reference exception on
17636           cygwin. Patch by Patrik Torstensson.
17637
17638 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
17639
17640         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
17641         make work for unaligned access.
17642
17643 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
17644
17645         * class.c: small cleanup (class->fields [i] -> field).
17646         * image.c: check address of metadata is valid.
17647
17648 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
17649
17650         * assembly.h assembly.c (mono_assembly_loaded): New public function to
17651         search the list of loaded assemblies.
17652
17653         * reflection.c (mono_reflection_type_from_name): Use 
17654         mono_assembly_loaded instead of mono_image_loaded.
17655
17656         * reflection.c: Fix warnings.
17657
17658 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
17659
17660         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
17661         is dynamic. This is needed since an assembly can contain both dynamic and
17662         non-dynamic images.
17663
17664         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
17665         assembly->dynamic.
17666
17667         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
17668
17669         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
17670         to store modules loaded using AddModule.
17671
17672         * reflection.c (mono_image_fill_file_table): Generalize this so it works
17673         on Modules.
17674
17675         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
17676
17677         * reflection.c (mono_image_fill_export_table_from_module): New function to
17678         fill out the EXPORTEDTYPES table from a module.
17679
17680         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
17681         into a separate function. Also handle loaded non-dynamic modules.
17682
17683         * reflection.c (mono_image_basic_init): Fix memory allocation.
17684
17685         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17686
17687         * assembly.c (mono_assembly_load_references): Make this public.
17688
17689 2003-12-19  Martin Baulig  <martin@ximian.com>
17690
17691         * class.c (mono_class_initialize_generic): Made this static, take
17692         a `MonoGenericInst *' instead of a `MonoClass *'.
17693         (mono_class_from_generic): Call mono_class_initialize_generic()
17694         unless we're already initialized or being called from
17695         do_mono_metadata_parse_generic_inst().
17696
17697         * class.h (MonoGenericInst): Added `initialized' and
17698         `init_pending' flags.
17699
17700         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
17701         `mono_class_init (gklass)' or mono_class_initialize_generic()
17702         here; set `generic_inst->init_pending' while parsing the
17703         `type_argv'.
17704
17705 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
17706
17707         * locales.c: include string.h for memxxx prototypes
17708
17709 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
17710
17711         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
17712         constructor when accessing literal fields.
17713
17714 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
17715
17716         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17717
17718         * reflection.c (assembly_add_resource_manifest): New function to fill
17719         the MANIFESTRESOURCE table.
17720
17721         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
17722
17723         * reflection.h: Update to changes in class layout.
17724
17725         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
17726         Reenable call to mono_runtime_is_shutting_down ().
17727
17728         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
17729         determine if the runtime is shutting down.
17730
17731 2003-12-16  Jackson Harper <jackson@ximian.com>
17732
17733         * icall.c: comment out call to mono_runtime_is_shutting_down to
17734         fix build.
17735         
17736 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
17737
17738         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
17739         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
17740
17741 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
17742
17743         * reflection.c: move definition of swap_with_size
17744         to before its first call
17745
17746 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
17747
17748         * appdomain.c (mono_runtime_is_shutting_down): New public function.
17749
17750         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
17751         icall.
17752
17753         * object.c: Fix warnings.
17754
17755         * icall.c (ves_icall_Type_Get...): Only consider inherited static
17756         members if FlattenHierarchy is set.
17757
17758         * reflection.c (mono_image_add_decl_security): New function to emit
17759         declarative security.
17760
17761         * reflection.h reflection.c: Add support for declarative security.
17762
17763         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
17764         
17765 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
17766
17767         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
17768         
17769         * appdomain.c verify.c: Moved corlib version checking into its own
17770         function in appdomain.c since it needs to create vtables etc.
17771
17772 2003-12-13  Patrik Torstensson <p@rxc.se>
17773
17774         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
17775         instead of unwrapped server.
17776
17777 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
17778
17779         * verify.c (check_corlib): Fix field index.
17780
17781 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
17782
17783         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
17784         GetGacPath icall.
17785
17786 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
17787
17788         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
17789         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
17790         cope with sizeof(size_t) != sizeof(guint32).
17791
17792 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17793
17794         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
17795         in case of failure.
17796
17797 2003-12-10  Mark Crichton <crichton@gimp.org>
17798
17799         * icall.c: removed the GetNonZeroBytes.  We now handle this case
17800         in managed code.
17801
17802         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
17803
17804 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
17805
17806         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
17807         marked as deleted.
17808
17809 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
17810
17811         * verify.c (check_corlib): Handle the case when the version field is 
17812         initialized by a static constructor.
17813
17814 2003-12-08  Patrik Torstensson  <p@rxc.se>
17815
17816     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
17817
17818 2003-12-08  Martin Baulig  <martin@ximian.com>
17819
17820         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
17821         a MonoReflectionGenericParameter, also take the parameter index
17822         and name as arguments.
17823         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
17824         (ves_icall_MonoGenericParam_initialize): New interncall.
17825         (ves_icall_Type_make_byref_type): New interncall.
17826
17827         * reflection.h (MonoReflectionGenericParam): Derive from
17828         MonoReflectionType, not just from MonoObject.  Added `refobj' and
17829         `index' fields.
17830
17831         * reflection.c (mono_reflection_define_generic_parameter): Create
17832         and return a new MonoReflectionGenericParam; don't initialize the
17833         constraints here.
17834         (mono_reflection_initialize_generic_parameter): New public method;
17835         initializes the constraints and creates the `param->pklass'.
17836
17837 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
17838
17839         * reflection.h reflection.c: Use the new fields 'num_types', 
17840         'num_fields' and 'num_methods' to track the number of types etc.
17841
17842         * verify.c (check_corlib): Check corlib version number.
17843
17844 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
17845
17846         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
17847         function works on all methods.
17848
17849 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
17850
17851         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
17852         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
17853         the custom_type_info flag of the transparent proxy.
17854         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
17855         objects that supports IRemotingTypeInfo.
17856         * object.h: Added custom_type_info field in transparent proxy.
17857
17858 2003-12-06  Martin Baulig  <martin@ximian.com>
17859
17860         * class.c (mono_class_create_from_generic): Removed.
17861         (mono_class_from_generic): Check `ginst->klass' before doing
17862         anything else.  This is important to fully support "recursive"
17863         generic types.
17864
17865         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
17866         empty `generic_inst->klass' before doing anything else.
17867
17868 2003-12-06  Dick Porter  <dick@ximian.com>
17869
17870         * verify.c: 
17871         * object.h:
17872         * icall.c:
17873         * locales.c: Use C structs to access class fields.  Don't do a
17874         conversion between MonoString and UChar because both are
17875         platform-endian UTF-16.  Compare now takes startindex and count
17876         parameters.  Add a char overload for IndexOf.  Speed up the
17877         invariant string IndexOf.
17878
17879 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
17880
17881         * Makefile.am (monosn_LDADD): Fix parallel build.
17882
17883 2003-12-04  Martin Baulig  <martin@ximian.com>
17884
17885         * icall.c
17886         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
17887         (ves_icall_Type_make_array_type): New interncall.       
17888
17889 2003-12-04  Martin Baulig  <martin@ximian.com>
17890
17891         * locales.c: also change it in the !HAVE_ICU case.
17892
17893 2003-12-04  Dick Porter  <dick@ximian.com>
17894
17895         * icall.c:
17896         * locales.c: construct_compareinfo is now in CompareInfo, not
17897         CultureInfo.
17898
17899 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
17900
17901         * image.c (mono_image_load_file_for_image): Cache loaded images in the
17902         image->files array.
17903
17904         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
17905         table as well.
17906
17907         * assembly.c (mono_assembly_load_references): Only load references
17908         once.
17909
17910         * class.c (mono_class_from_name): Avoid linear search of the 
17911         EXPORTEDTYPE table.
17912
17913         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
17914
17915 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
17916
17917         * image.h (MonoImage): Add 'field_cache' field.
17918
17919         * loader.c (mono_field_from_token): Cache field lookups.
17920         
17921         * reflection.c (mono_module_get_object): Fix name property.
17922
17923         * icall.c (ves_icall_get_enum_info): Update after changes to 
17924         mono_metadata_get_constant_index ().
17925
17926         * icall.c: Get rid of get_type_info icall, use a separate icall for
17927         each type property to avoid needless memory allocations. Fixes #51514.
17928
17929         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
17930         to avoid needless binary searches.
17931
17932         * class.c (class_compute_field_layout): Move the initialization of
17933         field->def_value to mono_class_vtable ().
17934
17935         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
17936         non-corlib types.
17937
17938         * object.c (mono_object_allocate): Make it inline.
17939
17940         * object.c (mono_object_allocate_spec): Make it inline.
17941         
17942 2003-12-02  Dick Porter  <dick@ximian.com>
17943
17944         * locales.c (create_NumberFormat): NumberFormatInfo construction.
17945         Patch by Mohammad DAMT (mdamt@cdl2000.com).
17946
17947 2003-12-01  Dick Porter  <dick@ximian.com>
17948
17949         * threads.c: Fix signature and call in CreateMutex and
17950         CreateEvent.
17951
17952 2003-12-01  Dick Porter  <dick@ximian.com>
17953
17954         * icall.c: 
17955         * locales.c: Implement string compares and searching
17956
17957         * object.h: Add extra Thread field
17958
17959 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
17960
17961         * reflection.c (fixup_method): Add support for MonoCMethod.
17962
17963 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
17964
17965         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
17966
17967         * reflection.c (assembly_name_to_aname): Allow extra characters in
17968         assembly names. Fixes #51468.
17969
17970 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
17971
17972         * exception.c (mono_exception_from_name_domain): New helper function.
17973
17974         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
17975         exception object in the correct domain.
17976
17977         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
17978         formatting + make a copy a the input data.
17979
17980         * loader.c (mono_get_method_from_token): Methods which contain
17981         native code do not have entries in the ImplMap.
17982
17983         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
17984         Thanks to Gonzalo for spotting this.
17985         
17986         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
17987         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
17988
17989         * assembly.h (mono_assembly_load_from): Split the second part of 
17990         assembly loading into a new public function.
17991
17992         * exception.h (mono_get_exception_bad_image_format): New function.
17993
17994 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
17995
17996         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
17997         Enumerate all modules inside a dynamic assembly. Fixes #51293.
17998         
17999         * icall.c: Add new icall for creating dynamic methods.
18000
18001         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
18002
18003         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
18004
18005         * reflection.c (mono_reflection_create_dynamic_method): New icall to
18006         create a dynamic method.
18007
18008         * reflection.c (resolve_object): New helper function.
18009
18010         * reflection.c: Generalize ReflectionMethodBuilder and the functions
18011         which manipulate it so they can also work on dynamic methods.
18012
18013         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
18014         creating the MonoReflectionMethodAux structure if it is not needed.
18015         
18016         * reflection.h verify.c: Update after changes to object layout.
18017
18018         * reflection.c (method_builder_encode_signature): Fix compilation on
18019         gcc 2.95.x.
18020
18021 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
18022
18023         * appdomain.h: Added support for context static fields. Added static_data
18024           field to MonoAppContext and renamed thread_static_fields to a more
18025           generic special_static_fields in MonoAppDomain, since it can now contain
18026           context static fields.
18027         * domain.c: Updated hashtable name.
18028         * object.c: Replaced field_is_thread_static() for a more generic
18029           field_is_special_static() which also checks for context static attribute.
18030           In mono_class_vtable(), added support for static context fields.
18031         * threads.c: Changed methods that manage thread static fields to more
18032           generic methods so they can be reused both for thread and context static
18033           data.
18034         * threads.h: Declared some new methods.
18035
18036 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
18037
18038         * reflection.h: Update after changes to the managed types.
18039
18040         * reflection.c (encode_custom_modifiers): New helper function.
18041
18042         * reflection.c (method_encode_signature): Emit custom modifiers.
18043
18044         * reflection.c (field_encode_signature): Emit custom modifiers.
18045
18046 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
18047
18048         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
18049
18050         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
18051         implementation.
18052
18053         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
18054         icall.
18055
18056         * object.c (mono_field_get_value_object): New function.
18057
18058         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
18059         specific.
18060
18061 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
18062
18063         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
18064         return a preallocated out-of-memory exception instance.
18065
18066         * object.c (out_of_memory): Use the new function.
18067
18068         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
18069         flag is before the custom modifiers. Fixes #49802.
18070
18071 2003-11-16  Martin Baulig  <martin@ximian.com>
18072
18073         * class.c (mono_class_is_open_constructed_type): Implemented the
18074         MONO_TYPE_GENERICINST case.
18075
18076 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
18077
18078         * assembly.c (mono_assembly_fill_assembly_name): New function to
18079         fill out the MonoAssemblyName structure.
18080         (mono_assembly_open): Use the new function.
18081
18082         * icall.c (fill_reflection_assembly_name): New helper function.
18083
18084         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
18085         new function.
18086
18087         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
18088
18089 2003-11-15  Martin Baulig  <martin@ximian.com>
18090
18091         * class.c (mono_class_is_open_constructed_type): New public
18092         function; checks whether a type is an open constructed type,
18093         ie. whether it still contains type parameters.
18094         (mono_class_inflate_generic_type): If we're a type parameter and
18095         the inflated type is also a MONO_TYPE_(M)VAR, return the original
18096         type.
18097
18098         * class.h (MonoGenericInst): Added `guint32 is_open'.
18099
18100         * loader.c (method_from_methodspec): Check whether we're an open
18101         or closed constructed type and set `ginst->is_open'.
18102
18103         * reflection.c (mono_reflection_bind_generic_parameters): Check
18104         whether we're an open or closed constructed type and set
18105         `ginst->is_open'.
18106         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
18107         from open constructed types.
18108
18109 2003-11-15  Martin Baulig  <martin@ximian.com>
18110
18111         * reflection.c (mono_reflection_bind_generic_parameters): If we're
18112         a generic instance (instead of a generic type declaration) with
18113         unbound generic parameters, bind them to our actual types.
18114
18115 2003-11-14  Martin Baulig  <martin@ximian.com>
18116
18117         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
18118
18119         * reflection.c (mono_reflection_bind_generic_parameters): If we're
18120         an interface type, populate `res->interfaces' with instantiated
18121         versions of all the interfaces we inherit.
18122
18123 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
18124
18125         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
18126         when MONO_PATH is set but doesn't contain the install dir.
18127
18128 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18129
18130         * icall.c:
18131         (ves_icall_Type_GetInterfaces): don't return an interface twice when
18132         it's also implemented in base classes. Fixes bug #50927.
18133
18134 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
18135
18136         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
18137         if this method is called from a finalizer. Fixes #50913.
18138
18139 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
18140
18141         * threads.c: Implement VolatileRead/VolatileWrite
18142
18143         * icall.c: Add new icalls for VolatileRead/VolatileWrite
18144
18145 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
18146
18147         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
18148         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
18149         2.95.3.
18150
18151         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
18152         from Peter Ross (pro@missioncriticalit.com).
18153         
18154 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
18155
18156         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
18157
18158 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
18159
18160         * assembly.c (mono_assembly_load_references): Disable check because it
18161         triggers on older corlibs which lots of people have.
18162
18163 2003-11-12  Jackson Harper  <jackson@ximian.com>
18164
18165         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
18166         load corlib.dll if mscorlib.dll is not found.
18167         * assembly.h: Remove corlib name define.
18168         * class.c:
18169         * domain.c:
18170         * image.c: Change corlib name to mscorlib.
18171         
18172 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
18173
18174         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
18175
18176 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
18177
18178         * appdomain.h: Added loader_optimization here to sync with the C#
18179         code, and add disallow_binding_redirects field.
18180
18181 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
18182
18183         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
18184
18185         * reflection.c (mono_image_build_metadata): Fix crash on modules
18186         with no types.
18187
18188         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
18189
18190         * icall.c (ves_icall_get_method_info): Return callingConvention as
18191         well.
18192
18193         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
18194         namespaces from the EXPORTEDTYPE table as well.
18195
18196         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
18197         from all modules inside the assembly.
18198         
18199 2003-11-11  Martin Baulig  <martin@ximian.com>
18200
18201         * reflection.c (mono_reflection_bind_generic_parameters): Make
18202         this work for interfaces.
18203
18204 2003-11-11  Martin Baulig  <martin@ximian.com>
18205
18206         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
18207
18208 2003-11-11  Martin Baulig  <martin@ximian.com>
18209
18210         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
18211         "MonoInflatedMethod" and "MonoInflatedCtor".
18212
18213 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
18214
18215         * reflection.c (resolution_scope_from_image): Use the assembly table
18216         from the manifest module, since other modules don't have it.
18217
18218         * debug-helpers.c (mono_type_full_name): New helper function.
18219
18220         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
18221
18222         * image.c (mono_image_load_file_for_image): New public function which
18223         is a replacement for the load_file_for_image in class.c.
18224
18225         * assembly.c (mono_assembly_load_module): A wrapper for the function
18226         above which does assembly association and reference loading too.
18227
18228         * class.c (mono_class_from_name): Call mono_assembly_load_module.
18229
18230 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18231
18232         * appdomain.c: not all of the attributes for the full assembly name
18233         are required and the order doesn't matter. Fixes bug #50787.
18234
18235 2003-11-10  Dick Porter  <dick@ximian.com>
18236
18237         * locales.c: Use platform-endian UTF16
18238
18239 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
18240
18241         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
18242         
18243 2003-11-10  Martin Baulig  <martin@ximian.com>
18244
18245         * metadata.c
18246         (mono_metadata_load_generic_params): Make this actually work.
18247
18248         * reflection.c (mono_reflection_bind_generic_parameters): If our
18249         parent is a generic instance, pass all the `types' to it, no
18250         matter whether it has the same number of type parameters or not.
18251
18252 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
18253
18254         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
18255
18256         * assembly.c (mono_assembly_load_references): Move the image<->assembly
18257         assignment code to this function so it gets called recursively for all
18258         modules.
18259
18260         * image.c (load_modules): Remove the assembly assignment since it is
18261         now done by mono_assembly_load_references.
18262         
18263         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
18264         Add 'module' argument.
18265         (mono_module_get_types): New helper function.
18266         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
18267
18268 2003-11-08  Martin Baulig  <martin@ximian.com>
18269
18270         * class.c (mono_class_inflate_generic_method): Interface method
18271         don't have a header.
18272
18273         * reflection.c (mono_image_get_methodspec_token): Take an
18274         additional `MonoGenericInst *' argument instead of reading it from
18275         the header; this is necessary to support interfaces.
18276         (mono_image_create_token): Pass the `MonoGenericInst *' from the
18277         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
18278         (inflated_method_get_object): Take an additional `MonoGenericInst *'
18279         argument.
18280
18281         * reflection.h (MonoReflectionInflatedMethod): Added
18282         `MonoGenericInst *ginst'.
18283
18284 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
18285
18286         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
18287
18288 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
18289
18290         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
18291
18292 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
18293
18294         * reflection.c 
18295         (reflection_methodbuilder_from_method_builder):
18296         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
18297         initialize a ReflectionMethodBuilder structure.
18298         (mono_image_get_methodbuilder_token):
18299         (mono_image_get_ctorbuilder_token): New functions to emit memberref
18300         tokens which point to types in another module inside the same assembly.
18301
18302         * reflection.c: Use the new helper functions.
18303         
18304         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
18305
18306         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
18307         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
18308
18309         * reflection.c (resolution_scope_from_image): Emit a moduleref if
18310         neccesary.
18311
18312         * reflection.c (mono_image_build_metadata): Emit metadata only for the
18313         current module. Emit the manifest only for the main module.
18314
18315         * reflection.c (mono_image_create_token): Add assertion when a 
18316         memberref needs to be created.
18317
18318         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
18319
18320         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
18321         larger buffer for the custom attribute blob. Fixes #50637.
18322         
18323 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18324
18325         * threadpool.c: notify listener on async processing handles after
18326         invoking the async callback. Thanks to Zoltan.
18327
18328 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
18329
18330         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
18331         avoid code duplication.
18332
18333         * reflection.h (MonoDynamicImage): New type which is currently unused,
18334         but will be used through the ref.emit code in place of 
18335         MonoDynamicAssembly.
18336
18337         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
18338         object layout.
18339
18340         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
18341         a MonoDynamicImage instead of just a MonoImage.
18342         
18343         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
18344         icalls to ModuleBuilder but keep their semantics, so they will work
18345         with moduleb->assemblyb. This will change later.
18346         
18347 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
18348
18349         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
18350         object layout.
18351
18352         * reflection.c (mono_image_build_metadata): Avoid creation of a default
18353         main module, since it is now done by the managed code.
18354
18355 2003-11-03  Martin Baulig  <martin@ximian.com>
18356
18357         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
18358         `ginst->klass' here.
18359         (method_encode_methodspec): Don't use the `ginst->generic_method's
18360         klass if it's a generic instance, use `ginst->klass' in this case.
18361
18362 2003-11-03  Martin Baulig  <martin@ximian.com>
18363
18364         * reflection.c (mono_image_get_generic_method_param_info):
18365         Removed, use mono_image_get_generic_param_info() instead.
18366         (mono_image_get_type_info): Write the GenericParam table before
18367         the Method table.  This is neccessary because in the GenericParam
18368         table, type parameters of the class (ie. '!0' etc.) must come
18369         before the ones from its generic methods (ie. '!!0' etc).
18370
18371 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
18372
18373         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
18374
18375 2003-11-02  Martin Baulig  <martin@ximian.com>
18376
18377         * reflection.c (create_generic_typespec): Take a
18378         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
18379         the generic parameters from it.
18380
18381 2003-11-02  Martin Baulig  <martin@ximian.com>
18382
18383         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
18384         instead of a `MonoClassField *' since we just need the type.
18385         (create_generic_typespec): New static function.  Creates a
18386         TypeSpec token for a generic type declaration.
18387         (mono_image_get_generic_field_token): New static function.
18388         (mono_image_create_token): If we're a FieldBuilder in a generic
18389         type declaration, call mono_image_get_generic_field_token() to get
18390         the token.
18391
18392 2003-11-02  Martin Baulig  <martin@ximian.com>
18393
18394         * reflection.h
18395         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
18396         `MonoReflectionGenericInst *declaring_type' and
18397         `MonoReflectionGenericInst *reflected_type' fields.
18398
18399         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
18400         `MonoReflectionGenericInst *declaring_type' and a
18401         `MonoReflectionGenericInst *reflected_type' argument instead of a
18402         single `MonoReflectionGenericInst *type' one.  Set
18403         `res->declaring_type' and `res->reflected_type' from them.
18404         (mono_reflection_inflate_field): Likewise.      
18405
18406 2003-11-02  Martin Baulig  <martin@ximian.com>
18407
18408         * class.c (mono_class_setup_vtable): Don't store generic methods
18409         in the vtable.  
18410
18411 2003-11-02  Martin Baulig  <martin@ximian.com>
18412
18413         * reflection.h (MonoReflectionGenericInst): Added
18414         `MonoReflectionType *declaring_type'.
18415
18416         * reflection.c (mono_reflection_bind_generic_parameters): Use
18417         `if (tb->parent)' instead of `klass->parent'.
18418
18419 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
18420
18421         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
18422         with an empty ASSEMBLY table.
18423
18424         * reflection.c (mono_image_build_metadata): Avoid using the same loop
18425         variable in the inner and outer loops.
18426
18427 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
18428
18429         * metadata.h (mono_metadata_make_token): Put parentheses around macro
18430         argument.
18431
18432         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
18433         
18434         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
18435         icalls. Instead, do everything in managed code. This is needed since
18436         it is hard to restore the original domain etc. in unmanaged code in the
18437         presence of undeniable exceptions.
18438
18439         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
18440         New icalls to push and pop appdomain refs.
18441
18442 2003-10-31  Martin Baulig  <martin@ximian.com>
18443
18444         * class.c (inflate_generic_type): Renamed to
18445         mono_class_inflate_generic_type() and made it public.
18446
18447         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
18448         New interncall.
18449
18450         * loader.c (mono_field_from_memberref): Also set the retklass for
18451         typespecs.
18452
18453         * fielder.c (mono_image_get_inflated_field_token): New static
18454         method; creates a metadata token for an inflated field.
18455         (mono_image_create_token, fixup_method): Added support for
18456         "MonoInflatedField".
18457         (fieldbuilder_to_mono_class_field): New static function.
18458         (mono_reflection_inflate_field): New public function.
18459
18460         * reflection.h
18461         (MonoReflectionGenericInst): Added `MonoArray *fields'.
18462         (MonoReflectionInflatedField): New typedef.     
18463
18464 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
18465
18466         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
18467         for Solaris and other platforms without s6_addr16
18468
18469 2003-10-30  Martin Baulig  <martin@ximian.com>
18470
18471         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
18472         argument instead of two.
18473         (mono_class_inflate_generic_signature): Likewise.
18474         (inflate_generic_header): Likewise.
18475         (mono_class_inflate_generic_method): Likewise.  In addition, if
18476         `ginst->klass' is set, it becomes the new `method->klass'.
18477
18478         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
18479         field.
18480
18481         * reflection.c (encode_generic_method_sig): Write a 0xa as the
18482         first byte. [FIXME]
18483         (method_encode_methodspec): If we have generic parameters, create
18484         a MethodSpec instead of a MethodRef.
18485         (fixup_method): Added support for "MonoInflatedMethod" and
18486         "MonoInflatedCtor".
18487         (mono_image_create_token): Added support for "MonoInflatedMethod"
18488         and "MonoInflatedCtor".
18489         (inflated_method_get_object): New static function; returns a
18490         managed "System.Reflection.MonoInflatedMethod" object.
18491         (mono_reflection_bind_generic_method_parameters): Return a
18492         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
18493         (mono_reflection_inflate_method_or_ctor): Likewise.
18494         (mono_image_get_generic_method_param_info): Initialize unused
18495         fields to zero.
18496         (mono_image_get_generic_param_info): Likewise.
18497
18498         * reflection.h (MonoReflectionInflatedMethod): New public
18499         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
18500         "S.R.MonoInflatedCtor" classes.
18501
18502         * loader.c (method_from_memberref): If we're a TypeSpec and it
18503         resolves to a generic instance, inflate the method.
18504
18505 2003-10-28  Dick Porter  <dick@ximian.com>
18506
18507         * object.c (mono_runtime_run_main): Convert command-line arguments
18508         into utf8, falling back to the user's locale encoding to do so.
18509
18510 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
18511
18512         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
18513         at this time.
18514
18515         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
18516
18517         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
18518         up icalls at method definition time. Partially fixes #33569.
18519
18520 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
18521
18522         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
18523         marshalling of arrays. Fixes #50116.
18524
18525         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
18526
18527         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
18528         points to a vtable in the dying appdomain.
18529
18530         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
18531         listeners into unmanaged code inside the lock.
18532
18533         * object.c (mono_class_vtable): Turn off typed allocation in non-root
18534         domains and add some comments.
18535
18536 2003-10-25  Martin Baulig  <martin@ximian.com>
18537
18538         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
18539
18540         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
18541
18542         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
18543         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
18544         currently parsing.  Create the generic class and store it in
18545         `generic_inst->klass' before parsing the type arguments.  This is
18546         required to support "recursive" definitions; see mcs/tests/gen-23.cs
18547         for an example.
18548         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
18549         to support recursive typespec entries.
18550
18551         * class.c (mono_class_setup_parent): If our parent is a generic
18552         instance, we may get called before it has its name set.
18553         (mono_class_from_generic): Splitted into
18554         mono_class_create_from_generic() and mono_class_initialize_generic().
18555
18556 2003-10-25  Martin Baulig  <martin@ximian.com>
18557
18558         * icall.c (ves_icall_Type_BindGenericParameters): Return a
18559         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
18560         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
18561         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
18562
18563         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
18564         (create_typespec): Likewise.
18565         (mono_reflection_bind_generic_parameters): Return a
18566         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
18567         (mono_reflection_inflate_method_or_ctor): New public function.
18568
18569         * reflection.h (MonoReflectionGenericInst): New typedef.        
18570
18571 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
18572
18573         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
18574         inside the domain lock. Fixes #49993.
18575         
18576         * object.c (mono_class_vtable): When typed allocation is used, 
18577         allocate vtables in the GC heap instead of in the mempool, since the
18578         vtables contain GC descriptors which are used by the collector even
18579         after the domain owning the mempool is unloaded.
18580
18581         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
18582
18583         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
18584         reflect what it does. Also invalidate mempools instead of freeing
18585         them if a define is set.
18586
18587         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
18588         of the appdomain.
18589         
18590         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
18591         hold the finalizable objects in this domain.
18592
18593         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
18594         appdomain.
18595
18596         * appdomain.c (mono_domain_set): New function to set the current
18597         appdomain, but only if it is not being unloaded.
18598
18599         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
18600         appdomain which is being unloaded.
18601         
18602         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
18603         unloading of the root appdomain.
18604
18605         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
18606         icall to execute a method in another appdomain. Intended as a 
18607         replacement for InternalSetDomain, which can confuse the code 
18608         generation in the JIT.
18609
18610         * appdomain.c (mono_domain_is_unloading): New function to determine
18611         whenever an appdomain is unloading.
18612
18613         * appdomain.c (mono_domain_unload): New function to correctly unload
18614         an appdomain.
18615
18616         * assembly.c (mono_assembly_load_references): Check that an assembly
18617         does not references itself.
18618
18619         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
18620         domain manually, it asks the finalizer thread to do it, then waits for
18621         the result. Also added a timeout.
18622
18623         * icall.c: Register the new icalls.
18624
18625         * threads.h threads.c: Export the mono_gc_stop_world and 
18626         mono_gc_start_world functions.
18627         
18628         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
18629         function to fill out the mempool with 0x2a.
18630
18631 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
18632
18633         * reflection.h (MonoReflectionMethodAux): New structure to store
18634         information which is rarely used, thus is not in the MonoMethod
18635         structure.
18636
18637         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
18638         store the aux info.
18639
18640         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
18641         and marshalling info into the aux structure.
18642
18643         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
18644         from the aux structure.
18645
18646         * loader.c (mono_method_get_param_names): Retrieve the param names from
18647         the aux structure.
18648         
18649 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
18650
18651         * exception.h exception.c: Add AppDomainUnloadedException && fix 
18652         warning.
18653
18654 2003-10-21  Dick Porter  <dick@ximian.com>
18655
18656         * socket-io.c
18657         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
18658         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
18659
18660 2003-10-21  Martin Baulig  <martin@ximian.com>
18661
18662         * reflection.c (mono_reflection_bind_generic_parameters):
18663         `klass->parent' is NULL for interfaces.
18664
18665 2003-10-21  Martin Baulig  <martin@ximian.com>
18666
18667         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
18668
18669 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
18670
18671         * exception.c (mono_exception_from_name_msg): New helper function for
18672         creating exceptions and initializing their message field.
18673
18674         * exception.c: Simplify functions using the new helper.
18675
18676         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
18677         New function.
18678
18679         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
18680         mono_raise_exception, since otherwise gcc doesn't generate the function
18681         epilog for raise_exception, confusing the stack unwinding in the JIT.
18682         Fixes #45043.
18683
18684         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
18685         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
18686         Fixes #49499.
18687
18688 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18689
18690         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
18691         utf8.
18692
18693 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
18694
18695         * icall.c: Removed GetUninitializedObject method because
18696           AllocateUninitializedClassInstance does the same.
18697
18698 2003-10-18  Martin Baulig  <martin@ximian.com>
18699
18700         * class.c (inflate_generic_signature): Renamed to
18701         mono_class_inflate_generic_signature() and made it public.
18702         (my_mono_class_from_generic_parameter): New static function; if we
18703         don't already have the generic parameter's MonoClass, create a
18704         very simple one which is just used internally in the runtime and
18705         not passed back to managed code.
18706
18707         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
18708
18709         * metadata.h (MonoMethodSignature): Moved the
18710         `MonoGenericParam *gen_params' to the MonoMethodHeader.
18711         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
18712
18713         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
18714         ves_icall_MonoMethod_GetGenericArguments(); this is now an
18715         interncall on the MonoMethod class, not on MethodInfo.
18716         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
18717         calling mono_reflection_bind_generic_method_parameters() directly.
18718
18719         * loader.c (mono_method_get_signature): If this is a MethodSpec;
18720         return the already computed `method->signature'.
18721         (method_from_methodspec): New static function to load a method
18722         from a MethodSpec entry.
18723         (mono_get_method_from_token): Call the new method_from_methodspec()
18724         for MethodSpec tokens.  
18725         (mono_get_method_from_token): If we're a generic method, load the
18726         type parameters.
18727
18728         * reflection.c (mono_image_get_memberref_token): Allow
18729         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
18730         table.
18731         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
18732         (mono_image_create_token): First check whether it's a generic
18733         method (so we'd need to create a MethodSpec), then do the other
18734         two alternatives.
18735         (mono_reflection_bind_generic_method_parameters): Return a
18736         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
18737         called directly from the interncall.
18738
18739 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
18740
18741         * reflection.c (load_public_key): Move loading of the public key
18742         into managed code.
18743
18744         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
18745
18746         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
18747         fields.
18748
18749         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
18750         culture, hash_alg and public_key. Fixes #49555.
18751
18752 2003-10-17  Martin Baulig  <martin@ximian.com>
18753
18754         * class.h (MonoGenericInst): Moved this declaration here and added
18755         `MonoMethod *generic_method'.
18756
18757         * icall.c
18758         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
18759         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
18760
18761         * metadata.c (mono_metadata_type_equal): Two types of
18762         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
18763         index; ie. don't compare the address of the `MonoGenericParam'
18764         structure.
18765         (mono_metadata_load_generic_params): Removed the `MonoMethod
18766         *method' argument.
18767
18768         * metadata.h (MonoGenericInst): Moved declaration to class.h.
18769         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
18770
18771         * reflection.c (method_encode_signature): Encode the number of
18772         generic parameters.
18773         (encode_generic_method_sig): New static function.
18774         (method_encode_methodspec): New static function; creates an entry
18775         in the MethodSpec table for a generic method.
18776         (mono_image_get_methodspec_token): New static function.
18777         (mono_image_create_token): Call mono_image_get_methodspec_token()
18778         for generic methods.
18779         (mono_reflection_bind_generic_method_parameters): New public
18780         function.  Instantiates a generic method.
18781
18782 2003-10-16  Martin Baulig  <martin@ximian.com>
18783
18784         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
18785         *gen_params' here from MonoMethodHeader.
18786
18787         * metadata.c (mono_metadata_parse_method_signature): If we have
18788         generic parameters, initialize `method->gen_params' and then set
18789         the correct `type->data.generic_param' in all the parameters.
18790
18791 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
18792
18793         * threads.c (mono_threads_get_default_stacksize): New function to 
18794         return the default stacksize.
18795
18796         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
18797         termination of the finalizer thread, since the previous method had
18798         race conditions. Fixes #49628.
18799
18800         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
18801         as for the other managed threads.
18802
18803 2003-10-16  Martin Baulig  <martin@ximian.com>
18804
18805         * class.c (inflate_generic_signature): Copy `generic_param_count'
18806         and `gen_params'.
18807
18808         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
18809         New interncall.
18810
18811         * metadata.c (mono_metadata_parse_method_signature): Actually set
18812         the `method->generic_param_count' here.
18813         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
18814
18815 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
18816
18817         * object.h: Add a new field to TypedRef to simplify the implementation
18818         of the REFANY opcodes in the JIT.
18819
18820         * icall.c: Make use of the new field.
18821
18822         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
18823         dynamically.
18824
18825 2003-10-15  Martin Baulig  <martin@ximian.com>
18826
18827         * class.c (mono_class_from_gen_param): Renamed to
18828         mono_class_from_generic_parameter() and moved most of the
18829         functionality from mono_reflection_define_generic_parameter()
18830         here; ie. we create a "real" class here.
18831         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
18832         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
18833         previously been called.
18834
18835         * class.h (MonoGenericParam): Moved the declaration of this struct
18836         here from metadata.h and added `MonoMethod *method'.
18837
18838         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
18839         interncall.
18840
18841         * loader.c (mono_get_method_from_token): If we have any generic
18842         parameters, call mono_metadata_load_generic_params() to read them
18843         from the MONO_TABLE_GENERICPAR.
18844
18845         * metadata.c (mono_metadata_load_generic_params): Added
18846         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
18847
18848         * metadata.h (MonoMethodSignature): Replaced
18849         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
18850         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
18851
18852         * reflection.c (mono_reflection_define_generic_parameter): Moved
18853         most of the functionality into the new
18854         mono_class_from_generic_parameter(); set the `method' field if
18855         we're a method parameter.       
18856
18857 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
18858
18859         * marshal.c (emit_struct_conv): if native size is 0
18860         emit no code.
18861
18862 2003-10-14  Martin Baulig  <martin@ximian.com>
18863
18864         * icall.c: The generics API has changed in the spec since it was
18865         added to System.Type; these modifications make it match the spec
18866         again.
18867         (ves_icall_Type_GetGenericParameters): Renamed to
18868         `ves_icall_Type_GetGenericArguments'.
18869         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
18870         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
18871         `ves_icall_MonoType_get_HasGenericArguments'.
18872         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
18873         `ves_icall_MonoType_get_IsGenericParameter'.
18874         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
18875         this is no interncall anymore.
18876         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
18877         `ves_icall_TypeBuilder_get_IsGenericParameter'.
18878
18879 2003-10-14  Martin Baulig  <martin@ximian.com>
18880
18881         * reflection.c (mono_reflection_bind_generic_parameters): Also
18882         inflate generic methods if we're reading the class from IL.
18883
18884 2003-10-13  Martin Baulig  <martin@ximian.com>
18885
18886         * reflection.c (mono_reflection_define_generic_parameter): This
18887         method isn't called directly from the icall anymore; take a
18888         `MonoReflectionAssemblyBuilder *' so we can use this for type and
18889         method generic parameters.
18890         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
18891         (method_builder_encode_signature): Encode generic parameters.
18892         (mono_image_get_method_info): Write generic params to the
18893         MONO_TABLE_GENERICPARAM table.
18894
18895         * reflection.h (MonoReflectionMethodBuilder): Added
18896         `MonoArray *generic_params'.
18897
18898         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
18899
18900         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
18901         wrapper for mono_reflection_define_generic_parameter().
18902         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
18903
18904 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
18905
18906         * marshal.h: Add missing function to fix build.
18907
18908         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
18909         the SetLastError pinvoke attribute.
18910
18911         * marshal.c (mono_marshal_set_last_error): New helper function called
18912         by the generated code.
18913         
18914         * marshal.c (mono_mb_emit_branch): New helper function.
18915
18916         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
18917
18918         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
18919         classes as parameters and return values of delegates. Fixes #29256. 
18920
18921 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
18922
18923         * locales.c: use gint32 in non HAVE_ICU case
18924
18925 2003-10-11  Martin Baulig  <martin@ximian.com>
18926
18927         * mono-debug.c (mono_debug_add_method): Added a workaround for
18928         bug #48591.
18929
18930 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
18931
18932         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
18933         delegates passed to native code must use the STDCALL calling 
18934         convention. Fixes #35987.
18935
18936 2003-10-10  Martin Baulig  <martin@ximian.com>
18937
18938         * class.c (inflate_generic_type): If we're inflating for a generic
18939         type instance (and not for a generic method), return
18940         MONO_TYPE_MVAR unchanged.
18941
18942 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18943
18944         * string-icalls.c: Join ignores null strings in the source array.
18945         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
18946         * threads.c: GetAvailableTheads is slightly more accurate.
18947
18948 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
18949
18950         * threads.h threads.c : add mono_threads_set_default_stacksize
18951         and pass default to CreateThread calls.
18952
18953 2003-10-09  Dick Porter  <dick@ximian.com>
18954
18955         * icall.c:
18956         * locales.h:
18957         * locales.c: Internal calls for constructing CultureInfo and
18958         related objects from libicu (if its available.)
18959
18960 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
18961
18962         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
18963
18964 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18965
18966         * threadpool.c: added an argument to async_invoke_thread that is the
18967         item to process, pass the MonoAsyncResult to the thread start function
18968         when creating a new thread. This way we don't need to acquire any lock
18969         when we're creating a new thread. Readded a semaphore for faster
18970         response times (instead of that Sleep i added).
18971
18972 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
18973
18974         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
18975         get daylight change dates better on Windows, fix handling
18976         of platforms without tm_gmtoff.
18977
18978 2003-10-06  Martin Baulig  <martin@ximian.com>
18979
18980         * class.c (inflate_generic_method): Renamed to
18981         mono_class_inflate_generic_method() and made public.
18982         (mono_class_init): Don't inflate the generic methods here.
18983         (mono_class_from_generic): Added `gboolean inflate_methods'
18984         argument.  Inflate the methods here.
18985
18986         * loader.c (mono_method_get_param_names): Ignore instances of
18987         generic types for the moment.
18988
18989         * reflection.c (fixup_method): Added support for inflated methods.
18990         (mono_image_create_token): Use mono_image_get_methodref_token()
18991         for inflated methods.
18992         (mono_custom_attrs_from_param): Ignore instances of generic types
18993         for the moment.
18994         (mono_reflection_bind_generic_parameters): New public function.
18995         Moved all the functionality from
18996         ves_icall_Type_BindGenericParameters() here and added support for
18997         dynamic types.
18998         (mono_reflection_define_generic_parameter): Initialize
18999         `klass->methods' here.
19000
19001         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
19002         functionality into mono_reflection_define_generic_parameter().
19003         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
19004         TypeBuilder, return that TypeBuilder.
19005
19006 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19007
19008         * appdomain.c: removed mono_delegate_semaphore.
19009
19010         * threadpool.c:
19011         (mono_thread_pool_add): moved hash table creation inside and the thread 
19012         creation outside of the critical region.
19013         (mono_thread_pool_finish): removed obsolete code.
19014         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
19015         continue or exit the thread depending on the queue.
19016
19017 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
19018
19019         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
19020         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
19021         handle more bool marshalling options
19022
19023 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
19024
19025         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
19026         arrays of structs. Also add a more descriptive error message when
19027         a structure member is marshalled as LPArray.
19028
19029 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
19030
19031         * marshal.c (mono_marshal_get_native_wrapper): Add support for
19032         marshalling arrays of complex types. Fixes #29098. Also remove an
19033         usused and incomplete function.
19034
19035 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
19036
19037         * gc.c: report heap_size - free_bytes as total memory allocated
19038         (bug#49362).
19039
19040 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
19041
19042         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
19043         fix timezone handling problems on Windows.
19044         
19045         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
19046         asserts when the year is outside the range handled by ms the functions.
19047
19048         * class.c (setup_interface_offsets): If the class is an interface,
19049         fill out its interface_offsets slot.
19050
19051 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19052
19053         * threadpool.c: mark threadpool threads as background.
19054
19055 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
19056
19057         * decimal.c - define DECINLINE to nothing if not using GCC
19058
19059 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
19060
19061         * assembly.c: More refcount fixes.
19062
19063 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19064
19065         * string-icalls.c: if we're not trimming, return the same string.
19066         When not splitting, don't create a new string.
19067
19068 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19069
19070         * image.c:
19071         (mono_image_open): increment the ref_count inside the critical section.
19072
19073 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
19074
19075         * image.c (mono_image_open): Fix reference counting bug.
19076
19077 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
19078
19079         * marshal.c (mono_marshal_type_size) struct alignment changed for 
19080         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
19081         64bits. Avoid leak in mono_marshal_get_native_wrapper when
19082         mono_lookup_pinvoke_call throws.        
19083
19084 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
19085
19086         * reflection.c (mono_reflection_parse_type): Fix #49114.
19087
19088         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
19089         temporary workaround for cygwin header problem.
19090
19091         * object.c (mono_object_isinst): Synchronize this with the code
19092         generated by the JIT for casts.
19093
19094 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
19095
19096         * reflection.c (encode_type): Fix #38332.
19097
19098 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
19099
19100         * marshal.c (mono_marshal_method_from_wrapper): New function to return
19101         the original method from the wrapper method.
19102
19103 2003-09-25  Martin Baulig  <martin@ximian.com>
19104
19105         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
19106         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
19107         (ves_icall_Type_get_IsGenericInstance): New interncall.
19108
19109 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
19110
19111         * object.c: fix cast warning in big endian code.
19112
19113 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
19114
19115         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
19116         
19117 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19118
19119         * assembly.c: don't call check_env from mono_assembly_load. It's
19120         already done once in mono_assemblies_init and may cause headaches when
19121         multiple threads are loading assemblies.
19122
19123 2003-09-19  Martin Baulig  <martin@ximian.com>
19124
19125         * reflection.c (mono_reflection_define_generic_parameter): Don't
19126         allocate `klass->methods', set `klass->flags' to
19127         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
19128
19129 2003-09-18  Martin Baulig  <martin@ximian.com>
19130
19131         * class.c (mono_class_init): Don't create `class->methods' if it's
19132         already initialized.
19133
19134         * metadata.c (mono_metadata_load_generic_params): Make this
19135         actually work.
19136
19137         * reflection.c (mono_reflection_define_generic_parameter): Set
19138         parent class and interfaces from the constraints.
19139
19140         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
19141         to keep this struct in sync with the declaration in TypeBuilder.cs.
19142
19143 2003-09-17  Martin Baulig  <martin@ximian.com>
19144
19145         * metadata.h (MonoType): Replaced the data's `int type_param'
19146         field with `MonoGenericParam *generic_param'.
19147         (MonoGenericParam): Added `MonoClass *klass'.
19148
19149         * class.c (mono_class_from_gen_param): Removed the
19150         `MonoImage *image' and `int type_num' arguments.
19151
19152         * metadata.c (mono_metadata_parse_generic_param): New static
19153         method; creates a MonoGenericParam which just contains the index.
19154         (do_mono_metadata_parse_type): Call
19155         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
19156         MONO_TYPE_MVAR.
19157
19158         * reflection.c (mono_image_typedef_or_ref): Generic type
19159         parameters may be in the same assembly, but never use a typedef
19160         for them.
19161         (mono_reflection_define_generic_parameter): We're now creating a
19162         "real" class for the type parameter; it's now safe to call
19163         mono_class_from_mono_type() on the class'es type, it'll do the
19164         right thing.
19165
19166 2003-09-16  Martin Baulig  <martin@ximian.com>
19167
19168         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
19169         `symfile->range_entry_size' and `symfile->class_entry_size' here;
19170         the `symfile' data structure must be fully initialized before it
19171         gets added to the table.
19172
19173 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
19174
19175         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
19176
19177         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
19178         class init trampolines.
19179
19180 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
19181
19182         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
19183         to the built-in profiler to turn off time and allocation profiling
19184         respectively.
19185
19186 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
19187
19188         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
19189         g_direct_equal.
19190
19191         * debug-helpers.c (mono_method_full_name): Print the wrapper type
19192         in human readable form.
19193
19194 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
19195
19196         * reflection.c icall.c: Fixed warnings.
19197
19198         * image.c (load_class_names): Use a temporary hash table to hold the
19199         namespaces in order to avoid doing many string comparisons.
19200
19201         * image.h: Fix typo.
19202
19203         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
19204         Pass NULL instead of g_direct_equal to the GHashTable constructor 
19205         since the NULL case is short-circuited inside g_hash_table_lookup, 
19206         leading to better performance.  
19207
19208         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
19209         obtain the first custom attribute for a given index. Depends on the
19210         CustomAttribute table being sorted by the parent field.
19211
19212         * reflection.c (mono_custom_attrs_from_index): Use the new function 
19213         for better performance.
19214
19215 2003-09-07  Martin Baulig  <martin@ximian.com>
19216
19217         * class.c (mono_class_init): If we're a generic instance, inflate
19218         all our methods instead of loading them from the image.
19219         (mono_class_from_generic): Set `class->methods = gklass->methods'.
19220
19221 2003-09-07  Martin Baulig  <martin@ximian.com>
19222
19223         * mono-debug-debugger.c: Added support for constructors.
19224
19225 2003-09-06  Martin Baulig  <martin@ximian.com>
19226
19227         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
19228         New interncall.
19229
19230         * reflection.c (mono_reflection_setup_generic_class): Call
19231         ensure_runtime_vtable() to create the vtable.
19232
19233 2003-09-05  Martin Baulig  <martin@ximian.com>
19234
19235         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
19236         MONO_TYPE_MVAR.
19237
19238 2003-09-04  Martin Baulig  <martin@ximian.com>
19239
19240         * reflection.c (mono_reflection_define_generic_parameter): Generic
19241         parameters start with zero.
19242
19243 2003-09-04  Martin Baulig  <martin@ximian.com>
19244
19245         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
19246
19247         * reflection.h (MonoReflectionGenericParam): New typedef.
19248         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
19249         the generic parameters from the managed TypeBuilder.
19250
19251         * reflection.c (mono_reflection_define_generic_parameter): New function.
19252         (mono_reflection_create_runtime_class): Encode generic parameters.
19253         (mono_reflection_setup_generic_class): New function; this is
19254         called after adding adding all generic params to the TypeBuilder.
19255         (encode_type): Added MONO_TYPE_VAR.
19256
19257 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
19258
19259         * class.h class.c (mono_class_needs_cctor_run): Moved this method
19260         here from the JIT.
19261
19262         * assembly.h assembly.c: Moved the AOT loading code into an assembly
19263         load hook.
19264
19265 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
19266
19267         * reflection.h reflection.c class.h class.c: Delete duplicate 
19268         definition of mono_type_get_name () from reflection.c and export the
19269         one in class.c.
19270
19271         * class.c: Class loading fixes from Bernie Solomon 
19272         (bernard@ugsolutions.com).
19273
19274         * reflection.c: Endianness fixes from Bernie Solomon 
19275         (bernard@ugsolutions.com).
19276         
19277 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
19278
19279         * assembly.h assembly.c: Define a file format version for AOT
19280         libraries.
19281         
19282         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
19283
19284         * appdomain.h (MonoJitInfo): New field to determine whenever the
19285         code is domain neutral.
19286         
19287 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
19288
19289         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
19290
19291 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
19292
19293         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
19294         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
19295         Avoid caching the result since strings must be domain specific. Fixes
19296         #48050.
19297
19298 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
19299
19300         * marshal.c (mono_marshal_init): Make this callable multiple times
19301         since it is hard to find a correct place to call it.
19302
19303         * object.c (mono_runtime_class_init): Execute static constructors in
19304         the correct appdomain.
19305
19306         * image.c (build_guid_table): Handle the case when multiple images have
19307         the same GUID.
19308
19309 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19310
19311         * icall.c: added a couple of icalls for System.Web.
19312
19313 2003-08-28  Martin Baulig  <martin@ximian.com>
19314
19315         * icall.c (ves_icall_Type_BindGenericParameters): Use
19316         `klass->generic_inst' instead of `&klass->byval_arg' in the
19317         mono_type_get_object() call.  The returned type must be
19318         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
19319
19320 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
19321
19322         * NOTES: New file.
19323
19324         * object.c (mono_class_proxy_vtable): Make it thread safe.
19325
19326         * pedump.c: Fix warning.
19327
19328         * object.c appdomain.h: Get rid of metadata_section. 
19329         It is no longer needed and it was causing deadlocks with domain->lock.
19330
19331         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
19332
19333 2003-08-26  Martin Baulig  <martin@ximian.com>
19334
19335         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
19336
19337 2003-08-26  Martin Baulig  <martin@ximian.com>
19338
19339         * pedump.c (main): Call mono_metadata_init(),
19340         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
19341         and mono_loader_init().
19342
19343 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
19344
19345         * loader.h: Add missing include to fix build.
19346
19347         * image.h: mono_image_load_references is no more.
19348
19349         * assembly.c: Reworked assembly loading to make it really thread safe.
19350         After these changes, the assembly returned by mono_assembly_open is
19351         fully initialized, i.e. all its references assemblies are loaded.
19352
19353         * assembly.c (mono_image_load_references): Renamed to 
19354         mono_assembly_load_references, and made private, since clients no
19355         longer need to call it.
19356
19357         * class.c: Removed calls to mono_assembly_load_references, since it was
19358         a source of deadlocks.
19359
19360         * loader.h loader.c class.h class.c: Protect data structures using a 
19361         new lock, the loader lock.
19362
19363         * class.c (mono_class_setup_vtable): Create temporary hash tables and
19364         GPtrArrays only when needed.
19365
19366         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
19367         into empty structures by mcs. Fixes pinvoke7.cs.
19368         
19369         * domain.c (mono_init): Call a new initialization function.
19370
19371         * appdomain.c (mono_runtime_init): Call the new initializer function
19372         of the marshal module.
19373
19374         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
19375         inserted into empty structures by mcs. Fixes pinvoke7.cs.
19376
19377         * marshal.h marshal.c: Added locks around the wrapper caches to make
19378         this module thread safe.
19379
19380         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
19381         this argument. Fixes pinvoke1.exe.
19382
19383 2003-08-25  Lluis Sanchez <lluis@ximian.com>
19384
19385         * object.h: Added call_type field to MonoMethodMessage and the corresponding
19386         enumeration of values. Removed fields to store remote call output values in
19387         MonoAsyncResult. Not needed any more.
19388         * object.c: Initialize call_type and async_result fields in mono_message_init.
19389         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
19390         dispatching the message.
19391         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
19392         async call to finish. To do it use a message with EndInvoke call type.
19393
19394 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
19395
19396         * loader.h loader.c (mono_method_hash_marhal_info): New function which
19397         determines whenever a method has marshalling info.
19398
19399 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19400
19401         * assembly.c: fix the build on windows.
19402
19403 2003-08-22 Lluis Sanchez <lluis@ximian.com>
19404
19405         * object.cs: Fixed bug #47785.
19406
19407 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
19408
19409         * string-icalls.c (StringReplace): If their are no occurances of
19410         the old string found return a reference to the supplied
19411         string. This saves some memory and matches MS behavoir.
19412         
19413 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19414
19415         * socket-io.c: fixed compilation for systems that define AF_INET6
19416         and don't define SOL_IP/SOL_IPV6.
19417
19418 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
19419
19420         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
19421         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
19422
19423         * rawbuffer.c rawbuffer.h: Make this module thread safe.
19424
19425         * domain.c: Make this module thread safe.
19426
19427         * domain.c (mono_init): Call new initialization function.
19428
19429         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
19430         reference types too. Fixes #38812.
19431
19432         * image.c (mono_image_init): Fixed warnings.
19433
19434         * class.c (mono_class_from_typeref): Handle assembly load failure
19435         correctly.
19436
19437         * appdomain.c (add_assemblies_to_domain): Handle the case when
19438         the references of an assembly are not yet loaded.
19439
19440         * metadata.c image.c assembly.c: Moved initialization of global
19441         variables to a separate function called at startup since lazy 
19442         initialization of these variables is not thread safe.
19443         
19444         * image.c assembly.c: Made this module thread safe by adding locks in 
19445         the appropriate places.
19446
19447         * domain.c (mono_init): Call the new initialization functions of the
19448         three modules.
19449
19450 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
19451
19452         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
19453           make a direct call. It is proxy's work to make the call asynchronous.
19454           mono_delegate_end_invoke(): If the targe is a proxy, just collect
19455           the return values.
19456         * object.cs: mono_method_call_message_new(): read AsyncResult and
19457           state object from parameters list, if this info is requested.
19458         * object.h: Added fields to store remote call output values in
19459           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
19460
19461 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
19462
19463         * object.h: add needed fields to MonoThread.
19464         * threads.c, threads.h: allow registering a function to cleanup data
19465         allocated per thread by the JIT.
19466
19467 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
19468
19469         * loader.h: portability fix by Bernie Solomon
19470         * <bernard@ugsolutions.com>.
19471
19472 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
19473
19474         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
19475         return a MonoArray. This simplifies the code and also ensures that
19476         the cache allways contains an object reference as a value.
19477
19478         * icall.c (ves_icall_get_parameter_info): Simplified using the new
19479         function.
19480
19481 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19482
19483         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
19484         fixes a problem with byte ordering when getting the address family for
19485         a socket.
19486
19487 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
19488
19489         * .cvsignore: Added monosn.
19490
19491         * reflection.h reflection.c loader.c: Added support for parameter
19492         marshalling to dynamically created types. Fixes #47295.
19493
19494 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
19495
19496         * rand.c: remove useless warnings.
19497
19498 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19499
19500         * class.c: implemented ldtoken for methods and fieldrefs.
19501
19502 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19503
19504         * threadpool.c: when mono_async_invoke was called, no one took care of
19505         monitoring the queue. So if the method invoked took some time and we
19506         got new async invoke requests after 500 ms (the thread created waited
19507         that long in WaitForSingleObject), the new async invoke was not called
19508         until the previous one finished.
19509
19510         This is fixed now. Thanks to Totte for helping with it.
19511
19512 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19513
19514         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
19515
19516 2003-08-11  Martin Baulig  <martin@ximian.com>
19517
19518         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
19519
19520 2003-08-06  Martin Baulig  <martin@ximian.com>
19521
19522         * mono-debug-debugger.c: Added support for static fields,
19523         properties and methods.
19524
19525 2003-08-06  Martin Baulig  <martin@ximian.com>
19526
19527         * mono-debug-debugger.c: Don't store the MonoString's vtable to
19528         make this work for applications with multiple application domains.
19529
19530 2003-08-04  Martin Baulig  <martin@ximian.com>
19531
19532         * mono-debug-debugger.c: Completely reworked the type support; the
19533         most important thing is that we're now just using one single
19534         `MonoType' instance per type.
19535
19536 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
19537
19538         * mono-endian.h, mono-endian.c, icall.c: Added icall
19539         ves_icall_System_Double_AssertEndianity to assert double word endianity
19540         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
19541
19542 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
19543
19544         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
19545         support, icalls and fixes.
19546
19547 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
19548
19549         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
19550         classes that are a punctuation character in .NET is not the same a
19551         g_unichar_ispunct.
19552
19553 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
19554
19555         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
19556
19557 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
19558
19559         * icall.c: Add new MemCopy internalcall.
19560         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
19561         Simplified code; It is not necessary to handle all the cases here,
19562         as the C# code takes care of it.  Only handle the case of the name
19563         resource embedded into the assembly.
19564
19565         Changed signature to return the data pointer and the size of the
19566         data. 
19567
19568 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
19569
19570         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
19571         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
19572
19573 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
19574
19575         * socket-io.c: ignore EINTR error in select.
19576
19577 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
19578
19579         * class.h, class.c: removed unused subclasses field in MonoClass.
19580
19581 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
19582
19583         * icall.c: improve fix of get_base_definition(). If the parent class
19584           doesn't have the mehod, look at the parent of the parent.
19585         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
19586           to check if a parameter is an in or out parameter
19587           (PARAM_ATTRIBUTE_IN is not set by default).
19588           mono_method_return_message_restore(): Use mono_class_value_size to
19589           get the size of a value type. mono_type_stack_size (parameterType)
19590           does not return the correct value if parameterType is byRef.
19591           mono_load_remote_field(), mono_load_remote_field_new(),
19592           mono_store_remote_field(), mono_store_remote_field_new():
19593           raise exception if the remote call returns an exception.
19594
19595 2003-07-28  Martin Baulig  <martin@ximian.com>
19596
19597         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
19598         method.  This is a wrapper around mono_runtime_invoke() which
19599         boxes the instance object if neccessary.
19600
19601 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
19602
19603         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
19604         metadata.h, row-indexes.h, verify.c: first cut of generics support.
19605
19606 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
19607
19608         * icall.c: disable mcs bug workaround.
19609
19610 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
19611
19612         * object.c (mono_runtime_class_init): Take the metadata_section
19613         mutex before obtaining the domain mutex.
19614
19615         * appdomain.h: Added definition of metadata_section mutex here. 
19616
19617         * object.c: define metadata_mutex here.
19618
19619 2003-07-24  Ravi Pratap  <ravi@ximian.com>
19620
19621         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
19622         fixed.
19623
19624 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
19625
19626         * reflection.c: Fix bug #46669
19627
19628 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19629
19630         * exception.c:
19631         * exception.h:
19632         * icall.c:
19633         * object.h: fill in the type name for TypeLoadException.
19634
19635 2003-07-23  Ravi Pratap  <ravi@ximian.com>
19636
19637         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
19638         relationship between TypeBuilders while compiling corlib) and bug
19639         45993 (Array types returned from the runtime while compiling
19640         corlib were from the loaded corlib).
19641
19642 2003-07-22  Martin Baulig  <martin@ximian.com>
19643
19644         * mono-debug-debugger.c: Reworked the type support a bit more;
19645         distinguish between types and classes.
19646
19647 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
19648
19649         * icall.c: add IsArrayImpl icall.
19650
19651 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
19652
19653         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
19654         initializing real_size only once. Also fix bug #46602.
19655
19656 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
19657
19658         * object.c: Renamed mono_metadata_section to metadata_section.
19659
19660 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
19661
19662         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
19663           empty array if the type is an array. Fixed.
19664           ves_icall_MonoMethod_get_base_definition: if the base method
19665           is abstract, get the MethodInfo from the list of methods of
19666           the class.
19667         * reflection.c: ParameterInfo.PositionImpl should be zero-based
19668           and it was 1-based. Fixed in mono_param_get_objects.
19669
19670 2003-07-20  Martin Baulig  <martin@ximian.com>
19671
19672         * mono-debug.h: Set version number to 31.
19673         (mono_debug_init): Added `MonoDomain *' argument.
19674
19675         * mono-debug-debugger.c: Reworked the type support; explicitly
19676         tell the debugger about builtin types; pass the `klass' address to
19677         the debugger.
19678
19679 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
19680
19681         * image.c: Allow new metadata tables to be loaded without a
19682         warning. Also update the warning message to give the new constant value.
19683                 
19684 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
19685
19686         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
19687         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
19688         array type representation changes.
19689
19690 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
19691
19692         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
19693         on Environment.Exit () call.
19694
19695 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19696
19697         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
19698         requires a matching corlib.
19699
19700 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
19701
19702         * Changelog: My editor decided to add a CR to each line. Sorry about that.
19703           Committed again without the CRs.
19704         
19705 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
19706
19707         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
19708           getting it from the "this" socket instance. Did not work
19709           if the socket is a subclass of Socket.
19710           Also fixed bug #35371.
19711
19712 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19713
19714         * metadata.c: fixed size for TypedByRef.
19715         * loader.c: when searching for a method, consider the vararg amrker.
19716         * unicode.c, decimal.c: constify some arrays.
19717
19718 2003-07-15  Dick Porter  <dick@ximian.com>
19719
19720         * socket-io.c: Fixed compilation for gcc < 3.2.
19721
19722         Fixed compilation for machines that don't have AF_INET6 (thanks to
19723         Bernie Solomon <bernard@ugsolutions.com> for that part.)
19724
19725         Fixed compile warnings.
19726         
19727         Fixed formatting and line endings.
19728
19729 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
19730
19731         * socket-io.h:
19732         * socket-io.c: Added IPv6 support.
19733
19734 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
19735
19736         * class.c (mono_class_is_assignable_from): New function to implement
19737         the is_assignable_from logic. Used by mono_object_isinst, 
19738         Type::IsAssignableFrom () and the interpreter.
19739
19740         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
19741         Object, even interfaces.
19742         
19743         * object.c (mono_object_isinst): Implement in terms of 
19744         is_assignable_from.
19745
19746         * icall.c (ves_icall_type_is_assignable_from): New icall.
19747
19748 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
19749
19750         * domain.c (foreach_domain): fix compiler warning.
19751
19752 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
19753
19754         * image.c (load_metadata_ptrs): use g_strndup because strndup is
19755         not available on all plattforms
19756
19757 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
19758
19759         * image.h image.c: Store the metadata version string in MonoImage.
19760         * icall.c: New icall to retrieve the image version.
19761         * reflection.c (create_dynamic_image): Fill in the image version field
19762         * reflection.c (build_compressed_metadata): Use the image version
19763         from the image structure.
19764
19765 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19766
19767         * appdomain.c: modified comment.
19768         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
19769         That will be its last iteration when mono_gc_cleanup is called from
19770         mono_runtime_cleanup and before the domain is unloaded.
19771
19772         Fixes bug #45962.
19773
19774 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
19775
19776         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
19777         attributes.
19778
19779 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
19780
19781         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
19782         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
19783         Bernie Solomon <bernard@ugsolutions.com>.
19784
19785 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
19786
19787         * object.c, object.h: provide mono_object_new_fast() for faster
19788         allocation in some special cases.
19789
19790 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
19791
19792         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
19793         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
19794
19795 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
19796
19797         * threadpool.c: fix leaks.
19798
19799 2003-07-01  Dick Porter  <dick@ximian.com>
19800
19801         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
19802         using MonoGHashTables.  Fixes threadpool bug posted to list.
19803
19804 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
19805
19806         * image.h, image.c: added support to load an assembly from a byte array.
19807         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
19808         assembly bundle support.
19809
19810 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
19811
19812         * threadpool.c (mono_thread_pool_add): keep a reference to the
19813         AsyncResult to prevent GC
19814
19815 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
19816
19817         * class.c: leak fix.
19818
19819 2003-06-25  Dick Porter  <dick@ximian.com>
19820
19821         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
19822         for the async object, the WaitHandle object will close the handle.
19823         Fixes bug 45321.
19824
19825 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19826
19827         * class.c: in mono_array_class_get (), lookup from the hash with the
19828         same type we insert: this works around a bug in
19829         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
19830         lluis. The real fix will have to wait for after the release.
19831
19832 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19833
19834         * icall.c: fix memory leak when getting type members.
19835
19836 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
19837
19838         * reflection.c: added more pubtoken special cases.
19839
19840 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
19841
19842         * class.c: handle field offset correctly when class size
19843         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
19844
19845 2003-06-20  Martin Baulig  <martin@ximian.com>
19846
19847         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
19848         *image' field.
19849
19850 2003-06-20  Martin Baulig  <martin@ximian.com>
19851
19852         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
19853
19854 2003-06-20  Martin Baulig  <martin@ximian.com>
19855
19856         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
19857         just distinguish between variables in registers and variables at
19858         an offset relative to a register.
19859
19860 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19861
19862         * icall.c: #ifdef out latest changes until mcs is fixed.
19863
19864 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
19865
19866         * icall.c: return members in metadata order.
19867
19868 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
19869
19870         * icall.c: avoid infinite loop in GetTimeZoneData.
19871
19872 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
19873
19874         * icall.c: added Marshal.Prelink/All icalls.
19875
19876 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
19877
19878         * object.c, object.h: fix warnings and do some overflow checking
19879         when creating arrays.
19880
19881 2003-06-17  Dick Porter  <dick@ximian.com>
19882
19883         * file-io.h:
19884         * file-io.c: File attributes need to be tweaked slightly when
19885         passed from the managed to the w32 world.
19886
19887 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
19888         * profiler.h profiler-private.h profiler.c: Rework last patch
19889         based on suggestion by Paolo.
19890         
19891 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
19892
19893         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
19894         instruction level coverage data collection.
19895         * profiler.h profiler.c (: Added new callback function which can be
19896         used by the profiler to limit which functions should have coverage
19897         instrumentation.
19898         * profiler.c (mono_profiler_load): Call g_module_build_path to
19899         generate the file name of the profiler library.
19900
19901 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
19902
19903         * profiler.c, profiler.h, profiler-private.h: added basic block 
19904         coverage profiling API.
19905
19906 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
19907
19908         * reflection.c (mono_reflection_create_runtime_class): Add support
19909         for events in dynamically generated code.
19910
19911         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
19912         not allocated.
19913
19914 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19915
19916         * icall.c: when getting timezone info, return reasonable values if we
19917         can't get the actual data.
19918
19919 2003-06-14  Dick Porter  <dick@ximian.com>
19920
19921         * threads.c (start_wrapper): Remove the reference to the thread
19922         object in the TLS data, so the thread object can be finalized.
19923         This won't be reached if the thread threw an uncaught exception,
19924         so those thread handles will stay referenced :-( (This is due to
19925         missing support for scanning thread-specific data in the Boehm GC
19926         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
19927
19928 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
19929
19930         * reflection.c: ensure streams and tables are first allocated with
19931         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
19932
19933 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
19934
19935         * icall.c: fixed GetElementType for byrefs (bug# 44792).
19936
19937 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
19938
19939         * reflection.c (mono_reflection_create_runtime_class): Add support for
19940         properties to dynamically created classes.
19941         * reflection.c: Fix a few places where non-MonoObjects were inserted
19942         into the tokens hashtable.
19943
19944 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
19945
19946         * object.c: some support to handle out of memory exceptions.
19947
19948 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
19949
19950         * marshal.c (mono_marshal_get_native_wrapper): support reference
19951         return types
19952
19953 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
19954
19955         * object.h, object.c: more portability stuff from Bernie Solomon.
19956         Unexport mono_object_allocate(). Added mono_object_unbox ().
19957         Set exitcode when an unhandled exception is thrown.
19958
19959 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
19960
19961         * marshal.c (mono_marshal_get_native_wrapper): use custom
19962         marshaler for return types.
19963
19964 2003-06-10  Dick Porter  <dick@ximian.com>
19965
19966         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
19967         ip_mreq is available
19968
19969 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
19970
19971         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
19972         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
19973         by Bernie Solomon <bernard@ugsolutions.com>.
19974
19975 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
19976
19977         * gc.c (mono_gc_init): Avoid error message on shutdown when
19978         GC_DONT_GC=1 is used.
19979
19980         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
19981         New icall to return the GUID of a module.
19982
19983 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
19984
19985         * class.c: ensure instance size always includes the parent's size
19986         even whem class size is set explicitly (fixes bug#44294).
19987
19988 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19989
19990         * profiler.h, profiler.c: made the simple profiler thread-safe,
19991         get more accurate timing info. Allow the loading of an
19992         externally-developed profiler module.
19993
19994 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
19995
19996         * marshal.c (mono_marshal_get_native_wrapper): improved
19997         class/byref arguments.
19998         (mono_marshal_get_native_wrapper): better string marshaling support.
19999
20000 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
20001
20002         * class.c: ensure .pack and .size are handled correctly and
20003         simplified layout of static fields.
20004
20005 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
20006
20007         * appdomain.c
20008         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
20009
20010         * loader.c (mono_lookup_pinvoke_call): look for modules in the
20011         current directory (fix bug 44008)
20012
20013 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
20014
20015         * marshal.c (mono_marshal_get_native_wrapper): started support for
20016         custom marshalers.
20017         (mono_delegate_to_ftnptr): consider marshalling specifications
20018
20019 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
20020
20021         * reflection.c, reflection.h: emit custom marshal info.
20022
20023 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20024
20025         * object.c: free the GError.
20026         * icall.c: added CloseEvent_internal.
20027         * threads.[ch]:
20028         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
20029         call.
20030
20031 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
20032
20033         * loader.c (mono_method_get_signature): Add support for dynamic
20034         assemblies.
20035
20036 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
20037
20038         * reflection.c: fixed bug #43905.
20039
20040 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
20041
20042         * class.c, domain.c, icall.c, metadata.h, object.h: support for
20043         handling TypedReference and ArgIterator.
20044         * loader.c, loader.h: added function to get signature at call site.
20045
20046 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
20047
20048         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
20049         data readonly. Buglets and warning fixes. Some MethodSpec support.
20050
20051 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
20052
20053         * class.h, class.c, object.c: remove relative numbering support.
20054
20055 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
20056
20057         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
20058         free the string, until we get a chance to fix Gtk#
20059
20060 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20061
20062         * marshal.c: revert last patch.
20063
20064 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
20065
20066         * icall.c: updates for new mono_class_vtable() not calling
20067         the type constructor anymore.
20068
20069 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
20070
20071         * object.h, object.c: separate vtable creation from type
20072         initialization. Make running the .cctor thread safe.
20073
20074 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
20075
20076         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
20077
20078 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
20079
20080         * loader.c (mono_get_method): consider calling convention
20081
20082 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
20083
20084         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
20085         to return the invisible global type for a module.
20086
20087         * reflection.c (mono_image_build_metadata): Emit global fields too.
20088
20089 2003-05-20  Peter Williams  <peterw@ximian.com>
20090
20091         * loader.c (mono_lookup_internal_call): Add a few newlines.
20092
20093 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
20094
20095         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
20096         literal strings.
20097
20098         * appdomain.c (set_domain_search_path): Recalculate search path when
20099         AppDomainSetup.PrivateBinPath changes.
20100
20101         * object.c (mono_class_compute_gc_descriptor): It turns out some
20102         parts of the class libs (like System.Thread) holds pointers to
20103         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
20104         to treat native int a pointer type here.
20105         
20106 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
20107
20108         * appdomain.h, domain.c: add hashtable for jump target resolution.
20109
20110 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
20111
20112         * reflection.h reflection.c icall.c: Added new icalls 
20113         GetManifestResourceInfoInternal, GetModulesInternal and support
20114         infrastructure.
20115
20116 2003-05-16  Dick Porter  <dick@ximian.com>
20117
20118         * icall.c:
20119         * file-io.h:
20120         * file-io.c: Implement System.IO.MonoIO::GetTempPath
20121
20122 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
20123
20124         * object.c: mono_store_remote_field: little fix to previous patch.
20125
20126 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
20127
20128         * class.c: add constructors to array classes.
20129         * icall.c: special case array construction for InternalInvoke (),
20130
20131 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
20132
20133         * class.h class.c reflection.c object.c: Added support for field
20134         defaults in dynamically generated classes.
20135
20136 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
20137
20138         * reflection.c: properly encode charset for ddlimport.
20139
20140 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
20141
20142         * threads.c: allow compiling without GC.
20143
20144 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
20145
20146         * appdomain.h, object.c, object.h, threads.c, threads.h: added
20147         handling of thread static data.
20148
20149 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
20150
20151         * reflection.h, reflection.c: added mono_custom_attrs_free ().
20152
20153 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
20154
20155         * class.c (mono_array_class_get): always set the serializable flags
20156         (mono_array_class_get): always set the SEALED attribute for array types
20157
20158 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
20159
20160         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
20161         attributes (fix for bug 42021).
20162
20163 2003-05-12  Dick Porter  <dick@ximian.com>
20164
20165         * gc.c: Don't run finalizers when the finalizer thread is
20166         finishing up, because the default domain has already been
20167         destroyed.
20168
20169 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
20170
20171         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
20172         value is null, we should throw an exception.   This is slightly
20173         different than the other conventions used for the constructor.
20174
20175 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20176
20177         * socket-io.c: fixed windows build.
20178
20179 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20180
20181         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
20182
20183 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
20184
20185         * object.c (mono_string_new_wrapper): Compatibility fix for MS
20186         compilers.
20187
20188 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
20189
20190         * class.c (mono_class_layout_fields): Add experimental GC aware
20191         auto layout facility. Requires class library changes to work correctly.
20192
20193         (mono_class_setup_vtable): Avoid overriding explicit interface
20194         method implementations. Fixes iface3.exe test.
20195
20196         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
20197         object reference.
20198         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
20199         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
20200
20201         * metadata.h: Add new type classification macro which determines
20202         whenever the type holds an object reference.
20203
20204 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
20205
20206         * marshal.c (mono_marshal_get_native_wrapper): cleanups
20207
20208 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
20209
20210         * gc.c (finalizer_thread): Work around a GC bug.
20211
20212 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
20213
20214         * marshal.c (emit_struct_conv): allow unions
20215
20216         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
20217
20218 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
20219
20220         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
20221
20222 2003-05-06  Martin Baulig  <martin@ximian.com>
20223
20224         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
20225
20226 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20227
20228         * socket-io.c:
20229         (Select_internal): allow NULLs, don't create arrays if not needed.
20230         Coupled with Socket.cs changes.
20231
20232         * threadpool.c:
20233         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
20234         register a finalizer for it that will close the semaphore handle. This
20235         fixes the leak and make Lupus' test run with > 4080 loops.
20236
20237 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
20238
20239         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
20240         Jerome Laban (bug #42287)
20241
20242 2003-05-02  Martin Baulig  <martin@ximian.com>
20243
20244         * debug-mono-symfile.h
20245         (MonoSymbolFile): Moved declaration into mono-debug.h.
20246         (MonoDebugMethodJitInfo): Likewise.
20247         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
20248         argument.
20249         (_mono_debug_address_from_il_offset): Take a
20250         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
20251
20252         * mono-debug.h
20253         (MonoDebugDomainData): New struct.
20254         (mono_debug_get_domain_data): New function.
20255         (mono_debug_add_method): Take an additional `MonoDomain *'
20256         argument.
20257         (mono_debug_source_location_from_address): Likewise.
20258         (mono_debug_il_offset_from_address): Likewise.
20259         (mono_debug_address_from_il_offset): Likewise.
20260
20261 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
20262
20263         * reflection.c: one more check for null type in custom attrs.
20264
20265 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20266
20267         * reflection.c: avoid warning (comparison is always false due to limited
20268         range of data type).
20269
20270 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20271
20272         * icall.c: throw an exception in Type.GetField if the argument 'name'
20273         is NULL.
20274
20275 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
20276
20277         * reflection.c: fixed handling of enums in named arguments to custom
20278         attributes (bug #42123).
20279
20280 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
20281
20282         * reflection.c: use the right array element type and handle
20283         a null for a Type argument, too.
20284
20285 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
20286
20287         * reflection.c: handle arrays as arguments to custom attributes.
20288
20289 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
20290
20291         * reflection.c: handle a string value in a custom attr
20292         ctor that takes an object.
20293
20294 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
20295
20296         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
20297         (fix bug #42063)
20298
20299 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
20300
20301         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
20302
20303 2003-04-27  Martin Baulig  <martin@ximian.com>
20304
20305         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
20306         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
20307         MONO_DEBUGGER_EVENT_BREAKPOINT.
20308         (mono_breakpoint_trampoline_code): Removed.
20309         (mono_debugger_event_handler): The last argument is now a
20310         `guint32'.
20311         (mono_debugger_insert_breakpoint_full): Removed the
20312         `use_trampoline' argument.
20313         (mono_debugger_method_has_breakpoint): Likewise.
20314         (mono_debugger_trampoline_breakpoint_callback): Renamed to
20315         mono_debugger_breakpoint_callback(); take the method and
20316         breakpoint number as arguments.
20317
20318 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
20319
20320         * metadata.c: fix off by one when loading parameters attributes.
20321
20322 2003-04-24  Martin Baulig  <martin@ximian.com>
20323
20324         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
20325
20326 2003-04-24  Martin Baulig  <martin@ximian.com>
20327
20328         * mono-debug-debugger.c: Moved all code which interacts with the
20329         Mono Debugger here.
20330
20331         * debug-mono-symfile.c: This code now just deals with the symbol
20332         file itself, the debugger code is now in mono-debug-debugger.c.
20333
20334 2003-04-23  Martin Baulig  <martin@ximian.com>
20335
20336         * mono-debug.c (mono_debug_source_location_from_il_offset):
20337         New method; like mono_debug_source_location_from_address(), but
20338         takes an IL offset instead of a machine address.
20339
20340 2003-04-23  Martin Baulig  <martin@ximian.com>
20341
20342         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
20343         `line' field; this is now computed by the debugger.
20344
20345 2003-04-23  Martin Baulig  <martin@ximian.com>
20346
20347         * mono-debug.[ch]: New files.  This is the new debugging interface.
20348
20349         * mono-debug-debugger.[ch]: New files.  Moved all code which
20350         interacts with the Mono Debugger here.
20351
20352 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
20353
20354         * domain.c (mono_init): initialize mono_defaults.monitor_class
20355
20356 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
20357
20358         * reflection.c (method_encode_code): Add a spicy exception to help
20359         future compiler authors.
20360
20361 2003-04-21  Martin Baulig  <martin@ximian.com>
20362
20363         * icall.c
20364         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
20365         Make this work with relative pathnames; g_filename_to_uri() needs
20366         an absolute filename.
20367
20368 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
20369
20370         * icall.c: Track name changes in Object and ValueType.
20371
20372 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
20373
20374         * metadata.c (mono_type_stack_size): size should be a multiple of
20375         sizeof (gpointer)
20376
20377 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20378
20379         * gc.c:
20380         (internal_domain_finalize): moved into mono_domain_finalize. No need
20381         to create another thread because the finalizers will be run in the
20382         finalizer thread.
20383         
20384         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
20385         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
20386         to be run (MS does this too).
20387
20388 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
20389
20390         * object.c (mono_class_compute_gc_descriptor): Update comment.
20391
20392         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
20393
20394         * image.h: Add synchronized wrapper cache.
20395
20396         * image.c (do_mono_image_open): Initialize cache.
20397
20398         * reflection.c (create_dynamic_mono_image): Initialize cache.
20399
20400 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20401
20402         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
20403         ves_icall_System_Buffer_ByteLengthInternal.
20404
20405 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
20406
20407         * reflection.c: setup klass->nested_in earlier. Allow
20408         a dash in the assembly name.
20409
20410 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
20411
20412         * metadata.c (mono_type_to_unmanaged): dont access
20413         type->data.klass for MONO_TYPE_OBJECT
20414         (mono_type_to_unmanaged): consider System.Delegate class
20415
20416 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
20417
20418         * class.c: just setup supertypes in the proper place instead of
20419         initializing the full element class for arrays.
20420
20421 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
20422
20423         * class.c: ensure the element class of arrays is initialized.
20424         Setup the supertype info for array classes, too.
20425
20426 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
20427
20428         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
20429
20430 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20431
20432         * Makefile.am: re-added -m option when running cygpath. This way,
20433         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
20434         separator.
20435         * mono-config.c: same codepath for locating mono config file for WIN32
20436         and the rest.
20437         * assembly.c: if mono_assembly_setrootdir is called, don't override
20438         the value set.
20439
20440 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20441
20442         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
20443         MONO_ASSEMBLIES variable.
20444
20445 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
20446
20447         * icall.c: added Assembly::GetNamespaces() icall.
20448
20449 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20450
20451         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
20452
20453 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
20454
20455         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
20456         * object.c: fixed bug in the construction of vtable for proxies
20457
20458 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
20459
20460         * object.c (mono_array_new): Mark mono_array_new as an icall.
20461
20462 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20463
20464         * class.c: fixed test for public method when overriding interfaces.
20465         Closes bug #40970.
20466
20467 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
20468
20469         * appdomain.h, domain.c: added mono_domain_foreach() to
20470         be able to access the currently loaded appdomains.
20471         * object.c: make string interning work across sppdomains.
20472         Mark some functions for use as icalls.
20473
20474 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
20475
20476         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
20477
20478         * reflection.h reflection.c: Allocate long living data using 
20479         GC_MALLOC_ATOMIC so the collector does not need to scan it.
20480
20481         * reflection.c: Double the allocation size in streams instead of
20482         increasing it, to prevent unneccesary copying on large assemblies.
20483         
20484         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
20485         creation if the assembly does not have the Run flag set.
20486
20487 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
20488
20489         * class.h: avoid the C++ keywords in header files (Jerome Laban
20490         spotted and fixed this).
20491
20492 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20493
20494         * object.c:
20495         (mono_unhandled_exception): fill in the arguments for the
20496         UnhandledException event. Only trigger that event for the default
20497         domain (as MS does).
20498
20499 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
20500
20501         * object.c: Improve typed allocation stuff based on suggestions from
20502         Paolo. Also turn it on if the GC library supports it.
20503
20504 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
20505
20506         * object.c object.h class.h: Added experimental typed allocation
20507         facility using the interfaces in gc_gcj.h.
20508
20509         * os/gc_wrapper.h: Added new include files.
20510         
20511 2003-04-03  Martin Baulig  <martin@ximian.com>
20512
20513         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
20514         which is not yet enabled by default.
20515
20516         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
20517         functions.
20518         (mono_gc_lock, mono_gc_unlock): New static functions.
20519
20520         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
20521         functions; stop/start the world for the garbage collector.  This
20522         is using the windows API; we need to complete the SuspendThread()/
20523         ResumeThread() implementation in the io-layer to make this work on Unix.
20524         (mono_gc_push_all_stacks): New public function; tells the garbage
20525         collector about the stack pointers from all managed threads.
20526
20527 2003-04-03  Martin Baulig  <martin@ximian.com>
20528
20529         * object.h (MonoThread): Added `gpointer stack_ptr'.
20530
20531         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
20532
20533 2003-04-03  Martin Baulig  <martin@ximian.com>
20534
20535         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
20536
20537 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
20538
20539         * reflection.c (typebuilder_setup_fields): Initialize field.first and
20540         field.last.
20541
20542 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
20543
20544         * loader.c (mono_lookup_internal_call): Report the corlib that is
20545         out of sync.
20546
20547 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
20548
20549         * icall.c (ves_icall_type_GetTypeCode): fixed check for
20550         System.DBNull (it's class not valuetype).
20551
20552 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
20553
20554         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
20555         if the array method was already assigned a token (fixes bug#40646).
20556
20557 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
20558
20559         * reflection.c (mono_reflection_get_type): Attempt type resolve even
20560         if no assembly is given.
20561
20562 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
20563
20564         * metadata.h: Added the new tables.
20565
20566         * row-indexes.h: Added definitions for new tables.
20567
20568         * metadata.c: Add schemas for new tables, and add support for
20569         computing the sizes of them.
20570
20571         * class.c: Update for handling the new type cases.
20572
20573 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
20574
20575         * metadata.h (MONO_TYPE_IS_VOID): new macro
20576
20577 2003-03-31  Martin Baulig  <martin@ximian.com>
20578
20579         * threads.h (MonoThreadCallbacks): Added `thread_created'.
20580
20581         * threads.c (mono_thread_new_init): Call `thread_created' in the
20582         mono_thread_callbacks.
20583
20584 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
20585
20586         * loader.h: added marshalbyrefobject_class to mono_defaults
20587         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
20588         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
20589           generation of output parameters.
20590           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
20591         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
20592           contextbound and the target object belongs to the context of the caller.
20593         * object.h: added context and unwrapped_server variables in MonoRealProxy.
20594         * object.c: Implemented support for interfaces and abstract classes
20595           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
20596           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
20597
20598 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
20599
20600         * class.h class.c (mono_class_is_subclass_of): New function.
20601         
20602         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
20603         routines for most common case (calls from ArrayList::ToArray).
20604
20605         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
20606         routine so programs which call Environment::Exit() can be profiled.
20607
20608         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
20609         Added MONO_ARCH_SAVE_REGS.
20610
20611         * icall.c (ves_icall_type_is_subtype_of): Use new function.
20612
20613 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
20614
20615         * blob.h: Add a couple of new MonoType types definitions.
20616
20617         * tabledefs.h: Add a couple of new call convs.
20618
20619 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
20620
20621         * reflection.h (MonoReflectionDynamicAssembly): track changes in
20622         the layout of the class.
20623
20624         * reflection.c (alloc_table): double the size on overflow to avoid
20625         unnecessary copying.
20626
20627         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
20628         avoid filling out metadata tables and blobs. Also set mb->ilgen to
20629         null so it can be garbage collected.
20630         
20631 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
20632
20633         * reflection.c (mono_reflection_get_type): Return the resolved type
20634         only if it is in the assembly we searched.
20635
20636         * reflection.c (ensure_runtime_vtable): Initialize method slots.
20637
20638         * class.c (mono_class_setup_vtable): Set the slot of the overriding
20639         method.
20640
20641 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20642
20643         * appdomain.c:
20644         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
20645         the right one is 'file:///blah', but MS allows it.
20646         * assembly.c:
20647         (mono_assembly_open): allow 'file://blah'
20648
20649         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
20650
20651 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
20652
20653         * socket-io.c: fixes bug #40310.
20654
20655 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
20656
20657         * reflection.c (mono_reflection_parse_type): handle deeply nested
20658         types correctly.
20659
20660         * reflection.c (mono_image_create_token): Use unique token values
20661         since they will be put into a hash table.
20662
20663         * class.c (mono_class_setup_vtable): If a method occurs in more than
20664         one place in the vtable, and it gets overriden, then change the
20665         other occurances too.
20666
20667         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
20668         object as return type.
20669
20670 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
20671
20672         * icall.c: Deleted "ToString" implementation for double and float
20673         because they are full implemented in managed code.
20674
20675 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
20676
20677         * reflection.c, reflection.h: implemented and exported functions
20678         to retrieve info about custom attributes.
20679
20680 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20681
20682         * appdomain.c: moved Uri handling to assembly.c
20683         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
20684         work when using a file Uri in *nix and windows.
20685
20686         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
20687         GetReferencedAssemblies.
20688
20689 2003-03-18  Dick Porter  <dick@ximian.com>
20690
20691         * icall.c: Rename a couple of internal calls
20692
20693         * threads.c: Set the thread state to Stopped when a thread exits.
20694         Fixes bug 39377.
20695
20696 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
20697
20698         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
20699         New icall.
20700
20701         * object.c (mono_class_vtable): fix warning.
20702
20703 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
20704
20705         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
20706
20707         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
20708         memory.
20709         (method_encode_clauses): Create exception info structures in the right
20710         order.
20711         (mono_reflection_setup_internal_class): Initialize supertypes field.
20712
20713         * class.c object.c: Handle interfaces which implement other interfaces 
20714         correctly.
20715
20716         * class.h class.c: Move the supertypes array initialization code into 
20717         a separate function so it can be used for dynamic types too. Also call
20718         it earlier, in mono_class_init(), since it can be used before the
20719         type is initialized.
20720
20721 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20722
20723         * Makefile.am:
20724         * assembly.c:
20725         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
20726
20727         * appdomain.c:
20728         * appdomain.h:
20729         * marshal.c:
20730         * object.c: remove warnings.
20731
20732 2003-03-13  Martin Baulig  <martin@ximian.com>
20733
20734         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
20735         (MonoDebugLexicalBlockEntry): New types.
20736
20737         * debug-mono-symfile.c
20738         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
20739
20740 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20741
20742         * process.c: ret can be any non-zero value accroding to MS doc.
20743
20744 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
20745
20746         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
20747         fixing a warning for a miss-used prototype, would have cause
20748         random memory corruption.
20749
20750 2003-03-07  Martin Baulig  <martin@ximian.com>
20751
20752         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
20753         getting really annoying ....
20754
20755 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
20756
20757         * reflection.c (fixup_method): added support for array methods.
20758
20759 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
20760
20761         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
20762         (pointed out by Michael Adams).
20763
20764 2003-03-04  Dick Porter  <dick@ximian.com>
20765
20766         * icall.c: Temporarily reverted the Double and Single ToString()
20767         change, because it broke nunit.
20768
20769 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
20770
20771         * object.h, threads.h: make include files compatible with C++
20772         (patch by Jerome Laban <jlaban@wanadoo.fr>).
20773
20774 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
20775
20776         * icall.c: Erased ToString helper functions for Double and Single.
20777         Now, that implementations ar all in managed code (Double and Single
20778         Formatters).
20779
20780 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
20781
20782         * appdomain.c: Added method for initializing the default context of
20783         a domain. Added internal call for getting the default context.
20784         * appdomain.h: Added context variable in MonoDomain struct.
20785         * domain.c: mono_domain_set also sets the default context of the domain
20786         * icall.c: Mapped internal method InternalGetDefaultContext.
20787         * object.c: mono_object_get_virtual_method returns always a remoting
20788         wrapper if the object is a transparent proxy.
20789         mono_runtime_invoke_array: when creating an object by calling the
20790         constructor, if the created object is a proxy, then the constructor should
20791         be called using the a remoting wrapper.
20792
20793 2003-03-03  Dick Porter  <dick@ximian.com>
20794
20795         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
20796         variable so it compiles on solaris.  Problem spotted by
20797         Christopher Taylor <ct@cs.clemson.edu>
20798
20799 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20800
20801         * appdomain.c:
20802         (get_info_from_assembly_name): don't leak value.
20803
20804         * icall.c:
20805         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
20806         result.
20807
20808 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
20809
20810         * assembly.c: export mono_image_load_references ().
20811         * class.c: handle function pointers. mono_class_from_name() now
20812         supports nested type names directly.
20813
20814 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
20815
20816         * reflection.h reflection.c: Encode already created dynamic methods 
20817         and fields correctly as a DEF instead of a REF.
20818
20819         * reflection.c: Get rid of the force_ref argument to 
20820         mono_image_typedef_or_ref since it was wrong in the first place.
20821
20822         * string-icalls.c: add error checking to string constructors according
20823         to the MSDN docs.
20824
20825         * reflection.c: Emit types in the order their TypeBuilders were 
20826         created. Previously, a new table index was assigned to each type before
20827         the tables were emitted. This was wrong because the signature blob
20828         might already refer to a type by its original table index.
20829
20830 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
20831
20832         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
20833         change.
20834         
20835 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20836
20837         * Makefile.am: make assemblies dir have \ instead of / on windows.
20838
20839 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
20840
20841         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
20842         iterate over the NESTEDCLASS table using a linear search since the
20843         table is not guaranteed to be sorted by the secondary key.
20844
20845         * class.c (mono_class_create_from_typedef): fixed up call to
20846         mono_metadata_nesting_typedef.
20847         
20848 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
20849
20850         * marshal.c (mono_string_to_byvalstr): clear the memory as
20851         suggested by Jerome Laban <jlaban@wanadoo.fr>
20852
20853 2003-02-26  Dick Porter  <dick@ximian.com>
20854
20855         * process.c: Cope with padding in .rsrc blocks
20856
20857 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
20858
20859         * metadata.h: reverted the filter_len change, it breaks reflection
20860         
20861 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
20862
20863         * metadata.h: added a new field to store the filter_len
20864         
20865
20866 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
20867
20868         * reflection.c: handle custom attributes for types and members
20869         created with Reflection.Emit (bug#38422).
20870
20871 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
20872
20873         * reflection.c: define RTSpecialName automatically for constructors for
20874         compatibility with MS.NET.
20875
20876         * reflection.c (mono_reflection_create_runtime_class): initialize
20877         nested_in field of dynamically created classes.
20878
20879 2003-02-22  Martin Baulig  <martin@ximian.com>
20880
20881         * debug-mono-symfile.h: Incremented version number.
20882
20883 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
20884
20885         * object.h icall.c process.c: fix warnings.
20886
20887 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
20888
20889         * appdomain.h appdomain.c:
20890         (mono_domain_try_type_resolve): split the 
20891         name_or_tb argument into a name and a tb argument.
20892         (mono_domain_has_type_resolve): new function to check whenever the
20893         application has registered a TypeResolve event handler.
20894         
20895         * icall.c reflection.h reflection.c: move the type resolve logic into
20896         mono_reflection_get_type () so it will be invoked when 
20897         Assembly::GetType () is called.
20898
20899         * reflection.c:
20900         (mono_reflection_get_type): renamed to get_type_internal.
20901         (mono_reflection_get_type): fixed type name generation so it works 
20902         for nested types too.
20903         (mono_reflection_get_type): call has_type_resolve () to avoid the 
20904         costly type name generation if there is no resolve event handler.
20905
20906 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
20907
20908         * class.c, image.c: load exported types from file references.
20909
20910 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
20911
20912         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
20913           used to cache the managed methods used to create proxies and make 
20914           remote invocation of methods.
20915         * class.h: Added in MonoVTable a flag to indicate that a class needs 
20916           to be remotely created.
20917         * object.c: Modified the method mono_class_vtable(). It now initializes 
20918           the remote flag of the vtable. Modified mono_object_new_specific(), 
20919           so now it checks the remote flag.
20920         * icall.c: Added a couple of internal methods, one for enabling instance 
20921           creation interception for a type, and one for creating objects bypassing
20922           the remote check.
20923
20924 2003-02-18  Martin Baulig  <martin@ximian.com>
20925
20926         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
20927         New interncall to get a method's metadata token.
20928
20929         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
20930         New interncall for the debugger.
20931
20932 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
20933
20934         * class.c (mono_class_setup_vtable): allocate supertype array
20935
20936 2003-02-18  Martin Baulig  <martin@ximian.com>
20937
20938         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
20939
20940 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20941
20942         * reflection.c:
20943         (assembly_name_to_aname): jump over unknown properties (i've found
20944         something like: 'type, assembly, version=xxx, custom=null, public...',
20945         so now will ignore custom=null and still get the rest of the values).
20946
20947 2003-02-17  Dick Porter  <dick@ximian.com>
20948
20949         * threads.c: Have Thread.Start() wait for a semaphore to signal
20950         that the thread has set up all its local data.  This fixes bug
20951         34323, where Abort() raced the new thread's TLS data.
20952
20953         Also removes the handle_store() call from start_wrapper, because
20954         threads are now always created suspended and there is no longer a
20955         race between the parent and child threads to store the info.
20956
20957 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
20958
20959         * image.c: explain the #- heap issue in a message, hopefully
20960         avoiding FAQs on mono-list.
20961
20962 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20963
20964         * icall.c:
20965         (GetEntryAssembly): if the domain has not invoked
20966         AppDomain.ExecuteAssembly yet, return the assembly of the default
20967         AppDomain.
20968
20969 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
20970
20971         * class.c (mono_ldtoken): make it work in dynamic assemblies.
20972
20973 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
20974
20975         * metadata.c, reflection.c: simple speedup to type hash
20976         and equals code.
20977
20978 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
20979
20980         * image.c, image.h, class.c, assembly.c: move module loading
20981         to MonoImage. When loading metadata, consider alignemnet from
20982         the start of metadata, not from the metadata address in memory.
20983
20984 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
20985
20986         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
20987         AssemblyBuilder objects. Factored out custom attribute creation into
20988         a separate function.
20989         (create_custom_attr): new function to create custom attributes.
20990
20991 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
20992
20993         * Makefile.am: Got tired of typing the full pathname to pedump.
20994         Until there is another option, am installing this.
20995
20996 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
20997
20998         * class.c (class_compute_field_layout): always set field->parent 
20999         (mono_ldtoken): use mono_defaults.fieldhandle_class;
21000
21001 2003-02-11  Dick Porter  <dick@ximian.com>
21002
21003         * threads-types.h:
21004         * monitor.c: Rewrote Monitor, making lock much faster and
21005         Pulse/Wait work as specified.  Also uses much fewer handles, and only
21006         creates them as needed.
21007
21008         * exception.c: Added SynchronizationLockException
21009
21010         * threads.c: Deleted old Monitor implementation.  The new one is
21011         in a new file.
21012
21013 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
21014
21015         * class.c: handled TypedReference type code. Set the correct size for
21016         class data. Setup interface_offsets for interface classes, too.
21017
21018 2003-02-09  Martin Baulig  <martin@ximian.com>
21019
21020         * debug-mono-symfile.h: Reflect latest symbol writer changes.
21021
21022 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
21023
21024         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
21025         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
21026         * object.c: fixed mono_object_get_virtual_method () for interfaces.
21027         * verify.c: check for code that runs after the end of the method.
21028
21029 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
21030
21031         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
21032         "System.Math::Round2".
21033         * sysmath.h: Added Floor, Round and Round2 definitions.
21034         * sysmath.c: Modified certain functions that were not 100% compliant
21035         with MS.NET (math precision) and added the implementation of Floor,
21036         Round and Round2.
21037
21038 2003-02-07  Martin Baulig  <martin@ximian.com>
21039
21040         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
21041
21042 2003-02-07  Martin Baulig  <martin@ximian.com>
21043
21044         * debug-mono-symfile.c: Reflected latest symwriter changes.
21045         (mono_debug_create_mono_symbol_file): Removed.
21046         (mono_debug_open_mono_symbol_file): Take an argument which
21047         specifies whether to create a dynamic symbol file.
21048
21049 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
21050
21051         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
21052
21053 2003-02-05  Martin Baulig  <martin@ximian.com>
21054
21055         * reflection.c (mono_image_build_metadata): Make this public,
21056         protect it against being called multiple times, don't create
21057         resources and don't build the compressed metadata here.
21058         (mono_image_create_pefile): Do this here.
21059
21060         * icall.c
21061         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
21062
21063 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21064
21065         * socket-io.c: fixed bug #36322.
21066
21067 2003-02-06  Piers Haken <piersh@friskit.com>
21068
21069         * appdomain.[ch]:
21070         * class.h:
21071         * debug-mono-symfile.c:
21072         * icall.c:
21073         * loader.c:
21074         * mono-config.c:
21075         * monosn.c:
21076         * reflection.c:
21077         * socket-io.c: warning cleanups
21078
21079 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
21080
21081         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
21082         function. works like remoting invoke, but does a check for the Proxy first.
21083
21084 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
21085
21086         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
21087
21088 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
21089
21090         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
21091         array of pointers.
21092         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
21093         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
21094
21095         * object.c (mono_store_remote_field_new): used by the new jit
21096         instead of mono_store_remote_field
21097         (mono_load_remote_field_new): used by the new jit
21098         instead of mono_load_remote_field
21099
21100 2003-02-05  Patrik Torstensson
21101
21102         * appdomain.c: changed unload to take the domain id instead
21103         of domain
21104         
21105         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
21106
21107
21108 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21109
21110         * appdomain.c: don't look for assemblies in ApplicationBase if
21111         PrivateBinPathProbe is set.
21112
21113 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21114
21115         * object.c: make the first argument in main_args contain the absolute
21116         path to the assembly. Fixes bug #37511.
21117
21118 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21119
21120         * icall.c: get correct UTC offset for countries not using daylight
21121         time saving. Fixes bug #30030.
21122
21123 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21124
21125         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
21126         and 1 are the family).
21127
21128 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
21129
21130         * icall.c (ves_icall_InternalExecute): removed wrong assertion
21131
21132         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
21133
21134 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
21135
21136         * reflection.c: added support for SignatureHelper tokens, which is
21137         needed by the Calli opcode.
21138
21139         * reflection.h: track changes to SignatureHelper class.
21140
21141         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
21142
21143 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21144
21145         * appdomain.c: fixed loading assemblies from PrivateBinPath.
21146
21147 2003-02-03  Patrik Torstensson
21148         * appdomain.[c|h], domain.c : 
21149          - Added support for getting a domain via domain id
21150          - Support for setting and getting domain from System.AppDomain 
21151            (used in cross appdomain channel)
21152          - Added support for get/set for a MonoAppContext on a thread 
21153            (Context class in System.Runtime.Remoting.Contexts),
21154          - Removed hack in Get/SetData and ExecuteAssembly.
21155         
21156         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
21157         the managed world to get control when a proxy is created.
21158
21159         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
21160         
21161 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
21162
21163         * icall.c
21164         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
21165         Populate the codebase field as well.
21166
21167 2003-02-02  Martin Baulig  <martin@ximian.com>
21168
21169         * debug-mono-symfile.c
21170         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
21171         (mono_debug_symfile_add_method): Allow interncalls.
21172
21173 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21174
21175         * icall.c: throw parse exception if strtod fails or the string is empty.
21176
21177 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
21178
21179         * marshal.c: handle object type separately from defined
21180         class types.
21181
21182 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
21183
21184         * marshal.c: handle NATIVE_LPSTR for strings when it's
21185         explicitly specified.
21186
21187 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
21188
21189         * reflection.c, reflection.h, icall.c: setup the reflection
21190         handle cache for ModuleBuilders and AssemblyBuilders.
21191
21192 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
21193
21194         * reflection.c (reflection_methodbuilder_to_mono_method): set
21195         pinvoke flag
21196
21197 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21198
21199         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
21200
21201 2003-01-29  Dick Porter  <dick@ximian.com>
21202
21203         * threads.c: No need for the fake_thread kludge now that Thread
21204         doesn't run a class constructor
21205         
21206 2003-01-29  Dick Porter  <dick@ximian.com>
21207
21208         * threads.c: Use g_direct_hash instead of the rather bogus
21209         g_int_hash
21210
21211 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
21212
21213         * marshal.c (mono_marshal_get_native_wrapper): add check for null
21214         (fix pinvoke12.exe)
21215         (mono_marshal_get_struct_to_ptr): generate valid IL code
21216         (mono_marshal_get_ptr_to_struct): generate valid IL code
21217         (*): correctly set sig->pinvoke, we need to memdup the signature
21218         to do that
21219
21220 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
21221
21222         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
21223         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
21224
21225 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
21226
21227         * profiler.c: provide more callers information.
21228
21229 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
21230
21231         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
21232
21233         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
21234
21235         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
21236
21237 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
21238
21239         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
21240         exception instead of going into an infinite loop on dates which it 
21241         can't yet handle.
21242
21243         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
21244         out-of-range exception if needed.
21245
21246         * class.c (mono_class_setup_vtable): allow a virtual method to provide
21247         an implementation for an interface method and to override an inherited
21248         method at the same time. 
21249         Imagine a scenario when a virtual method is used to override a
21250         virtual abstract method in a parent class, and this same method 
21251         provides an implementation for an method inherited from an interface. 
21252         In this case, the interface resolution code will set im->slot, which 
21253         means that the virtual method override pass will skip this method 
21254         which means a pointer to the abstract method inherited from the parent
21255         will remain in the vtable of this non-abstract class.
21256
21257         * class.c: (mono_class_setup_vtable): continue search for a real 
21258         method if only an abstract method is found.     
21259
21260 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
21261
21262         * reflection.c: add size to encoding for ByValStr and ByValArray
21263         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
21264
21265 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
21266
21267         * class.c (mono_class_setup_vtable): pass the override info as an
21268         argument.
21269
21270         * class.c (mono_class_setup_vtable): set the slot of overriding methods
21271         correctly.
21272         
21273         * reflection.c (ensure_runtime_vtable); add support for method 
21274         overrides.
21275         
21276 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
21277
21278         * reflection.c (resolution_scope_from_image): Hack to work to work with
21279         dynamic assemblies.
21280
21281         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
21282         added a 'force_ref' argument to force this function to allways return 
21283         a TypeRef. This is needed by mono_image_get_memberref_token ().
21284         
21285 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
21286
21287         * reflection.c (mono_image_get_type_info): interfaces really don't have
21288         a parent.
21289
21290         * reflection.c (mono_image_basic_init): fill out missing fields of
21291         image structure.
21292
21293         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
21294         dynamic assemblies. This is required so dynamic assemblies show up in
21295         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
21296         Type::GetType() etc. This is consistent with MS behaviour.
21297
21298         * image.c image.h reflection.c: add newly created classes to the name 
21299         cache so mono_class_get () will find them.      
21300
21301 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
21302
21303         First part of changes to get IKVM.NET running under mono.
21304         
21305         * appdomain.h, appdomain.c: added new function 
21306         mono_domain_try_type_resolve() which will emit TypeResolve events. 
21307         This function will call AppDomain::DoTypeResolve to do the actual work.
21308
21309         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
21310         moved existing code dealing with dynamic tokens to a new function 
21311         called mono_reflection_lookup_dynamic_token (). This function will 
21312         raise TypeResolve events when appropriate. Since reflection.c is not 
21313         part of libmetadata, a new hook function called 
21314         mono_lookup_dynamic_token() is added to class.c which will call this.
21315
21316         * assembly.h assembly.c: make the invoke_load_hook function public,
21317         so it can be called for dynamic assemblies.
21318
21319         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
21320
21321         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
21322         type isn't found.
21323
21324         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
21325         MonoGHashTable, since it contains pointers to objects which the GC 
21326         needs to track.
21327
21328         * assembly.c (search_loaded): remove unused variable.
21329         
21330 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
21331
21332         * object.c: fixed issue exposed by gcc-generated IL programs
21333         that use RVA data for pointers.
21334
21335 2003-01-25  Martin Baulig  <martin@ximian.com>
21336
21337         * threads.c (start_wrapper): Moved the initialization of
21338         `start_func' above the mono_new_thread_init() call to which we
21339         pass it as argument.
21340
21341 2003-01-24  Martin Baulig  <martin@ximian.com>
21342
21343         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
21344         the MonoThread pointer.
21345
21346 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
21347
21348         * icall.c: Rename `PowImpl' to Pow.
21349
21350 2003-01-23  Dick Porter  <dick@ximian.com>
21351
21352         * threads.c (start_wrapper): Create a Thread object if needed, so
21353         the Main() thread can do the class initialisation in a subthread
21354         that has been set up to allow managed code execution.
21355
21356         Pass the thread ID instead of the MonoThread pointer to the thread
21357         start and attach callbacks.  This change is required, because the
21358         jit thread start callback must be called _before_ the Thread
21359         object can be created.
21360         
21361         (mono_thread_init): Removed much object creation code that is no
21362         longer needed.  No managed code is called from here now.
21363
21364         * object.c (mono_runtime_exec_managed_code): Create a subthread
21365         for Main, and call back to the runtime to use it.
21366         Set the exit code when Main exits.
21367
21368         * gc.c: Make sure domain finalisation happens in a subthread.
21369         Re-enable threaded GC, fixing bug 31333 (again).
21370
21371         * environment.c: System.Environment internall calls (so far just
21372         ExitCode is here, the others are still in icall.c)
21373
21374         * appdomain.c (mono_runtime_cleanup): All threads running managed
21375         code should have finished before mono_runtime_cleanup() is
21376         reached, so no need to clean up threads.
21377
21378 2003-01-22  Martin Baulig  <martin@ximian.com>
21379
21380         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
21381         `gpointer func' arguments.      
21382         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
21383         but added `MonoThread *thread' argument.
21384         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
21385
21386         * threads.c (mono_new_thread_init): Added `gpointer func' argument
21387         and pass it to the mono_thread_start_cb callback.
21388         (mono_install_thread_callbacks): New public function to install a
21389         set of callbacks which are set by the debugger.
21390         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
21391
21392 2003-01-22  Martin Baulig  <martin@ximian.com>
21393
21394         * Makefile.am: Install debug-mono-symfile.h.
21395
21396 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
21397
21398         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
21399
21400 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
21401
21402         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
21403         * class.c (mono_ptr_class_get): correctly set access levels of pointers
21404         (mono_array_class_get): correctly set access levels of arrays
21405
21406 2003-01-20      Patrik Torstensson
21407         * image.h (MonoAssemblyName): changed major, minor, build, revision
21408         from signed to unsigned.
21409
21410 2003-01-20  sean kasun <skasun@azstarnet.com>
21411
21412         * reflection.c (load_cattr_value): Now this handles
21413         MONO_TYPE_SZARRAY.  Fixes bug #35629
21414
21415 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
21416
21417         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
21418         integer value
21419
21420 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21421
21422         * decimal.c: fixed bug #26056.
21423
21424 2003-01-17  Martin Baulig  <martin@ximian.com>
21425
21426         * gc.c: Raise an ExecutionEngineException instead of using g_error().
21427
21428 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21429
21430         * exception.[ch]:
21431         (mono_get_exception_type_initialization): new function.
21432
21433         * object.c: throw a TypeInitializationException when an exception is
21434         thrown invoking the class constructor.
21435
21436 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21437
21438         * reflection.c: fixed attribute reading.
21439
21440 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21441
21442         * icall.c:
21443         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
21444         provided, look for the type in the calling assembly and then in
21445         mscorlib; if the assembly name is provided, only try that one.
21446
21447 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
21448
21449         * object.c: register the vtable before there is a chance it's
21450         queried again recursively.
21451
21452 2003-01-13  Duncan Mak  <duncan@ximian.com>
21453
21454         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
21455         gc-internal.h. 
21456         
21457 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
21458
21459         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
21460
21461 2003-01-11  Martin Baulig  <martin@ximian.com>
21462
21463         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
21464         this to 20 for the release.
21465
21466 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
21467
21468         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
21469
21470         * loader.c (mono_method_get_marshal_info): bug fix
21471
21472         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
21473         structures with explicit layout
21474
21475 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
21476
21477         * profiler.c: made the output more readable (and sorted). 
21478         Added caller information for the allocation profiler.
21479
21480 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
21481
21482         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
21483
21484 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21485
21486         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
21487         to get value types.
21488         
21489 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
21490
21491         * object.c, profiler.h, profiler.c, profiler-private.h:
21492         Added object allocation profiler.
21493
21494 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
21495
21496         * reflection.h, reflection.c: handle global methods.
21497         Compress blob entries.
21498
21499 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
21500
21501         * marshal.c: fix compilation.
21502
21503 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
21504
21505         * loader.c (mono_method_get_marshal_info): impl.
21506
21507         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
21508
21509 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21510
21511         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
21512         for reference types.
21513
21514 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
21515
21516         * loader.c: fixed off by one error in loaded parameter names.
21517
21518 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
21519
21520         * marshal.c (mono_marshal_get_icall_wrapper): like
21521         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
21522         instead of a MonoMethod.
21523
21524 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21525
21526         * decimal.c: fixed bug #36537.
21527
21528 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
21529
21530         * marshal.c: throw a missing method exception if a
21531         P/Invoke method is not found.
21532
21533 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
21534
21535         * icall.c: allow a null this for constructors.
21536
21537 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
21538
21539         * icall.c: raise the proper exceptions if the arguments to the
21540         internal Invoke are incorrect.
21541
21542 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
21543
21544         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
21545
21546 2003-01-03  Martin Baulig  <martin@ximian.com>
21547
21548         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
21549
21550 2002-12-31  Martin Baulig  <martin@ximian.com>
21551
21552         * debug-mono-symfile.c: Completely rewrote the type section.
21553         Instead of using individual malloc()ed fields, we use one big
21554         continuous memory area and offsets into this area.
21555         See the comments in the source code for details.
21556
21557 2002-12-30  Martin Baulig  <martin@ximian.com>
21558
21559         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
21560
21561 2002-12-30  Martin Baulig  <martin@ximian.com>
21562
21563         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
21564         line number table in this data blob instead of using an external
21565         pointer.
21566
21567 2002-12-28  Martin Baulig  <martin@ximian.com>
21568
21569         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
21570
21571 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
21572
21573         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
21574         as a boxed return type.
21575
21576 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
21577
21578         * appdomain.c
21579         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
21580         g_build_filename to properly get separators on the filename created.
21581
21582         * object.h: Small change, introduce MonoMarshalByRefObject to
21583         track the layout of that structure in the C# universe as we make
21584         changes there.
21585
21586 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
21587
21588         * object.c: removed assert to allow static fields on interfaces.
21589         * loader.c: a TypeSpec may be used for any type, not just arrays.
21590
21591 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21592
21593         * class.c, class.h: added mono_class_array_element_size ().
21594         Ignore static methods in interfaces.
21595
21596 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21597
21598         * threads.c: fixed the build under cygwin.
21599
21600 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
21601
21602         * reflection.c: handle nullref constants. Allocate keys for
21603         reflection handles with the GC.
21604
21605 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
21606
21607         * threads.c, threads.h: added mono_thread_get_abort_signal()
21608         to get a suitable signal for thread abort.
21609
21610 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
21611
21612         * metadata.c: fix handling of ExportedType table.
21613
21614 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21615
21616         * icall.c: added WriteWindowsDebugString internal call.
21617
21618 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21619
21620         * reflection.h: added fields to match C# implementation.
21621
21622 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21623
21624         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
21625
21626 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
21627
21628         * gc.h, gc-internal.h: Rename header for GC internal calls to
21629         gc-internal.h from gc.h as to not clash with Boehm GC having its
21630         header installed as <gc.h> in outside include paths.
21631         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
21632         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
21633
21634 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21635
21636         * icall.c: assign minor, build and revision in FillName.
21637
21638 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
21639
21640         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
21641         Added support for running code generated by Reflection.Emit.
21642
21643 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21644
21645         * appdomain.c: check for NULL argument in LoadFrom.
21646
21647 2002-12-10  Dick Porter  <dick@ximian.com>
21648
21649         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
21650
21651 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21652
21653         * appdomain.c: fix buglet when building exe file name.  Handle full
21654         assembly name (needed after latest changes to AssemblyName).
21655         * image.c:
21656         (mono_image_close): free some hashtables.
21657
21658 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
21659
21660         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
21661         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
21662         on some systems (redhat 7.3) 
21663
21664 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
21665
21666         * threads.c: delete the critical section of a sync block,
21667         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
21668
21669 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
21670
21671         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
21672
21673 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21674
21675         * appdomain.[ch]: handle the assembly preload event to try loading the
21676         assemblies using the paths we have in the current domain.
21677
21678         * assembly.[ch]: created an assembly preload hook that is called to try
21679         loading the assembly by other means that the ones provided here.
21680
21681         * domain.c: initialize the domain search path.
21682
21683         From now on, assemblies (TODO: except corlib and System) are loaded
21684         according to these rules when using mono_assembly_load ():
21685
21686                 1. It tries to load the assembly from the ApplicationBase
21687                 of the current domain appending .dll and .exe (TODO: have to
21688                 try loading from name/name.dll and name/name.exe).
21689
21690                 2. It tries the search path specified in PrivateBinPath for the
21691                 current domain (if any).
21692
21693                 3. Previous behavior.
21694
21695 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
21696
21697         * icall.c: implemented GetInterfaceMap() related icall.
21698         * domain.c, loader.h: load MethodInfo in mono_defaults.
21699
21700 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21701
21702         * gc.c: disable the finalizer thread for now, untill all the issues
21703         with it are resolved.
21704
21705 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21706
21707         * string-icalls.c: handle embedded nulls in string ctor when the
21708         length is specified.
21709
21710 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21711
21712         * class.c: look for explicit interface implementation in parent
21713         classes, too.
21714
21715 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
21716
21717         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
21718
21719 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
21720
21721         * gc.c: protect handles with a critical section.
21722
21723 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21724
21725         * icall.c:
21726         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
21727         parameters. If no assembly specified, try getting the type from all
21728         the assemblies in the current domain, else, load the assembly and get
21729         the type from it.
21730
21731 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21732
21733         * marshal.c: applied patch from Aleksey Demakov that fixes
21734         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
21735
21736 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21737
21738         * icall.c: fixed get_location.
21739
21740 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
21741
21742         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
21743         declarations to make it work with older gcc. 
21744
21745         * loader.c (mono_get_method): set signature->pinvoke for native calls
21746
21747 2002-11-20  Dick Porter  <dick@ximian.com>
21748
21749         * threads.c (mono_thread_init): Set the main thread's handle
21750
21751 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
21752
21753         * gc.c: allow compilation without GC support. Changed to match the
21754         mono coding style.
21755
21756 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21757
21758         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
21759
21760 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
21761
21762         * reflection.c: set a public key token on the core assemblies.
21763
21764 2002-11-18  Dick Porter  <dick@ximian.com>
21765
21766         * threads.c: Split out some thread initialisation so that other
21767         files can set the start callback function.
21768
21769         * gc.c: Run finalisers in a separate thread, to avoid stack
21770         overflow.  Fixes bug 31333.
21771
21772         * appdomain.c: Set up GC finalisation thread.
21773
21774         * reflection.c: 
21775         * object.c: 
21776         * domain.c: Use gc.h macros for GC_malloc
21777         
21778 2002-11-15  Dick Porter  <dick@ximian.com>
21779
21780         * threadpool.c: 
21781         * threads.c:
21782         * appdomain.c: Removed mono_runtime_init_with_attach(),
21783         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
21784         merging the extra parameter with the existing function.  Removed
21785         unneeded code in mono_thread_attach().
21786
21787 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
21788
21789         * image.c (mono_image_loaded_by_guid): a method to get loaded
21790         images by guid. 
21791         (load_metadata_ptrs): we store the guid as string.
21792
21793 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
21794
21795         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
21796
21797         * metadata.c (mono_guid_to_string): imported method form Zoltan
21798         Varga (slightly modified)
21799
21800         * assembly.c (mono_assembly_open): load precompiled code
21801
21802         * loader.h (MonoMethod): we store the method token for use in the
21803         aot compiler. 
21804
21805 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21806
21807         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
21808         the hook function called when an assembly is loaded.
21809         
21810         * domain.c: Modified file.
21811         (mono_domain_assembly_load): removed hash table insertion of assemblies.
21812
21813         Fixes bug #33196.
21814
21815 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
21816
21817         * reflection.c: Map PEFileKind to the value expected by the WinNT
21818         image loader. 
21819
21820 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21821
21822         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
21823         Read until the buffer is filled completely.
21824
21825 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21826
21827         * icall.c: implemented MonoType.InternalGetEvent ().
21828
21829 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21830
21831         * appdomain.c: implemented InitAppDomainSetup. Delayed
21832         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
21833         the entry_assembly.
21834
21835         * assembly.c: base_dir is now an absolute path ending with
21836         G_DIR_SEPARATOR.
21837
21838         * icall.c: modified get_location according to the above changes.
21839
21840         * object.c: init AppDomain.SetupInformation for the default domain after
21841         we have the entry assembly.
21842
21843         * domain.c: when unloading a domain, setup = NULL.
21844
21845 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
21846
21847         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
21848
21849 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
21850
21851         * object.h, object.c: introduced mono_object_get_virtual_method ()
21852         to lookup the method invoked on an object when a callvirt is done on
21853         a method.
21854         * icall.c: make MethodInfo::Invoke() always do a virtual call.
21855
21856 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21857
21858         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
21859         current domain when loaded an assembly and failed to load it.
21860
21861         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
21862
21863 2002-10-31  Dick Porter  <dick@ximian.com>
21864
21865         * icall.c: 
21866         * file-io.h: 
21867         * file-io.c: Return the error status in a parameter, as the
21868         GetLastError() value has long since been blown away if we try and
21869         look it up in a subsequent internal call invocation.  Delete the
21870         GetLastError() internal call, because it's useless.
21871
21872 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
21873
21874         * class.[ch]: added cast_class to fix bug 29517
21875
21876 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
21877
21878         * marshal.c: create valid IL code in the filter clause:
21879         the new JIT is less forgiving:-)
21880
21881 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21882
21883         * icall.c: removed get_property internal call.
21884
21885 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
21886
21887         * appdomain.h domain.c: Added an ID to appdomains.
21888         
21889         * threads.c threads.h icall.c: Implement icall
21890         Thread:GetDomainID(), and remove unused icall 
21891         CurrentThreadDomain_internal.
21892
21893 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21894
21895         * icall.c: Don't recurse through the base types in GetConstructor.
21896         Fixes bug #32063. 
21897
21898 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
21899
21900         * mempool.h, mempool.c: added mono_mempool_empty() and
21901         mono_mempool_stats().
21902
21903 2002-10-23  Dick Porter  <dick@ximian.com>
21904
21905         * file-io.c: 
21906         * file-io.h: 
21907         * icall.c: Added MonoIO.GetFileType internal call
21908
21909 2002-10-17  Dick Porter  <dick@ximian.com>
21910
21911         * appdomain.c (mono_runtime_cleanup): Don't signal the async
21912         delegate semaphore before waiting for all threads to finish,
21913         because new threads can also call async delegates.  Fixes bug
21914         32004.
21915
21916         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
21917         of 3 seconds, in case another async job is queued.  (This part is
21918         needed because the bug fix reintroduced the 3s exit lag.)  This
21919         makes the mono_runtime_shutdown flag superfluous.
21920
21921 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
21922
21923         * reflection.c: include ehader size in method section headers.
21924         Really check for suplicated modules entries.
21925
21926 2002-10-17  Martin Baulig  <martin@gnome.org>
21927
21928         * debug-mono-symfile.c: Added back support for locals.
21929
21930 2002-10-14  Martin Baulig  <martin@gnome.org>
21931
21932         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
21933         MONO_TYPE_VOID.
21934
21935 2002-10-14  Martin Baulig  <martin@gnome.org>
21936
21937         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
21938         mono_class_get() instead of looking in the class cache. 
21939
21940 2002-10-13  Martin Baulig  <martin@gnome.org>
21941
21942         * debug-mono-symfile.c: Set version number to 28, include the
21943         signature in method names.
21944
21945 2002-10-13  Martin Baulig  <martin@gnome.org>
21946
21947         * debug-mono-symfile.h: Set version number to 27.
21948
21949 2002-10-11  Martin Baulig  <martin@gnome.org>
21950
21951         * gc.c: Don't register/unregister NULL pointers as disappearing links.
21952
21953 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
21954
21955         * metadata.c, metadata.h: added helper function to allocate signatures.
21956
21957 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21958
21959         * icall.c: added internal call to get the location of machine.config.
21960
21961 2002-10-08  Martin Baulig  <martin@gnome.org>
21962
21963         * debug-mono-symfile.c: Ignore classes with a pending init for the
21964         moment.
21965
21966 2002-10-03  Dick Porter  <dick@ximian.com>
21967
21968         * threads.c: Freebsd pthread_t is a pointer
21969
21970 2002-10-03  Dick Porter  <dick@ximian.com>
21971
21972         * socket-io.c: Implemented GetHostName_internal
21973
21974 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21975
21976         * mono-config.c:
21977         (mono_config_parse_file): don't leak the text.
21978
21979 2002-10-02  Martin Baulig  <martin@gnome.org>
21980
21981         * debug-mono-symfile.c: Added support for methods.
21982
21983 2002-10-01  Martin Baulig  <martin@gnome.org>
21984
21985         * debug-mono-symfile.c: Don't emit methods and line numbers for
21986         the dynamic symbol file, just write the type table.  We can easily
21987         have an external helper program which creates a symbol file for an
21988         IL file.        
21989
21990 2002-10-01  Dick Porter  <dick@ximian.com>
21991
21992         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
21993         Only add the handle to the cleanup array when we're about to
21994         launch the thread.  Bug 31425 deadlocked when the test was run on
21995         mono under w32.
21996
21997 2002-10-01  Martin Baulig  <martin@gnome.org>
21998
21999         * debug-mono-symfile.c: Added support for properties.
22000
22001 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
22002
22003         * reflection.c: unaligned store fix from Mark Crichton
22004         <crichton@gimp.org>.
22005
22006 2002-09-27  Martin Baulig  <martin@gnome.org>
22007
22008         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
22009         New interncall.
22010
22011 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
22012
22013         * assembly.h, assembly.c: use a sane API to hook into the assembly
22014         loading process instead of a useless special-purpouse hack
22015         (ngen needs a hook, too, for example).
22016
22017 2002-09-27  Dick Porter  <dick@ximian.com>
22018
22019         * threads.c (mono_thread_init): Call GetCurrentProcess() so
22020         io-layer can set up some process handle info.  Not needed on w32,
22021         but doesn't hurt either.
22022
22023         * process.c: Pass the program name in the second parameter to
22024         CreateProcess, so the path is searched.  Include the working
22025         directory. Implemented process name, process enumeration, and some
22026         process detail internal calls.
22027         
22028         * icall.c: Added internal calls for process lookup, and some
22029         process details
22030
22031 2002-09-26  Martin Baulig  <martin@gnome.org>
22032
22033         * assembly.c (mono_install_open_assembly_hook): New global
22034         function to install a function to be invoked each time a new
22035         assembly is loaded.
22036         (mono_assembly_open): Run this callback function if set.
22037
22038         * debug-mono-symfile.c: Put back line numbers for the dynamic
22039         symbol file and also record the .il file as source file.  This
22040         allows us to install the temporary symbol file as `file.dbg' just
22041         like a compiler-generated one.
22042
22043 2002-09-26  Nick Zigarovich <nick@chemlab.org>
22044
22045         * Corrected typo in gc.c (BOHEM vs BOEHM).
22046
22047 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22048
22049         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
22050         GetProperties. Also avoid calling g_slist_length in GetProperties and
22051         GetMethods.
22052
22053 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
22054
22055         * reflection.c: avoid unaligned stores (bug spotted by
22056         Mark Crichton  <crichton@gimp.org>).
22057
22058 2002-09-25  Martin Baulig  <martin@gnome.org>
22059
22060         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
22061         instead of guint64 for addresses and added prologue/epilogue info.
22062
22063 2002-09-25  Martin Baulig  <martin@gnome.org>
22064
22065         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
22066         store line number info.  For the dynamic symbol file, we only need
22067         to provide the JIT generated dynamic line number info for the dynamic
22068         symbol file.
22069
22070 2002-09-25  Martin Baulig  <martin@gnome.org>
22071
22072         * debug-mono-symfile.h: Incremented version number.
22073
22074 2002-09-24  Martin Baulig  <martin@gnome.org>
22075
22076         * class.c (mono_debugger_class_init_func): New global function
22077         pointer variable.
22078         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
22079         call it.
22080
22081         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
22082         function.  This is called via the mono_debugger_class_init_func
22083         hook to add all types to the dynamic type table.
22084         (ves_icall_MonoDebugger_GetType): New interncall to get a class
22085         from its metadata token.
22086
22087         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
22088         New interncall for the debugger.
22089
22090 2002-09-24  Nick Drochak <ndrochak@gol.com>
22091
22092         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
22093         before using it in case it is null.
22094         
22095 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22096
22097         * metadata.c: allow custom modifiers in local var signatures
22098         (bug spotted by Zoltan Varga).
22099
22100 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
22101
22102         * class.c: deal with the <Module> class that may have a NULL vtable.
22103         Eliminate warnings.
22104
22105 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
22106
22107         * image.c, image.h: more strong name helpers.
22108         * monosn.c: more work: convert pem keys to cryptoapi format.
22109
22110 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
22111
22112         * string-icalls.c: speedup IndexOf.
22113
22114 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
22115
22116         * icall.c: updates from Zoltan.2.Varga@nokia.com.
22117
22118 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
22119
22120         * icall.c: cleanup: use mono_object_domain ().
22121
22122 2002-09-23  Martin Baulig  <martin@gnome.org>
22123
22124         * debug-mono-symfile.c: Improved type support.
22125
22126 2002-09-22  Martin Baulig  <martin@gnome.org>
22127
22128         * debug-mono-symfile.c: Added support for reference types and strings.
22129
22130 2002-09-22  Martin Baulig  <martin@gnome.org>
22131
22132         * debug-mono-symfile.c: Started to work on the type table.
22133
22134 2002-09-21  Martin Baulig  <martin@gnome.org>
22135
22136         * debug-mono-symfile.c: Largely reworked the symbol table format.
22137         The symbol table is now incrementally updated each time a new
22138         method is added.  We're now also using our own magic and version
22139         so that you don't need to recompile all your classes if the
22140         dynamic table changes.
22141         (mono_debug_update_mono_symbol_file): Removed.
22142         (mono_debug_symfile_add_method): New function to add a method.
22143
22144 2002-09-21  Martin Baulig  <martin@gnome.org>
22145
22146         * icall.c
22147         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
22148         New interncall.
22149
22150         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
22151         New interncall to get a method from its metadata token.
22152
22153 2002-09-21  Martin Baulig  <martin@gnome.org>
22154
22155         * debug-mono-symfile.c: Create type table.
22156
22157 2002-09-20  Martin Baulig  <martin@gnome.org>
22158
22159         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
22160
22161 2002-09-20  Martin Baulig  <martin@gnome.org>
22162
22163         * debug-mono-symfile.c: Provide information about params and locals.
22164
22165 2002-09-20  Martin Baulig  <martin@gnome.org>
22166
22167         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
22168         New interncall.
22169
22170         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
22171         interncall to get a method from its metadata token.
22172
22173 2002-09-20  Martin Baulig  <martin@gnome.org>
22174
22175         * debug-mono-symfile.c: Added a few checks for method->header
22176         being non-NULL.  This should never happen, but for the moment
22177         let's use a g_warning() rather than a g_assert().
22178
22179 2002-09-19  Mark Crichton  <crichton@gimp.org>
22180
22181         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
22182         even if support for it isn't present.  Added an #ifdef to fix this.
22183
22184         * socket-io.c: Added checks back for Solaris support.
22185
22186 2002-09-19  Martin Baulig  <martin@gnome.org>
22187
22188         * debug-mono-symfile.c (read_string, write_string): Reflect latest
22189         changes in the symbol file format.
22190
22191 2002-09-18  Martin Baulig  <martin@gnome.org>
22192
22193         * debug-mono-symfile.c: Set version number to 21.
22194
22195 2002-09-18  Dick Porter  <dick@ximian.com>
22196
22197         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
22198         on netbsd.  Fixes bug 30051.
22199
22200 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22201
22202         * reflection.c:
22203         (set_version_from_string): little fix.
22204
22205 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
22206
22207         * monosn.c, Makefile.am: added strong name utility.
22208         * reflection.h, reflection.c: implemented delayed signing,
22209         locale, version and hash id assembly attributes.
22210
22211 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
22212
22213         * loader.c, metadata.c: load param attributes in signatures.
22214
22215 2002-09-16  Martin Baulig  <martin@gnome.org>
22216
22217         * debug-mono-symfile.c: Added string table with all method names.
22218
22219 2002-09-14  Martin Baulig  <martin@gnome.org>
22220
22221         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
22222         fast method lookup.
22223
22224 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
22225
22226         * reflection.c: record the public key token of referenced assemblies.
22227
22228 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
22229
22230         * image.c, image.h: added functions to get the strong name and the
22231         public key of an assembly.
22232         * pedump.c: use them.
22233
22234 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
22235
22236         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
22237
22238 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
22239
22240         * marshal.c (mono_marshal_get_managed_wrapper): Added
22241         MONO_TYPE_BOOLEAN 
22242
22243 2002-09-11  Martin Baulig  <martin@gnome.org>
22244
22245         * gc.c: Call GC_unregister_disappearing_link() on all links when
22246         finalizing them, this is necessary to aviod a crash in boehm's
22247         finalize handler.
22248
22249 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
22250
22251         * gc.c: handle GetTarget for finalized objects spotted and fixed by
22252         nick@chemlab.org.
22253
22254 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
22255
22256         * icall.c: implemented MonoType::Module.
22257         * reflection.c, reflection.h: mono_module_get_object () from
22258         Tomi Pakarinen <tomi.pakarinen@welho.com>.
22259
22260 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
22261
22262         * icall.c: ignore overridden methods in GetMethods ().
22263         Fix for FieldInfo::SetValue().
22264         * object.c: handle float/double in runtime invoke.
22265
22266 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
22267
22268         * object.c: allow a constructor to be called again on an object.
22269
22270 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
22271
22272         * class.h, class.c: move field layout code to it's own function and
22273         export it. Get an interface id earlier. Move fields in MonoClass
22274         so they are more cache friendly and align the bitfields.
22275         * loader.c: temporary handle get_param_names() for a runtime method.
22276         * reflection.c, reflection.h: more code to handle runtime creation of
22277         types.
22278
22279 2002-09-09  Martin Baulig  <martin@gnome.org>
22280
22281         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
22282         signature with the pinvoke field being set for the actual call.
22283
22284 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22285
22286         * icall.c: removed some unused icalls. Start of map of glib charsets
22287         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
22288
22289 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
22290
22291         * debug-helpers.c: break infinite loop (found and fixed by
22292         Holger Arnold <harnold@gmx.de>).
22293
22294 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
22295
22296         * icall.c: target may be null in create_delegate.
22297
22298 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
22299
22300         * marshal.c: handle a boolean return type.
22301
22302 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
22303
22304         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
22305
22306 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
22307
22308         * gc.c: fix weakreferences.
22309
22310 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
22311
22312         * icall.c: added icall to get default codepage.
22313
22314 2002-09-03  Dick Porter  <dick@ximian.com>
22315
22316         * threads.h: 
22317         * threads.c: Use MonoThread instead of MonoObject where
22318         apropriate.
22319
22320         Store running thread objects in a hash table, so that we have all
22321         the info to hand when waiting for them to finish
22322         (means we don't need OpenThread() any more, so mingw builds should
22323         be fully functional again.)
22324
22325         * verify.c:
22326         * object.h: Added thread ID to MonoThread
22327
22328 2002-09-03  Martin Baulig  <martin@gnome.org>
22329
22330         * icall.c (System.Reflection.Assembly::get_location): New interncall.
22331
22332 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22333
22334         * icall.c: fixed leak in get_temp_path. Thanks lupus.
22335
22336 2002-09-03  Martin Baulig  <martin@gnome.org>
22337
22338         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
22339         argument to store the end address of the disassembled instruction.
22340
22341         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
22342         here from debug-symfile.h.
22343         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
22344         JIT into this struct.
22345         (MonoSymbolFile): Added `char *image_file' field.
22346         (MonoDebugGetMethodFunc): Removed.
22347         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
22348         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
22349         (mono_debug_find_method): New method.
22350
22351         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
22352         create a full symbol file.
22353         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
22354         and static symbol files.
22355         (mono_debug_find_method): The symbol file keeps an internal method hash,
22356         call this to get a MonoDebugMethodInfo from a MonoMethod.
22357
22358         * debug-symfile.[ch]: Removed.
22359
22360 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
22361
22362         * image.c (do_mono_image_open): Remove linker version check.
22363
22364 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
22365
22366         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
22367         wrappers for instance methods.
22368         
22369 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22370
22371         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
22372
22373 2002-08-28  Dick Porter  <dick@ximian.com>
22374
22375         * Makefile.am: Export HOST_CC for w32 builds
22376
22377 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
22378
22379         * file-io.c process.c: MonoString are null terminated, no
22380         need for mono_string_to_utf16() anymore.
22381
22382 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
22383
22384         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
22385
22386 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
22387
22388         * icall.c, reflection.h: speedup System.MonoType.
22389
22390 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
22391
22392         * reflection.c: allow null as the value of a string argument in
22393         custom attributes constructors.
22394
22395 2002-08-27  Martin Baulig  <martin@gnome.org>
22396
22397         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
22398         `trampoline_address' field.
22399
22400 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
22401
22402         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
22403         check (fixes bug #29486) 
22404
22405 2002-08-27  Martin Baulig  <martin@gnome.org>
22406
22407         * debug-mono-symfile.c: Changed the file format in a way that allows us
22408         open it read-only and to use a specially malloced area for all the
22409         dynamic data.  We can now also generate a symbol file on-the-fly if we're
22410         debugging IL code and there is no MCS generated symbol file for it.
22411
22412 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
22413
22414         * object.c: added a define for a good string and array
22415         creation speedup (not enabled by default because we need to deal with
22416         the synch stuff).
22417
22418 2002-08-26  Martin Baulig  <martin@gnome.org>
22419
22420         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
22421         function to create a dynamic symbol file.  This is used by the
22422         debugger to create a symbol file for IL code on-the-fly.
22423
22424 2002-08-26  Martin Baulig  <martin@gnome.org>
22425
22426         * loader.c (mono_lookup_pinvoke_call): Include the error message
22427         from g_module_error() in the error message.
22428
22429 2002-08-24  Martin Baulig  <martin@gnome.org>
22430
22431         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
22432         function to update the symbol file.  The symbol file is mmap()ed
22433         writable, but private.  This allows us to install the symbol file
22434         together with the assembly.
22435
22436 2002-08-24  Martin Baulig  <martin@gnome.org>
22437
22438         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
22439         but they can read the new symbol file format which mcs is now creating.
22440
22441         * debug-symfile.c (mono_debug_find_source_location): Moved to
22442         debug-mono-symfile.c; this is now operating on the new symbol file.
22443
22444 2002-08-23  Martin Baulig  <martin@gnome.org>
22445
22446         * debug-helpers.c (mono_method_desc_from_method): New function to get
22447         a MonoMethodDesc from a MonoMethod.
22448
22449 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
22450
22451         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
22452         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
22453
22454 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
22455
22456         * string-icalls.[ch]: make helper methods static.
22457
22458 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22459
22460         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
22461         types to it and to SetValueInternal.
22462
22463         * object.c: Moved handle_enum label to its proper place. This was the
22464         f... bug! ;-)
22465
22466         This time i compiled mcs and gtk-sharp and they both work.
22467
22468 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22469
22470         * icall.c: reverted partially my previous patch until 
22471         object.c:set_value handles enums correcly.
22472
22473 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22474
22475         * icall.c:
22476         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
22477         (ves_icall_System_Environment_get_MachineName): removed warning when
22478         compiling under cygwin.
22479
22480 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
22481
22482         * object.c: fixed field_get_value() for reference types.
22483
22484 2002-08-22  Dick Porter  <dick@ximian.com>
22485
22486         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
22487         Don't free a buffer while it's still needed.  Patch from Jonathan
22488         Liger <Jonathan.liger@wanadoo.fr>
22489
22490 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
22491
22492         * icall.c (ves_icall_System_Environment_get_Platform): Add new
22493         internal call.
22494
22495 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
22496
22497         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
22498         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
22499
22500         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
22501         we call unmanaged code which throws exceptions.
22502
22503 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
22504
22505         * appdomain.h: added per-domain entry_assembly.
22506         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
22507         arguments.
22508         * icall.c: Assembly::GetEntryAssembly icall.
22509         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
22510         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
22511
22512 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
22513
22514         * appdomain.h, gc.c: added mono_domain_finalize ().
22515
22516 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22517
22518         * object.c:
22519         (mono_print_unhandled_exception): changed g_warning by g_printerr
22520         because g_log has a 1024 characters limit (yeah, i got a big stack
22521         trace). Don't print exception name, that should be in ToString 
22522         returned string.
22523
22524 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22525
22526         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
22527         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
22528
22529 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22530
22531         * object.c:
22532         (mono_print_unhandled_exception): after previous commit, i realized
22533         that MS calls ToString on the exception. I changed this function to
22534         do that. This way we get stack_trace for free.
22535
22536 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22537
22538         * object.c:
22539         (mono_print_unhandled_exception): invoke Message property instead of
22540         getting 'message' field from Exception. Don't allocate memory for
22541         'trace' and 'message' if not needed.
22542
22543 2002-08-18  Dick Porter  <dick@ximian.com>
22544
22545         * unicode.c: Fix asserts to match Encoder.cs checks
22546
22547 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22548
22549         * marshal.c: fix unaligned store issue and a few wrong
22550         opcode argument types.
22551
22552 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22553
22554         * icall.c: added GetUninitializedObjectInternal internal call.
22555
22556 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
22557
22558         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
22559         to the right domain.
22560
22561 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
22562
22563         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
22564
22565         * class.c (class_compute_field_layout): set blittable to false for Strings
22566
22567         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
22568
22569 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
22570
22571         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
22572         first chunk of code to create types at runtime. Code to
22573         handle ReflectedType/DeclaringType. Make reflection handles
22574         domain specific.
22575
22576 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
22577
22578         * class.c: set correct name in arrays.
22579
22580 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
22581
22582         * appdomain.c (mono_domain_transfer_object): make it work with
22583         valuetypes. bug fixes.
22584
22585 2002-08-12  Dick Porter  <dick@ximian.com>
22586
22587         * object.h: Rename some parameters to avoid c++ keywords (Patch
22588         from Joseph Wenninger <kde@jowenn.at>)
22589
22590 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
22591
22592         * icall.c: added icall to implement Assembly.GetFile*.
22593
22594 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
22595
22596         * reflection.h, reflection.c: code to embed managed resources.
22597
22598 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
22599
22600         * class.c: move all the type size stuff into
22601         class_compute_field_layout().
22602
22603 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
22604
22605         * class.c: ensure enums have always the correct instance size.
22606         * unicode.c: remove wrong assert.
22607
22608 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
22609
22610         * assembly.c: fix mem corruption issue.
22611         * image.h, image.c: added mono_image_get_resource () to access
22612         managed resources.
22613         * icall.c: implemented Assembly.EntryPoint property and some
22614         Managed Resources related internalcalls.
22615
22616
22617 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
22618
22619         * image.c, image.h: impemented mono_image_get_entry_point ().
22620         * appdomain.c: use mono_image_get_entry_point.
22621
22622 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
22623
22624         * reflection.c: support the object type argument when loading
22625         custom attributes.
22626
22627 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
22628
22629         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
22630         String as return type.
22631
22632 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
22633
22634         * reflection.c: fix encoding of named args for custom attrs to match
22635         the ms implementation. Read them back when instantiating custom
22636         attributes.
22637
22638 2002-08-02  Radek Doulik  <rodo@ximian.com>
22639
22640         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
22641         by Dietmar as quick fix
22642         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
22643         16 as stack size, used on more places as quick fix before Dietmar
22644         will fix it properly
22645
22646 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
22647
22648         * object.h, object.c: added accessors for fields and properties.
22649
22650 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
22651
22652         * class.c, class.h: made mono_class_get_field_from_name ()
22653         loop on parent types.
22654         Added mono_class_get_property_from_name ().
22655
22656 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
22657
22658         * class.c, class.h: move the code to setup the type vtable in its own
22659         function so that it can be reused also for types created at runtime.
22660         Eliminate the "class" identifier from the header file.
22661         * reflection.c: setup the vtable for enums so that we can create
22662         objects for use in SetConstant ().
22663
22664 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
22665
22666         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
22667         instead of the delegate itself as this pointer (bug #28383)
22668
22669 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
22670
22671         * marshal.c (mono_marshal_get_managed_wrapper): added return type
22672         conversions.
22673
22674 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22675
22676         * loader.c: don't set the pinvoke bit on icalls.
22677
22678 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
22679
22680         * debug-helpers.c (mono_method_full_name): only print a number to
22681         indicate wrapper type (so that the output is more readable in traces).
22682
22683 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
22684
22685         * class.c (mono_class_init): include method override patch from Paolo
22686
22687 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
22688
22689         * icall.c: fixed GetTypeCode().
22690
22691 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
22692
22693         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
22694         use real delegate invoke function to make it work with multicast
22695         delegates (fix bug# 28291).
22696
22697 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
22698
22699         * object.c: load constant strings.
22700
22701 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
22702
22703         * reflection.c: no magic numbers.
22704         * tabledefs.h: security action enum.
22705
22706 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
22707
22708         * assembly.c: fix possible memory corruption.
22709
22710 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
22711
22712         * reflection.h, reflection.c: added support for linking resources.
22713         * verify.c: check we have an updated corlib.
22714
22715 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
22716
22717         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
22718         string arrays.
22719         (mono_marshal_string_array): null terminate unmanaged string arrays.
22720         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
22721
22722 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
22723
22724         * icall.c: Type.GetType () can now return also types from the
22725         calling assembly.
22726
22727 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
22728
22729         * loader.h, loader.c: stack walking support.
22730         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
22731         GetCallingAssembly.
22732
22733 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
22734
22735         * marshal.c: added optimisations for blittable types 
22736
22737         * class.c (mono_array_class_get): do not set blittable attribute on arrays
22738         (mono_class_setup_mono_type): set blittable attribute for single
22739         and double.
22740
22741         * marshal.c (mono_string_utf8_to_builder): impl.
22742         (mono_string_builder_to_utf8): impl.
22743         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
22744
22745 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
22746
22747         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
22748         (mono_marshal_get_managed_wrapper): impl. byref types
22749
22750 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22751
22752         * icall.c:
22753         (search_method): don't display debug message. 
22754
22755 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
22756
22757         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
22758
22759 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
22760
22761         * appdomain.c: set the missing filename when throwing exception.
22762
22763 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
22764
22765         * metadata.c (mono_type_size): code cleanup
22766         (mono_type_stack_size): removed some test code
22767
22768 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
22769
22770         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
22771         mono_get_exception_file_not_found now.
22772
22773         * exception.c (mono_exception_from_name_two_strings): New version
22774         that will call a constructor with two string arguments. 
22775         (mono_get_exception_file_not_found): New helper routine, used to
22776         report file-not-found errors.
22777
22778 2002-07-20  Dick Porter  <dick@ximian.com>
22779
22780         * process.h:
22781         * process.c: Pass file handles to CreateProcess
22782         
22783         * icall.c:
22784         * file-io.h:
22785         * file-io.c: Implemented CreatePipe
22786
22787 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
22788
22789         * metadata.c (mono_get_param_info): set alignment for value types
22790
22791 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
22792
22793         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
22794         Constify mono_domain_assembly_open().
22795         * loader.c: handle null namespace in icalls.
22796
22797 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
22798
22799         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
22800         (emit_str_to_ptr_conv): marshal object as structs
22801
22802         * metadata.c (mono_type_to_unmanaged): marshal object as structs
22803
22804         * marshal.c (mono_marshal_get_runtime_invoke): support value types
22805
22806 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
22807
22808         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
22809         (mono_marshal_get_native_wrapper): we an now return value types
22810
22811 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22812
22813         * verify.c: more checks implemented.
22814
22815 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
22816
22817         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
22818         (fix bug #27695)
22819         (mono_marshal_get_native_wrapper): allow byref arguments
22820         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
22821         impl. PtrToStringXXX methods
22822         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
22823         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
22824         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
22825         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
22826         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
22827
22828 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22829
22830         * reflection.c: fix buglet in parsing an assembly name.
22831
22832 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
22833
22834         * marshal.c (emit_ptr_to_str_conv): first impl.
22835
22836 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
22837
22838         * object.c, class.h: cache the vtable in the class as suggested by
22839         vargaz@freemail.hu (Zoltan Varga).
22840
22841 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22842
22843         * class.h, loader.c: added mono_field_from_token().
22844         * verify.c: first cut of type checking code.
22845
22846 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
22847
22848         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
22849
22850 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
22851
22852         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
22853         (fix bug #27782)
22854         (mono_marshal_get_remoting_invoke): impl.
22855         (mono_delegate_begin_invoke): impl.
22856         (mono_mb_emit_save_args): impl.
22857         (mono_delegate_end_invoke): impl.
22858         (mono_marshal_get_delegate_begin_invoke):
22859         (mono_marshal_get_delegate_end_invoke):
22860         (mono_marshal_get_delegate_invoke): generate a special name for
22861         those methods (including the signature) and associate them whith
22862         the delegate class. 
22863
22864 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
22865
22866         * reflection.[ch]: 
22867         (mono_reflection_type_from_name): now it has a MonoImage parameter
22868         which is used as the default image to search the type in. If the image
22869         is NULL or getting the type from it fails, it defaults to corlib.
22870
22871         * icall.c: changed 1 call to mono_reflection_type_from_name to match
22872         new parameter.
22873
22874 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22875
22876         * reflection.c: update the parameter table index.
22877
22878 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
22879
22880         * domain.c: don't include the mark byte in the string hash.
22881
22882 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
22883
22884         * icall.cs: icall for Type.GetTypeCode ().
22885         * verify: a couple of fixes and disabled local initialization checks.
22886
22887 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
22888
22889         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
22890
22891         * debug-helpers.c (mono_method_full_name): print the type of the
22892         runtime wrapper
22893
22894         * metadata.c (mono_signature_hash): a hash function for signatures
22895         (mono_signature_hash): better hash algorithm
22896
22897         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
22898
22899         * debug-helpers.c (mono_method_full_name): this can now generate
22900         method names with signatures
22901
22902         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
22903         method dont have this pointers.
22904
22905 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
22906
22907         * reflection.c: fixup typebuilder tokens.
22908         * image.c: fix buglet.
22909         * marshal.h: remove whitespace.
22910         * metadata.h, metadata.c: reinstate code that was removed.
22911         * verify.c: handle catch directives and fix another couple of bugs.
22912
22913 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
22914
22915         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
22916         (mono_marshal_get_native_wrapper): make it comp. with the old code
22917         (mono_marshal_get_native_wrapper): support boolean
22918         (mono_marshal_get_managed_wrapper): support more types
22919
22920 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
22921
22922         * class.c (class_compute_field_layout): compute class->blittable attribute.
22923
22924 2002-07-09  Dick Porter  <dick@ximian.com>
22925
22926         * threads.c: Make the thread cleaning up cope with threads that
22927         call ExitThread()
22928
22929 2002-07-08  Radek Doulik  <rodo@ximian.com>
22930
22931         * reflection.c (method_encode_code): use non-translated values to
22932         compute finally_start, this fixes exception handling on ppc, yay!
22933
22934         * decimal.h (struct signscale): fix endianess
22935
22936 2002-07-07  Radek Doulik  <rodo@ximian.com>
22937
22938         * reflection.c: swap box_val and not val
22939
22940 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
22941
22942         * reflection.c, reflection.h: handle full assembly info in type name.
22943         Handle Type arguments when loading custom attributes.
22944         * icall.c: updated to use new mono_reflection_type_from_name () method.
22945
22946 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22947
22948         * loader.c:
22949         (method_from_memberref): also print assembly name when method not found.
22950
22951 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22952
22953         * icall.c:
22954         (ves_icall_TypeGetProperties): fixed bug #27473. 
22955
22956 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22957
22958         * reflection.c: display image name and token when cannot find the
22959         .ctor for an attribute.
22960
22961 2002-07-05  Martin Baulig  <martin@gnome.org>
22962
22963         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
22964
22965 2002-07-04  Dick Porter  <dick@ximian.com>
22966
22967         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
22968         compile on mingw.  This will cause mingw builds to not wait for
22969         subthreads to terminate after the main thread does.  I've lodged a
22970         bug with the mingw developers for them to wrap OpenThread().
22971
22972 2002-07-03  Dick Porter  <dick@ximian.com>
22973
22974         * threads.c: Store thread IDs instead of handles, because
22975         GetCurrentThread() returns a pseudohandle and therefore stores
22976         useless values.  mono_thread_cleanup() continues checking the
22977         array of threads until it is empty, to cope with subthreads
22978         spawning new threads after the main thread has finished.
22979
22980         * profiler.h:
22981         * profiler.c:
22982         * profiler-private.h: Pass the thread ID to thread profiler
22983         functions, instead of a handle
22984
22985 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
22986
22987         * verify.c: fixes to make it more usable.
22988         * pedump.c: added --verify code to verify IL code in an assembly.
22989
22990 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22991
22992         * reflection.c: turn errors into warnings to allow compiling corlib.
22993
22994 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
22995
22996         * reflection.c: add special cases to compile corlib.
22997
22998 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
22999
23000         * reflection.c: handle properties with only a set method.
23001
23002 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
23003
23004         * opcodes.h: add enum with opcodes in opval order.
23005
23006 2002-07-01  Dick Porter  <dick@ximian.com>
23007         
23008         * object.h:
23009         * object.c (mono_runtime_run_main): Removed unneeded argument
23010
23011 2002-06-28  Martin Baulig  <martin@gnome.org>
23012
23013         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
23014
23015 2002-06-27  Dick Porter  <dick@ximian.com>
23016
23017         * threads.c: Store the handle in both the parent thread and in the
23018         subthread, to minimise the time between starting a new thread and
23019         storing its ID.
23020
23021 2002-06-26  Dick Porter  <dick@ximian.com>
23022
23023         * appdomain.c (mono_runtime_cleanup): Close the socket library
23024         after all the threads have finished, not before
23025
23026 2002-06-26  Martin Baulig  <martin@gnome.org>
23027
23028         * debug-symfile.c (mono_debug_find_source_location): Added
23029         `guint32 *line_number' argument.  If it's not NULL, store the line number
23030         there and return the file name without the line number.
23031
23032 2002-06-25  Dick Porter  <dick@ximian.com>
23033
23034         * icall.c:
23035         * process.h:
23036         * process.c: Process forking and other support functions
23037
23038 2002-06-25  Dick Porter  <dick@ximian.com>
23039
23040         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
23041         things dont happen when the image is closed.
23042         (mono_image_lookup_resource): Walk the resource section looking
23043         for a particular entry
23044
23045         * cil-coff.h: PE resource section decoding
23046
23047 2002-06-25  Dick Porter  <dick@ximian.com>
23048         
23049         * assembly.h:
23050         * assembly.c: 
23051         (mono_assembly_foreach): Accessor functions to walk the list of
23052         loaded assemblies
23053         (mono_assembly_set_main):
23054         (mono_assembly_get_main): Process methods need to know which
23055         assembly is the "main" one
23056
23057         * object.c (mono_runtime_run_main): Record the main assembly
23058
23059         * debug-helpers.c: Fix typo
23060
23061 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
23062
23063         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
23064         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
23065
23066 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
23067
23068         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
23069
23070 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
23071
23072         * image.c (do_mono_image_open): Initialize reference count,
23073         otherwise we leak the MonoImage.
23074
23075 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
23076
23077         * reflection.c: small tweak to handle self-hosting.
23078
23079 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
23080
23081         * reflection.c: fix type name parse code.
23082
23083 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
23084
23085         * reflection.c: break out of the loop.
23086         * image.c: special case corlib.
23087
23088 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
23089
23090         * reflection.c: add all the custom attrs at the end to ensure the
23091         ctors have been properly initialized when the attributes are defined
23092         in the current assembly.
23093
23094 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
23095
23096         * reflection.c: handle correctly multiple-nested types.
23097
23098 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
23099
23100         * row-indexes.h: fix typos.
23101         * reflection.c: adjust for typos and fix method_def_or_ref
23102         encoding in MethodImpl table.
23103
23104 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
23105
23106         * reflection.c: fix entry point patching (thanks Serge!).
23107
23108 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
23109
23110         * verify.c: add check for System.Exception
23111
23112 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
23113
23114         * image.c, class.c: minifix for code just c&p'ed.
23115         * reflection.c: warning fix.
23116         * object.h, loader.h, domain.c: load also StringBuilder.
23117
23118 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
23119
23120         * marshal.h, marshal.c: some support code to handle complex marshaling.
23121
23122 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
23123
23124         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
23125         Better signatures with vtable error dump.
23126
23127 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
23128
23129         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
23130
23131 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
23132
23133         * icall.c (ves_icall_Type_GetField): impl.
23134
23135 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
23136
23137         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
23138         to retrieve a marshal description blob for a field or param.
23139
23140 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
23141
23142         * reflection.h, reflection.c: change order of nested type emission
23143         to avoid table corruption. The NestedTypes table is sorted.
23144         * icall.c: change order of GetConstructor results to workaround mcs bug.
23145
23146 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
23147
23148         * reflection.h, reflection.c: handle field and param marshal
23149         information.
23150
23151 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
23152
23153         * icall.c, marshal.c marshal.h: more Marshal class implementation.
23154
23155 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
23156
23157         * reflection.c: fix call convention.
23158
23159 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
23160
23161         * reflection.h, reflection.c: mono_image_get_memberref_token()
23162         takes a type instead of a class, now. Added
23163         mono_image_get_array_token() to create tokens for the special
23164         multi-dim array methods.
23165
23166 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
23167
23168         * assembly.c: handle modules (no assembly table). Split
23169         loading references in its own function.
23170         * class.c: handle moduleref resolution scope.
23171         * image.c, image.h: cache module name in image.
23172
23173 2002-06-07  Martin Baulig  <martin@gnome.org>
23174
23175         * reflection.c (mono_image_get_type_info): Only add a class layout entry
23176         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
23177
23178 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
23179
23180         * icall.c: more signature fixes that used uint instead of int.
23181
23182 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
23183
23184         * reflection.c: fixed signature of field refs.
23185
23186 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23187
23188         * class.c, reflection.c: handle typerefs of nested types
23189         (both on read and when writing files).
23190
23191 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
23192
23193         * icall.c: fix method signatures that tried to workaround the previous
23194         typo, d'oh!
23195
23196 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
23197
23198         * debug-helpers.c: fix typo.
23199
23200 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
23201
23202         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
23203         rewrote the PE/COFF writing code (our programs are understood by the
23204         ms runtime, now).
23205
23206 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
23207
23208         * gc.c, gc.h, icall.c: weakreference support.
23209
23210 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
23211
23212         * Makefile.am, mono-config.c: use $(sysconfdir).
23213
23214 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
23215
23216         * icall.c: changed default precision of Double.ToString() to 15.
23217         Fixed memory leak. Unified with Single.ToString.
23218
23219 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
23220
23221         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
23222
23223 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
23224
23225         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
23226         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
23227         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
23228         and myself.
23229
23230 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
23231
23232         * debug-symfile.c, sysmath.c: yet more compilation fixes.
23233
23234 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
23235
23236         * reflection.c, socket-io.c: more compilation fixes.
23237
23238 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
23239
23240         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
23241         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
23242         unicode.c: warning and compiler compatibility fixes.
23243
23244 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
23245
23246         * class.h, metadata.c: fixed warnings/compilation errors.
23247
23248 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
23249
23250         * Makefile.am, mono-config.c, mono-config.h: configuration file
23251         support routines.
23252         * loader.c, loader.h: make Dll mapping configurable at runtime in the
23253         config file. Export methods to insert and lookup mappings.
23254
23255 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
23256
23257         * reflection.c: handle types and boxed objects in custom attr
23258         constructors.
23259
23260 2002-05-30  Martin Baulig  <martin@gnome.org>
23261
23262         * debug-symfile.c
23263         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
23264
23265 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
23266
23267         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
23268         to lookup the implmap row for a P/Invoke method.
23269         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
23270         P/Invoke method from the runtime on an as needed basis.
23271
23272 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
23273
23274         * metadata.c (mono_metadata_parse_signature): impl.
23275
23276 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
23277
23278         * class.c: handle .pack directive.
23279
23280 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
23281
23282         * object.c: initialize static fields with RVA data.
23283
23284 2002-05-25  Martin Baulig  <martin@gnome.org>
23285
23286         * debug-symfile.c
23287         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
23288
23289 2002-05-24  Martin Baulig  <martin@gnome.org>
23290
23291         * debug-symfile.c
23292         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
23293         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
23294         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
23295
23296 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
23297
23298         * object.c: special case string ctros in invoke.
23299         * gc.c: silly whitespace changes.
23300
23301 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
23302
23303         * threadpool.[ch]: impl. a threadpool that can
23304         be used by mint and mono.
23305
23306 2002-05-22  Martin Baulig  <martin@gnome.org>
23307
23308         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
23309         The first argument is now a `MonoReflectionModuleBuilder *', the return
23310         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
23311         `methods' field to get the method builder.  The `token' argument is the
23312         unfixed token.
23313
23314         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
23315         invalid characters instead of g_assert_not_reached()ing.  This seems
23316         to be the behaviour of mscorlib.
23317
23318 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
23319
23320         * object.c (mono_runtime_invoke_array): applied patch from Rachel
23321         Hestilow to fix bug #25104
23322
23323 2002-05-21  Martin Baulig  <martin@gnome.org>
23324
23325         * debug-symfile.c (mono_debug_find_source_location): New function.
23326         Looks up an IL offset in the line number table and returns the source
23327         location as a string.
23328
23329 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23330
23331         * icall.c:
23332         (mono_double_ToStringImpl): changed %f by %g until we have something
23333         better.
23334
23335 2002-05-21  Nick Drochak  <ndrochak@gol.com>
23336
23337         * icall.c : Use different name for Math.Pow's icall.  Needed to check
23338         parameters first in C#.
23339
23340 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
23341
23342         * icall.c, reflection.h: added icall to get info about an event.
23343
23344 2002-05-20  Radek Doulik  <rodo@ximian.com>
23345
23346         * object.c (mono_value_box): don't use memcpy for boxing on BIG
23347         endian
23348         (mono_value_box): don't use memcpy for small sizes on
23349         architectures with unaligned access
23350
23351 2002-05-20  Martin Baulig  <martin@gnome.org>
23352
23353         * reflection.c (mono_reflection_setup_internal_class): Don't crash
23354         if `tb->parent == NULL'.
23355         (mono_reflection_create_internal_class): New function.  This is
23356         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
23357         for enum types.
23358
23359         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
23360         New interncall.
23361
23362 2002-05-19  Martin Baulig  <martin@gnome.org>
23363
23364         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
23365         argument to get the length, don't default to the array length.
23366
23367 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
23368
23369         * assembly.c (mono_assembly_setrootdir): New function used to
23370         override the MONO_ASSEMBLIES directory.
23371
23372 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
23373
23374         * icall.c: ValueType_GetHashCode() initialize local var.
23375
23376 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
23377
23378         * reflection.c: sort custom attributes table.
23379
23380 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
23381
23382         * reflection.c: support named args in custom attributes (write support).
23383
23384 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
23385
23386         * reflection.c: fix finally position calculation.
23387
23388 2002-05-15  Radek Doulik  <rodo@ximian.com>
23389
23390         * reflection.c: fixed endianess at many places
23391
23392         * icall.c (ves_icall_InitializeArray): comment out debug msg
23393
23394 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
23395
23396         * object.c (mono_unhandled_exception): new function to handle
23397         unhandled exceptions.
23398         (mono_unhandled_exception): call the UnhandledException event.
23399         (mono_runtime_delegate_invoke): impl.
23400
23401 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
23402
23403         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
23404         returns the RVA, not the direct pointer to the data. Handle the case
23405         when the class size is fixed.
23406
23407 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
23408
23409         * reflection.c: fix some endianess issues.
23410
23411 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
23412
23413         * object.c (mono_runtime_invoke): is now able to catch exceptions.
23414
23415         * threads.c (mono_thread_init): added a callback which is invoked
23416         at thread start.
23417
23418 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
23419         
23420         * icall.c: make GetHashCode return non-negative values.
23421
23422 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
23423
23424         * object.c, icall.c, gc.c: revert to address-based hashcode.
23425
23426 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
23427
23428         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
23429
23430 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
23431
23432         * icall.c, class.c: special case <Module>.
23433
23434 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
23435
23436         * icall.c: fix bug in GetNow().
23437
23438 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
23439
23440         * object.c (mono_runtime_class_init): make sure that we call all
23441         static class constructors.
23442
23443 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
23444
23445         * reflection.c: sort methodsemantics table.
23446
23447 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
23448
23449         * reflection.h, reflection.c: honour init locals setting.
23450
23451 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
23452
23453         * icall.c: copied Double ToStringImpl for Single ToStringImpl
23454
23455 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
23456
23457         * reflection.c: support ContructorBuilders in attribute blob creation.
23458
23459 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23460
23461         * reflection.c: some changes to build a binary that can be run
23462         directly in windows.
23463
23464 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
23465
23466         * loader.c: print a big message when an icall can't be found.
23467
23468 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23469
23470         * string-icalls.c: fix bug 24248.
23471
23472 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
23473
23474         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
23475         icall.c, reflection.h: separate assembly loading by pathname and by
23476         assembly name. Use the MONO_PATH env var to search for assemblies.
23477
23478 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
23479
23480         * assembly.c, image.h: add some support for assemblies
23481         with multiple modules.
23482         * class.c, class.h: export mono_class_from_typeref().
23483         * loader.c: remove duplicated code and use mono_class_from_typeref(),
23484         instead.
23485
23486 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
23487
23488         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
23489         documentation says (the ECMA one is correct).
23490
23491 2002-05-02  Dick Porter  <dick@ximian.com>
23492
23493         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
23494         Don't name the synchronisation mutex.
23495
23496 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
23497
23498         * rand.c
23499         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
23500         Make the prototypes match.
23501         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
23502         Same.
23503
23504         * icall.c
23505         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
23506         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
23507         all systems have tm.tm_zone, so use strftime() with %Z to print
23508         the timezone abreviation into a temp string.
23509
23510         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
23511         rather than mono_array_addr() on a MonoString on Big Endian
23512         machines.
23513
23514 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
23515
23516         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
23517         fix bug 24041
23518
23519 2002-04-30  Dick Porter  <dick@ximian.com>
23520
23521         * socket-io.c: Cope with SOCKET being an integer rather than a
23522         pointer now.
23523
23524         * threads.c: Added Thread_free_internal, to deal with thread
23525         handle cleanup.  Moved calls to handle_store() and handle_remove()
23526         to start_wrapper(), so each can only be called once.  Allocate
23527         synchronisation blocks with GC_malloc(), and use GC finalisation
23528         to close the handles.
23529
23530         * icall.c: added System.Threading.Thread::Thread_free_internal
23531
23532 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
23533
23534         * icall.c: support Environment.Exit, CommandLineArgs().
23535
23536 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
23537
23538         * object.c, object.h: added mono_runtime_run_main () and
23539         mono_runtime_get_main_args () for use in System.Environment.
23540
23541 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
23542
23543         * gc.c: fix thinko, enable actual finalization since the jit is now
23544         fixed.
23545
23546 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
23547
23548         * gc.c, object.c: take into account that an object may be offset wrt the address
23549         returned by GC_malloc().
23550
23551 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
23552
23553         * image.c: handle files without entries in the assembly table (modules).
23554
23555 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
23556
23557         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
23558         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
23559         allowed to be null when it's System.Object class setup.
23560
23561 2002-04-27  Martin Baulig  <martin@gnome.org>
23562
23563         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
23564         if `tb->parent == NULL' rather than crashing.
23565
23566 2002-04-28  Nick Drochak  <ndrochak@gol.com>
23567
23568         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
23569         calling acos() where asin() should have been called.
23570
23571 2002-04-26  Martin Baulig  <martin@gnome.org>
23572
23573         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
23574         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
23575         there's a subdirectory called `System', but we don't want to read that
23576         subdirectory as an assembly.
23577
23578 2002-04-25  Martin Baulig  <martin@gnome.org>
23579
23580         * debug-symfile.c: Reflect latest MonoString changes.
23581
23582 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
23583
23584         * rand.c, rand.h: instance method icalls need to have an explicit
23585         this pointer as first argument in the C implementation.
23586
23587 2002-04-25  Nick Drochak <ndrochak@gol.com>
23588
23589         * icall.c: Fix typo in map for GetNonZeroBytes
23590
23591 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
23592
23593         * string-icalls.c : String does now passes unit tests without any 
23594         errors, the following changes has been made:
23595         
23596         Implemented replace methods.
23597         Renaming of methods to (try) follow the standard.
23598         Fixed compare ordinal
23599         Made all memory allocated directly to function instead of via icall function.
23600         Small performance fix in is_in_array function
23601                         
23602  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
23603
23604         c (mono_string_Internal_ctor_charp_int_int):
23605         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
23606         sindex < 0, throw ArgumentOutOfRangeException instead of
23607         ArgumentNullException.
23608
23609         Added new check for length == 0, however
23610         I need to make it return String.Empty from the C code.
23611         
23612         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
23613         that calculate the length for us here.
23614         
23615         (mono_string_Internal_ctor_sbytep_int_int): Replaced
23616         mono_string_new_utf16 with mono_string_new, since value is utf8.
23617
23618 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
23619
23620         * object.c: register the object for finalization if needed.
23621         Allocate one more char in the string for the terminating 0 char.
23622
23623 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
23624
23625         * class.c, class.h, image.c: check if a type implemenst a destructor.
23626         Use the proper key for array class lookups.
23627         * icall.c: register the icalls in the System.GC class.
23628         * gc.c, gc.h: GC-related functions and icalls.
23629
23630 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23631
23632         * icall.c:
23633         * socket-io.c:
23634         * unicode.c: free some strings gotten from mono_string_to_utf8 and
23635         changed a couple of free () by g_free ().
23636
23637         * decimal.c: one-liner in the comments for decimal2string ().
23638
23639 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
23640
23641         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
23642
23643 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
23644
23645         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
23646         * object.c (mono_runtime_invoke_array) : handle null in params
23647
23648 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
23649
23650         * string-icalls.c: fixed bug in split (one off bug)
23651
23652 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
23653
23654         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
23655         * icalls.c: added String::Equals as internal method
23656
23657 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
23658
23659         * threads.c: fixed bug in the double interlocked functions
23660
23661 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
23662
23663         * threads.c: implemented all of the new interlocked icalls.
23664         * string-icalls.c: fix a bug in insert.
23665         * icalls.c: added the icalls for interlocked, removed old string functions.
23666         
23667 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
23668
23669         * loader.c: fix off-by-one error when reading argument names.
23670
23671 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23672
23673         * profiler.c: win32 counter implementation (untested).
23674         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
23675         (the latter needs testing and more complete impl. from win32 folks).
23676
23677 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
23678
23679         * object.c: mono_array_new_full workaround mono_array_class_get
23680         problem.
23681
23682 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23683
23684         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
23685         * object.h (mono_string_chars): Changed casting type.
23686
23687 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23688
23689         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
23690                            method signatures to use gunichar2 instead of gint16.
23691
23692 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
23693
23694         * object.h, object.c: domain-specific versions of mono_object_new and
23695         mono_array_new.
23696
23697 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
23698
23699         * object.c: changed String layout
23700
23701         * string-icalls.c (mono_string_Internal_ctor_chara): added
23702         internal string constructors.
23703
23704 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
23705
23706         * threads.c: pass 'this' to the thread start routine.
23707
23708 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23709
23710         * string-icalls.c: fix IndexOf and LastIndexOf. Now
23711         InternalCompareStr don't call twice mono_string_cmp_char for the last
23712         character. Improved performance in mono_string_cmp_char.
23713
23714 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
23715
23716         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
23717         code into its own library: libmonoruntime.
23718
23719 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
23720
23721         * object.h, object.c: changed array format so that szarrays do not
23722         require a bounds structure.
23723         * icall.c, appdomain.c: support for new szarray format.
23724
23725 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
23726
23727         * metadata.c: compare also the retuns type when comparing signatures:
23728         we didn't do this as an optimization since really overloaded methods
23729         must differ also in the arguments, but this doesn't work with
23730         low-level IL code (or when using explicit conversion operators: see
23731         bug#23498 for an example).
23732
23733 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
23734
23735         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
23736
23737 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
23738
23739         * icall.c: make MonoType::GetElementType its own icall.
23740
23741 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
23742
23743         * icall.c: remove MonoMethod_get_Name().
23744         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
23745         object.
23746
23747 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23748
23749         * string-icalls.c: optimized a few methods.
23750
23751 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23752
23753         * icall.c: added all new string internal calls
23754         * string-icalls.c: added, new string internal call implementation.
23755         * object.c: added mono_string_new_size for allocating a string a size
23756
23757 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
23758
23759         * object.c (mono_object_isinst): use the same code as in the
23760         optimized x86 version.
23761
23762 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
23763
23764         * profiler.c: TSC-based timer code (faster and more accurate).
23765         Not hooked up in configure, yet (set USE_X86TSC to 1).
23766
23767 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
23768
23769         * profiler.c, profiler.h: track time spent compiling methods.
23770         * threads.c: track thread creation/destruction.
23771
23772 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
23773
23774         * profiler.c, profiler.h, profiler-private.h: profiling interface
23775         and sample implementation. Moved here so that it can be used also by
23776         the jit.
23777
23778 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
23779
23780         * reflection.c, reflection.h: keep types and other handles separate in
23781         the hash tables for referred tokens. Add guid for modules.
23782
23783 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
23784
23785         * assembly.c: fix bugs found with valgrind.
23786         * metadata.h, metadata.c: added mono_metadata_guid_heap().
23787
23788 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
23789
23790         * threads: added icall support for getting current domain for
23791                    the thread.
23792  
23793 2002-04-13  Martin Baulig  <martin@gnome.org>
23794
23795         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
23796         (MonoDebugVarInfo): Added `index' field for register based addresses.
23797         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
23798         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
23799         `MonoDebugVarInfo *params' and `guint32 this_offset' with
23800         `MonoDebugVarInfo *this_var'.
23801
23802         * debug-symfile.c (relocate_variable): New static function to write
23803         a location description for a local variable or method parameter.
23804
23805 2002-04-12  Martin Baulig  <martin@gnome.org>
23806
23807         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
23808         stack offset and begin/end scope address of a local variable.
23809         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
23810         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
23811         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
23812
23813         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
23814         Added new relocation types for start/end scope of a local variable.
23815
23816 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
23817
23818         * object.h: add mono_object_domain() macro.
23819         * reflection.c: handle typespecs.
23820         * icall.c: MonoMethod::get_Name() implementation.
23821
23822 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23823
23824         * icall.c: String::GetHashCode() icall implementation.
23825
23826 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
23827
23828         * icall.c: String::IndexOfAny icall.
23829         * object.c, object.h: make array->max_length more useful.
23830         Intrduced mono_object_class() and mono_string_length() macros.
23831
23832 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23833
23834         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
23835         instead of g_unichar_isdigit.
23836
23837 2002-04-11  Nick Drochak  <ndrochak@gol.com>
23838
23839         * icall.c: Implement a simple Double.ToString().
23840
23841 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
23842
23843         * appdomain.h: only io-layer.h is supposed to be included.
23844         * icall.c: explicitly import environ. Fix warning.
23845
23846 2002-04-10  Nick Drochak  <ndrochak@gol.com>
23847
23848         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
23849                 return true even if it's not Daylight Savings time.
23850                 Only return false for the case where the function isn't
23851                 implemented for a plaform (read Windows).
23852
23853 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
23854
23855         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
23856         data with a mutex.
23857
23858 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
23859
23860         * mempool.c (mono_mempool_alloc): only use g_malloc when
23861         absolutely necessary.
23862
23863 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
23864
23865         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
23866
23867         * class.c (mono_class_vtable): use domain mempool to allocate vtable
23868         (mono_class_proxy_vtable): use domain mempool
23869
23870 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
23871
23872         * appdomain.h, appdomain.c: split initialization that requires the
23873         execution engine support into mono_runtime_init().
23874
23875 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
23876
23877         * class.c (mono_class_init): don't include vtable inside MonoClass
23878         to save some memory, gather some statistics.
23879         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
23880
23881 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
23882
23883         * icall.c: internalcall implementation for ValueType.Equals().
23884
23885 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
23886
23887         * object.c (mono_message_init): moved 
23888         (mono_runtime_exec_main): new arch. independent impl.
23889         (mono_runtime_invoke_array): new method - like
23890         mono_runtime_invoke, but you can pass an array of objects.
23891         (mono_remoting_invoke): new arch. independent impl.
23892         (mono_message_invoke): new arch. independent impl.
23893         (mono_runtime_class_init): new arch. independent impl.
23894         (mono_runtime_object_init): new arch. independent impl.
23895
23896 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23897
23898         * metadata.c, object.c, reflection.c: documented the exported
23899         functions.
23900
23901 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
23902
23903         * icall.c: simpler code to pass the assembly builder data to corlib.
23904         Implement GetNestedTypes() internalcall.
23905
23906 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
23907
23908         * class.c: warn if a type can't be loaded.
23909
23910 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
23911
23912         * image.h: typedef MonoImageOpenStatus
23913         * types.h: removed unused file
23914         
23915 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
23916
23917         * icall.c: Enum_ToObject accepts enum value arguments.
23918
23919 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
23920
23921         * class.c: move initialization of properties, events and nested
23922         classes, so that they happen for interfaces, too.
23923
23924 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
23925
23926         * icall.c: cleanup some ugly casts in Array_SetValue*.
23927
23928 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
23929
23930         * icall.c: the values array fro enums is of the correct type, now.
23931         Implement (correctly) getFullName instead of assQualifiedName for
23932         MonoType.
23933         * reflection.h, reflection.c: added mono_type_get_name ().
23934
23935 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
23936
23937         * assembly.c, image.h: for each MonoImage, record from wich assembly
23938         it was loaded.
23939         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
23940         Make Type.Assembly work.
23941
23942 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
23943
23944         * debug-symfile.h: use char* instead of gpointer to avoid
23945         unnecessary casts.
23946
23947         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
23948
23949         * icall.c (ves_icall_InternalExecute): impl. FielSetter
23950         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
23951
23952 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
23953
23954         * icall.c (mono_message_init): impl. (code cleanup)
23955         (ves_icall_InternalExecute): impl. FieldGetter
23956
23957         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
23958         defined we call all (non-static)methods through the vtable. 
23959
23960 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
23961
23962         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
23963         finalizer even though the memory is still referenced (and the chunk of
23964         memory is not freed).
23965
23966 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
23967
23968         * assembly.c: fix brokeness.
23969
23970 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
23971
23972         * class.c: kill some warnings. Check explicit interface method
23973         implementation also without considering the namespace.
23974         Load also literal strings in static class data.
23975
23976 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
23977
23978         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
23979         (default_assembly_name_resolver): Make the resolver take the
23980         "base" directory where the assembly was originally defined, so we
23981         can load DLLs that are in the same directory as the assembly that
23982         is being referenced.
23983
23984 2002-03-28  Dick Porter  <dick@ximian.com>
23985
23986         * file-io.h: 
23987         * file-io.c:
23988         * socket-io.c: 
23989         * unicode.h: 
23990         * unicode.c: Warning cleanups
23991
23992 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
23993
23994         * object.h, reflection.h: use the correct type instead of MonoObject.
23995
23996 2002-03-28  Martin Baulig  <martin@gnome.org>
23997
23998         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
23999         (mono_debug_update_symbol_file): Initialize classes if necessary.
24000
24001 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
24002
24003         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
24004         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
24005
24006 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
24007
24008         * assembly.h: fix function prototype.
24009         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
24010         * mono-endian.h: use const cast.
24011
24012 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
24013
24014         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
24015
24016 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
24017
24018         * loader.c: don't assert when a typeref can't be loaded, give
24019         a chance to the runtime to trow an exception instead.
24020         * loader.h: fix warning.
24021
24022 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
24023
24024         * class.c (mono_class_proxy_vtable): added proxy support
24025
24026 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
24027
24028         * icall.c: removed last of PAL calls, added System.Environment
24029         * file-io.h, file-io.c: MonoIO implementation
24030         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
24031
24032 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
24033
24034         * appdomain.c: do not use the byte marker in ldstr table lookup.
24035         * debug-helpers.c: allow two ':' to separate class and method name.
24036         * object.c: allocate arrays bounds with the GC, too.
24037         * verify: add a few more checks.
24038
24039 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
24040
24041         * reflection.c: output also literal strings. Allocate parameter data
24042         with GC_malloc() (thanks, Martin, for catching this!).
24043
24044 2002-03-26  Martin Baulig  <martin@gnome.org>
24045
24046         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
24047         include the `this' offset in the `param_offsets'.
24048
24049 2002-03-25  Martin Baulig  <martin@gnome.org>
24050
24051         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
24052         mono_debug_get_class() function to get the classes. Added new
24053         relocation types for arrays and strings.
24054         (mono_debug_get_class): New static function to search in all
24055         referenced assemblies for a metadata token.
24056
24057         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
24058
24059 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
24060
24061         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
24062         hold gc-allocated objects. Make the string heap a stream like the
24063         others. Removed duplicated code when writing stream info.
24064         Added asserts to catch possible buffer overflows. Set the sorted map
24065         for tables that need sorting. Added some documentation.
24066
24067 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
24068
24069         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
24070         for interned strings and vtables.
24071
24072 2002-03-24  Martin Baulig  <martin@gnome.org>
24073
24074         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
24075         it in the array since it was created with g_slist_prepend().
24076
24077 2002-03-24  Martin Baulig  <martin@gnome.org>
24078
24079         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
24080         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
24081         (mono_debug_method_from_token): Renamed to
24082         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
24083         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
24084
24085         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
24086         relocation types.
24087
24088         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
24089
24090 2002-03-24  Martin Baulig  <martin@gnome.org>
24091
24092         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
24093         (mono_debug_method_from_token): New func.
24094
24095         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
24096         New interncall, calls mono_debug_local_type_from_signature().
24097         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
24098         calls mono_debug_method_from_token().
24099
24100 2002-03-23  Martin Baulig  <martin@gnome.org>
24101
24102         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
24103         specifies the number of bytes to be converted, not the array size.
24104         Return the number of chars, not the number of bytes.
24105         (ves_icall_iconv_get_chars): The `byteCount' argument
24106         specifies the number of bytes to be converted, not the array size.
24107
24108 2002-03-23  Martin Baulig  <martin@gnome.org>
24109
24110         * reflection.h (MonoReflectionSigHelper): New type.
24111
24112         * reflection.c (mono_reflection_sighelper_get_signature_local),
24113         (mono_reflection_sighelper_get_signature_local): New functions.
24114
24115         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
24116         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
24117         interncalls.
24118
24119 2002-03-23  Martin Baulig  <martin@gnome.org>
24120
24121         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
24122         is_writeable is set.
24123         (mono_raw_buffer_update): New function to write the modified map
24124         back to disk.
24125
24126         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
24127
24128         * debug-symfile.c (mono_debug_update_symbol_file): Call
24129         mono_raw_buffer_update() when done writing.
24130
24131 2002-03-23  Martin Baulig  <martin@gnome.org>
24132
24133         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
24134
24135         * debug-symfile.c: Added support for arguments and local variables.
24136
24137 2002-03-23  Dick Porter  <dick@ximian.com>
24138
24139         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
24140         protected by ifdefs, hence breaking the w32 build.
24141
24142 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
24143
24144         * object.c: implement is_interned() the right way.
24145
24146 2002-03-21  Martin Baulig  <martin@gnome.org>
24147
24148         * debug-symfile.[ch]: New files to handle debugging information
24149         files. There's also support to dynamically update these symbol
24150         files to include machine dependent information.
24151
24152 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
24153
24154         * threads.c (mono_thread_create): new function to create thread
24155         from C
24156
24157 2002-03-20  Martin Baulig  <martin@gnome.org>
24158
24159         * icall.c (ves_icall_InternalInvoke): Create a new object if the
24160         method is a constructor.
24161         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
24162         points to ves_icall_InternalInvoke().
24163
24164 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
24165
24166         * file-io.c: Flush shouldn't throw exceptions.
24167
24168 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
24169
24170         * file-io.c: FileStream flush support; FileSetLength now
24171         restores file pointer.
24172
24173 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
24174
24175         * class.c: set image for pointer classes.
24176
24177 2002/03/19  Nick Drochak <ndrochak@gol.com>
24178
24179         * sysmath.c: Forgot one.
24180
24181 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
24182
24183         * sysmath.c: Avoid redefining existing names.
24184
24185 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
24186
24187         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
24188         handled by runtime as icall rather than dllimport from libm.so
24189         * file-io.c, file-io.h: fixed handle argument type.
24190
24191 2002-03-18  Dick Porter  <dick@ximian.com>
24192
24193         * reflection.c (mono_image_get_type_info): rename interface to
24194         iface, because of "#define interface struct" on windows.
24195
24196 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
24197
24198         * class.c, class.h: rename and export mono_ptr_class_get().
24199         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
24200         * reflection.c, reflection.h, icall.c: better/saner type name
24201         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
24202         method signatures.
24203
24204 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
24205
24206         * class.c (mono_class_init): removed hardcoded GHC_SLOT
24207
24208         * icall.c (ves_icall_InternalInvoke): impl.
24209
24210 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
24211
24212         * reflection.c: output the interface map table, too.
24213
24214 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
24215
24216         * class.c (class_compute_field_layout): separate computation of 
24217         static field layout
24218
24219 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
24220
24221         * icall.c: added System.Buffer support.
24222         * file-io.c: moved file icalls from PAL to FileStream.
24223
24224 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
24225
24226         * icall.c (ves_icall_System_Object_GetHashCode): impl.
24227
24228 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
24229
24230         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
24231
24232 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
24233
24234         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
24235
24236 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
24237
24238         * debug-helpers.{c,h}: moved here from monograph some useful functions
24239         to locate a method by name/signature in a class or image. Included
24240         also a small and flexible IL disassembler.
24241
24242 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
24243
24244         * reflection.c: fixup tokens in methods with small header size, too.
24245
24246 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
24247
24248         * object.c (mono_string_to_utf8): remove assert(!error), instead
24249         print a warning. 
24250
24251 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
24252
24253         * icall.c: update to the new mono_Array_class_get interface.
24254
24255 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
24256
24257         * appdomain.c, object.c: Boehm-GC enable.
24258         * icall.c: make get_data_chunk() support split data requests.
24259         Ensure a class is initialized in more cases. Return only the first
24260         property found in GetProperties() or the compiler gets confused. 
24261         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
24262         * reflection.h, reflection.c: add fixup mechanism for field and method
24263         tokens. Initialize assembly->typeref in a single place. Output
24264         properties after events. Support custom attributes for events, too.
24265         Typo fix for paramter custom attrs.
24266
24267 2002-03-07  Martin Baulig  <martin@gnome.org>
24268
24269         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
24270
24271 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
24272
24273         * class.c (mono_array_class_get): fix. for multi. dim. arrays
24274
24275 2002-03-06  Martin Baulig  <martin@gnome.org>
24276
24277         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
24278         non-zero lower bounds. See testcases #F10-#F13.
24279
24280 2002-03-05  Martin Baulig  <martin@gnome.org>
24281
24282         * exception.c (mono_get_exception_argument_out_of_range): New exception.
24283
24284         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
24285         ves_icall_System_Array_GetValue(), only calculate the absolute array position
24286         here.
24287         (ves_icall_System_Array_SetValue): Likewise.
24288         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
24289         as argument and does the actual work. This function is used when copying a
24290         multi-dimensional array.
24291         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
24292         now do all the widening conversions of value types.
24293         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
24294
24295 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
24296
24297         * class.c: remove some magic numbers and use the smbolic names,
24298         instead. Added init_events() to load event info at class init time.
24299         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
24300         and mono_metadata_methods_from_event().
24301         * reflection.h, reflection.c: added support for writing out the evnets
24302         related information.
24303
24304 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
24305
24306         * reflection.h, icall.c: use a different method (GetInterfaces)
24307         to gather interface info and add isbyref, isprimitive and
24308         ispointer to the ves_icall_get_type_info() return value.
24309
24310 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
24311
24312         * class.h: stared adding support for events.
24313         * icall.c: split find_members implementation. Added debug icall to get
24314         the address of an object.
24315         * reflection.c: handle TypeBuilders in mono_type_get_object().
24316
24317 2002-03-01  Martin Baulig  <martin@gnome.org>
24318
24319         * icall.c (ves_icall_System_Array_GetLength): This must throw an
24320         ArgumentOutOfRangeException(), not an ArgumentException().
24321         (ves_icall_System_Array_GetLowerBound): Likewise.
24322         (ves_icall_System_Array_GetValue): Improved argument checking.
24323         (ves_icall_System_Array_SetValue): Improved argument checking.
24324
24325 2002-03-01  Martin Baulig  <martin@gnome.org>
24326
24327         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
24328         called with invalid arguments rather than just dying with g_assert().
24329         (ves_icall_System_Array_SetValue): Likewise.
24330         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
24331         raise a NotImplementedException instead.
24332         (ves_icall_System_Array_GetLength): Added argument checking.
24333         (ves_icall_System_Array_GetLowerBound): Added argument checking.
24334
24335 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
24336
24337         * object.h (mono_assert): new macros mono_assert and
24338         mono_assert_not_reached
24339
24340 2002-02-28  Martin Baulig  <martin@gnome.org>
24341
24342         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
24343         and "System::String::IsInterned" to "System::String::_IsInterned".
24344
24345 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
24346
24347         * icall.c: remove hacks for typebuilder. Added icall to create a
24348         modified type from a tybebuilder.
24349         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
24350         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
24351         to create a backing MonoClass for a TypeBuilder.
24352
24353 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
24354
24355         * class.c, class.h: more refactoring of class init.
24356         Export mono_class_setup_mono_type() and mono_class_setup_parent().
24357
24358 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
24359
24360         * marshal.c, marshal.h: start of marshaling interface.
24361
24362 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
24363
24364         * icall.c: fix order in assembly qualified name icall.
24365
24366 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
24367
24368         * class.c: do not free str, since we store it in the hash table.
24369         * reflection.h: add label field to MonoILExceptionInfo.
24370         * reflection.c: handle references to more than one assembly. Handle
24371         case when there isn't a module created in the assembly.
24372
24373 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
24374
24375         * class.c: Fix typo. Start refactoring of class init code.
24376
24377 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
24378
24379         * appdomain.c: exit with 1 on error.
24380         * class.c: we already have the name in MonoClassField.
24381         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
24382         MonoStreamHeader instead of an offset of image->raw_metadata.
24383
24384 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
24385
24386         * appdomain.c (mono_init): Be even more descriptive about the error.
24387
24388 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
24389
24390         * appdomain.c: give the user an informative message when corlib can't
24391         be loaded.
24392
24393 2002-02-26  Martin Baulig  <martin@gnome.org>
24394
24395         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
24396         New icall to get the time zone data.
24397
24398 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
24399
24400         * reflection.c: set virtual and raw size of section correctly.
24401         * threads.c: transfer domain information to newly created threads.
24402
24403 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
24404
24405         * class.c: when instancing a class in a domain, load the default
24406         vaules for static fields from the constant table. Fix System.Enum to
24407         not be an enum.
24408         * icall.c: implement Object::GetType() internalcall. Implemented
24409         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
24410         Fixed checking of binding flags in find_members().
24411         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
24412         * reflection.c: handle enumerations when writing to the constant
24413         table. Use a different object cache for types.
24414
24415
24416 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
24417
24418         * object.c (mono_object_isinst): fix for arrays
24419
24420         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
24421
24422 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
24423
24424         * object.c: don't use mprotect ()  and fix intern pool hash table
24425         lookup for big endian systems.
24426
24427 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
24428
24429         * icall.c: change type_is_subtype_of () signature.
24430
24431 2002-02-21  Mark Crichton  <crichton@gimp.org>
24432
24433         * rand.c, rand.h: Added random number generator for
24434         System.Security.Cryptography classes.
24435
24436         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
24437
24438         * icall.c: Added System.Security.Cryptography calls.
24439
24440 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
24441
24442         * class.c, icall.c, metadata.c: better support for pointer types.
24443         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
24444         * reflection.c: Add support for getting custom attrs for properties
24445         and simplify some code.
24446
24447 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
24448
24449         * icall.c: change getToken () and add custom attribute GetBlob()helper
24450         method.
24451         * reflection.h: add custom attrs array to the reflection builder structures.
24452         * reflection.c: encode and emit custom attributes for all the relevant
24453         reflection objects. Cache fieldref and methodref tokens. Change
24454         mono_image_create_token() interface to take a MonoDynamicAssembly.
24455         More complete custom attributes decoder. Load custom attributes for
24456         Assembly, Field, Method and Constructor objects, too. Make the
24457         returned array an Attribute[] one, not object[]. Added
24458         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
24459         custom attribute constructor.
24460
24461 2002-02-20  Dick Porter  <dick@ximian.com>
24462
24463         * icall.c:
24464         * rawbuffer.c:
24465         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
24466         problem code out for now).
24467
24468 2002-02-19  Radek Doulik  <rodo@ximian.com>
24469
24470         * object.c (mono_ldstr): use hash table to avoid multiple swapping
24471
24472 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
24473
24474         * icall.c: register the GetCustomAttributes method.
24475         * object.c, object.h: add mono_string_new_len ().
24476         * reflection.h, reflection.c: added mono_runtime_invoke(),
24477         mono_install_runtime_invoke(). Added
24478         mono_reflection_get_custom_attrs () to load custom attributes and
24479         create the attribute objects.
24480
24481 2002-02-19  Dick Porter  <dick@ximian.com>
24482         * threads-dummy-types.c:
24483         * threads-dummy-types.h:
24484         * threads-dummy.c:
24485         * threads-dummy.h:
24486         * threads-pthread-types.c:
24487         * threads-pthread-types.h:
24488         * threads-pthread.c:
24489         * threads-pthread.h:  Deleted obsolete files
24490
24491 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
24492
24493         * class.c (mono_class_vtable): runtime init the class when we
24494         allocate static class data.
24495
24496         * icall.c (ves_icall_System_Array_SetValue): check for null values.
24497
24498         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
24499         and String - but we will need generic marshalling support in the
24500         future. 
24501         (mono_init): set the domain name in a ms compatible way
24502
24503         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
24504         String[].
24505
24506 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
24507
24508         * object.c (mono_array_clone): use alloca() instead of g_malloc  
24509         for sizes
24510
24511         * appdomain.c (mono_domain_unload): impl.
24512
24513 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
24514
24515         * appdomain.c, object.c: fix intern pool implementation.
24516         * class.c: fix alignment code.
24517
24518 2002-02-16  Radek Doulik  <rodo@ximian.com>
24519
24520         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
24521         and s2 > s1, just copy lower bytes to be compatible with little
24522         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
24523         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
24524
24525         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
24526         force big_endian to be 1 for big endian machines 
24527         (ves_icall_iconv_new_decoder): ditto
24528
24529 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
24530
24531         * socket-io.c (convert_sockopt_level_and_name): If the system
24532         doesn't define SOL_IP or SOL_TCP, get them by hand using
24533         getprotobyname() and caching the values (because this could be a
24534         slow operation).
24535         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
24536         Use the appropriate struct when the system does support it. Ie,
24537         not all systems have struct ip_mreqn so use struct ip_mreq when
24538         appropriate.
24539
24540 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
24541
24542         * reflection.c: handle finally clauses.
24543
24544 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
24545
24546         * socket-io.c: use g_snprintf() instead of snprintf.
24547
24548 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
24549
24550         * reflection.c (mono_param_get_objects): Cast second argument to
24551         mono_method_get_param_names to a const char** to silence the
24552         compiler warning.
24553
24554         * appdomain.c (mono_domain_assembly_open): Put parens around the
24555         truth statement in the for-loop.
24556
24557         * unicode.c (iconv_convert): Got rid of a compiler warning about
24558         int i being unused when the system has a new iconv.
24559         (iconv_get_length): Same.
24560
24561         * image.c (load_class_names): Cast the second argument to
24562         g_hash_table_insert() to char* to hush compiler warnings about the
24563         arg being a const.
24564         (mono_image_open): Same here.
24565
24566         * socket-io.c: Don't conditionally include sys/filio.h or
24567         sys/sockio.h here anymore since we now get them from
24568         io-layer/io-layer.h
24569         (inet_pton): If the system doesn't support inet_aton, implement
24570         using inet_addr and also #define INADDR_NONE if it isn't defined
24571         by the system.
24572
24573 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
24574
24575         * metadata.c, metadata.h: added function to get packing and size info
24576         of a typedef.
24577         * reflection.h, reflection.c: handle field RVA data. Save info about
24578         the table layout if needed. Assign typedef indexes to all the types
24579         before dumping the info about them to avoid forward reference problems.
24580
24581 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
24582
24583         * socket-io.c (convert_sockopt_level_and_name): ifdef
24584         SO_ACCEPTCONN because it is not defined on my system (old debian)
24585
24586 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
24587
24588         * opcode.c: use stddef.h to get NULL.
24589
24590 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
24591
24592         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
24593         for FIONBIO, FIONREAD and SIOCATMARK.
24594         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
24595         define INADDR_NONE and besides, inet_addr() is deprecated and
24596         should not be used. Use inet_pton() instead - it also has the
24597         added bonus that it can easily handle IPv6 addresses as well.
24598         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
24599
24600 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
24601
24602         * decimal.c: remove _MSC_VER conditional.
24603
24604 2002-02-13  Dick Porter  <dick@ximian.com>
24605
24606         * socket-io.c: 
24607         * icall.c: Internal calls for Blocking, Select, Shutdown,
24608         GetSocketOption and SetSocketOption
24609
24610 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
24611
24612         * assembly.cs: better resolver: use it instead of some kludgy
24613         code.
24614
24615 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
24616
24617         * reflection.c: the best way to speed-up the compiler is to avoid
24618         infinite loops.
24619
24620 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
24621
24622         * class.c (mono_class_vtable): changed the object layout
24623         (obj->vtable->class). 
24624         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
24625
24626 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
24627
24628         * assembly.c: look for assemblies in the assembly dir, too.
24629
24630 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
24631
24632         * class.c: fix thinko in mono_class_from_type().
24633
24634 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
24635
24636         * exception.h, exception.c: added TypeLoadException.
24637         * object.h, object.c: added mono_array_clone ().
24638         * icall.c: handle throwOnError in AssemblyGetType().
24639         Added Array.Clone().
24640         * opcode.h, opcode.c: use a single value for the opcode val.
24641         Compile fix for non-gcc compilers.
24642
24643 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
24644
24645         * opcodes.c, opcodes.h: export interesting info about opcodes.
24646
24647 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
24648
24649         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
24650         icalls. 
24651
24652         * class.c (class_compute_field_layout): set element_class for enums
24653         (mono_class_create_from_typedef): set element_class for normal classes
24654
24655         * icall.c (ves_icall_System_Enum_get_value): impl.
24656
24657         * class.c (mono_class_create_from_typedef): do not set valuetype
24658         flag for System.ValueType and System.Enum
24659
24660 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
24661
24662         * unicode.c (iconv_convert): fix big endian problem.
24663
24664 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
24665
24666         * class.c: add asserts if we are ever going to scribble over memory.
24667         * socket-io.c: not all systems have AF_IRDA defined.
24668
24669 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
24670
24671         * class.c (class_compute_field_layout): do not consider static
24672         fields to compute alignment
24673
24674 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
24675
24676         * appdomain.c (mono_appdomain_get): impl.
24677         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
24678
24679 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
24680
24681         * icall.c: ignore "file://" prefix when loading an assembly.
24682
24683 2002-01-23  Dick Porter  <dick@ximian.com>
24684
24685         * socket-io.c:
24686         * icall.c:
24687         * Makefile.am: Added socket support
24688
24689 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
24690
24691         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
24692         code back.  This should return the assemblies that are loaded by
24693         the runtime on behalf of an application domain. 
24694
24695         The current implementation is still broken, it just returns every
24696         assembly loaded, but until we get real applications domain this
24697         will do.
24698
24699 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
24700
24701         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
24702         AppDomain object.
24703
24704 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
24705
24706         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
24707         the mono_class_from_name lookup.
24708         (ves_icall_get_parameter_info): ditto.
24709         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
24710         method.
24711         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
24712
24713 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
24714
24715         * class.c: load also nested classes on class init.
24716         System.ValueType instance methods gets passed boxed
24717         values, unless methods in derived classed that get a pointer to the
24718         data.
24719         * icall.c: use better name parsing code in GetType().
24720         * image.c, image.h: add mono_image_loaded ().
24721         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
24722         * reflection.c, reflection.h: added mono_reflection_parse_type().
24723
24724 2002-01-22  Veronica De Santis <veron78@interfree.it>
24725
24726         * icall.c : Added mapping of internal calls for Manual and Auto reset events
24727         * threads.c : Added the implementation of internal calls for events
24728         * threads.h : Added prototypes of internal calls for events
24729         
24730 2002-01-21  Radek Doulik  <rodo@ximian.com>
24731
24732         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
24733
24734 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
24735
24736         * class.c (mono_class_init): set min_align to 1 (instead of 0)
24737         (mono_class_value_size): use min_align
24738
24739 2002-01-20  Dick Porter  <dick@ximian.com>
24740
24741         * threads.h:
24742         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
24743         so it compiles on w32.
24744
24745 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
24746
24747         * metadata.c (mono_type_stack_size): impl.
24748
24749         * class.c (mono_class_get_field): impl. memberref token
24750
24751 2002-01-16 Veronica De Santis <veron78@@interfree.it>
24752
24753         * icall.h : Added the internal calls mapping for CreateMutex_internal
24754                     and ReleaseMutex_internal.
24755         * threads.h : Added the prototype of mutexes internal calls.
24756         * threads.c : Added the implementations of mutexes internal calls.
24757
24758 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
24759
24760         * metaparse.h: removed unused file.
24761         * reflection.c, reflection.h: added stream_data_align () function 
24762         to align data in streams and keep stream aligned. Add support for
24763         exception support in method headers.
24764
24765 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
24766
24767         * unicode.c: make iconv_convert () return the number of bytess written
24768         in the output buffer.
24769
24770 2002-01-15  Dick Porter  <dick@ximian.com>
24771         * threads.c: Make the runtime's idea of infinite timeouts coincide
24772         with the class library's
24773
24774         Fix a particularly egregious bug in mono_thread_cleanup(). That
24775         code was so utterly bogus it must have been written on a Monday.
24776
24777 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
24778
24779         * reflection.h: add subtypes field to TypeBuilder.
24780         * reflection.c: encode constants for literal fields.
24781         Handle subtypes. Fix user string token (and add a zero byte)
24782         at the end.
24783         
24784 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
24785
24786         * class.c (mono_class_init): bug fix: assign slot numbers for
24787         abstract methods.
24788
24789 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
24790
24791         * reflection.c: don't try to output a code RVA for abstract methods.
24792         Small fixes for method header format. Output parameter info to the
24793         ParamDef table. Save method overriding info to MethodImpl table.
24794         Fix property support. Allow typedef.extends to be a type in the
24795         building assembly.
24796         * verify.c: fix off-by-one error.
24797
24798 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
24799
24800         * class.c: fix mono_class_from_mono_type () for szarray types.
24801         Remove unused cache check in mono_class_from_type_spec().
24802         * icall.c: *type_from_name () functions handle simple arrays and byref.
24803         * reflection.c: handle byref and szarray types. Handle methods without
24804         body (gets P/Invoke compilation working). Handle types and fields in
24805         get_token ().
24806         * reflection.h: add rank to MonoTypeInfo.
24807
24808 2002-01-10  Dick Porter  <dick@ximian.com>
24809
24810         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
24811         internal calls
24812
24813 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
24814
24815         * icall.c: initialize class in type_from_handle ().
24816         Loop also in parent classes for get_method ().
24817         * reflection.c: properly encode class and valuetype types.
24818         Start on encoding TypeBuilder types. Handle fieldrefs.
24819         Use correct length when registering a user string.
24820         Handle ConstructorBuilder and MonoMethod in get_token ().
24821         Make mono_type_get_object () aware of cached types.
24822         * object.c: back out change to mono_string_new ().
24823
24824 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
24825         * object.c: mono_string_new should return a NULL when the string 
24826         passed in is NULL -- not try to deference it.
24827         
24828 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
24829
24830         * icall.c: hack to make IsSubType work for TypeBuilders.
24831         * reflection.c: emit constructors before methods.
24832         Retrieve param names in mono_param_get_objects().
24833
24834 2002/01/05  Nick Drochak  <ndrochak@gol.com>
24835
24836         * Makefile.am: fix list of headers and sources so automake 1.5
24837         doesn't complain. Removed \# at end of list.
24838
24839 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
24840
24841         * reflection.c: get token for a method ref. Set return type of
24842         constructor to void.
24843         * loader.c: debug message.
24844         * class.c: typo fix.
24845
24846 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
24847
24848         * icall.c: fix array init with rank > 1. FindMembers
24849         loops in parent class as well.
24850         * image.c: do not insert nested types in name cache.
24851         * reflection.c: warning fix.
24852         * reflection.h: add override method (for interface impl).
24853
24854 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
24855
24856         * metadata.c: fix customattr decoding.
24857
24858 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
24859
24860         * rawbuffer.cs: Added native Win32 implementation, avoids using
24861         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
24862
24863 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
24864
24865         * class.c: make the low-level routines handle the cache.
24866
24867 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
24868
24869         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
24870
24871 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
24872
24873         * class.c: fix mono_array_element_size() for objects.
24874         * class.h, class.c: add properties to MonoClass and load them
24875         at init time.
24876         * icall.c: check with isinst() when assigning a value to an array
24877         instead of requiring the classes to match exactly.
24878         Implemented icall for System.Type::GetType().
24879         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
24880         enums. Handle bindingflags when looking for methods and fields.
24881         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
24882         and mono_metadata_methods_from_property().
24883         * reflection.h, reflection.c: added structures for propreties,
24884         parameters and enums. Implemented mono_property_get_object() and
24885         mono_param_get_objects().
24886
24887 2001-12-18  Dick Porter  <dick@ximian.com>
24888
24889         * file-io.c: Use mono_string_to_utf16() instead of
24890         mono_string_chars()
24891
24892         * object.c: Added mono_string_to_utf16(), which copies the non
24893         NULL-terminated MonoString into a new double-null-terminated
24894         buffer.
24895
24896 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
24897
24898         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
24899
24900 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
24901
24902         * file-io.c: raise exceptions if handle is invalid.
24903
24904 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
24905
24906         * assembly.c: yet another check for mscorlib.
24907         * class.c, class.h: load nesting info for classes.
24908         * icall.c: many new functions to support the Reflection classes.
24909         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
24910         * reflection.h, reflection.c: mono_image_create_token(),
24911         mono_assembly_get_object(), mono_type_get_object(),
24912         mono_method_get_object(), mono_field_get_object(): methods to return
24913         objects that parallel the C representation of assemblies, types,
24914         methods, fields.
24915
24916 2001-12-11  Dick Porter  <dick@ximian.com>
24917
24918         * icall.c:
24919         * file-io.c: Internal calls for file IO.
24920
24921 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
24922
24923         * tabledefs.h: missing FileAttributes.
24924         * verify.h, verify.c: use is_valid_string () to simplify and check for
24925         valid strings more correctly. Fix warnings and speeling.
24926         Check more tables: Filed, File, ModuleRef, StandAloneSig.
24927         Check code: branches, maxstack, method calls.
24928
24929 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
24930
24931         * object.c (mono_object_allocate): removed static, so that the jit
24932         can allocate value types.
24933
24934         * icall.c (ves_icall_System_DateTime_GetNow): impl.
24935
24936 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
24937
24938         * class.c: init enum types right away and register the
24939         token->MonoClass map in mono_class_create_from_typedef ().
24940         * verify.h, verify.c: first cut of the verifier.
24941         * pedump.c: add --verify switch to verify metadata tables.
24942         * tabledefs.h: add some missing enums.
24943
24944 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
24945
24946         * class.c (mono_install_runtime_class_init): impl.
24947         (mono_class_init): renamed mono_class_metadata_init to
24948         mono_class_init, also removed the metadata_inited flag
24949
24950         * object.c (mono_object_isinst): use faster algorithm
24951
24952 2001-11-30  Radek Doulik  <rodo@ximian.com>
24953
24954         * mono-endian.h: reverted last change
24955         added function prototypes
24956
24957         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
24958         add mono-endian.c back
24959
24960         * mono-endian.c: returned back, as Paolo pointed out, it's needed
24961         for unaligned access, I've mistaked it with endianess. I am
24962         sorry.
24963         (mono_read16): fix reverted endianess
24964         (mono_read64): ditto
24965         (mono_read32): ditto
24966
24967 2001-11-30  Dick Porter  <dick@ximian.com>
24968
24969         * exception.c: Implement mono_exception_from_name()
24970
24971 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
24972
24973         * metadata.h, metadata.c: remove params_size and locals_size and their
24974         calculation from the metadata code: they are only usefult to the
24975         interp.
24976
24977 2001-11-29  Radek Doulik  <rodo@ximian.com>
24978
24979         * object.c (mono_ldstr): swap bytes here, it's probably not the
24980         best place, but works for me now, I'll redo it once I know mono
24981         better, also note that I add PROT_WRITE and don't reset back, also
24982         note that it's only affects big endians, so x86 should be OK
24983
24984         * mono-endian.h (read16): use just glib macros for both endians
24985
24986         * mono-endian.c: removed as glib macros are used in in
24987         mono-endian.h so we don't need to care about endianess for read
24988         macros as glib does that for us already
24989
24990 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
24991
24992         * class.h, class.h: take minimum alignment into consideration so
24993         that the fields of a class remain aligned also when in an array.
24994
24995 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
24996
24997         * loader.h, loader.c: add mono_method_get_param_names().
24998         * class.c: 0-init class fields.
24999
25000 2001-11-26  Dick Porter  <dick@ximian.com>
25001
25002         * icall.c:
25003         * threads-types.h:
25004         * threads.c: New file that handles System.Threading on all platforms
25005
25006         * object.c: 
25007         * object.h: Remove the synchronisation struct from MonoObject,
25008         replace it with a pointer that gets initialised on demand
25009
25010         * Makefile.am: Replace all the system-specific threading code with
25011         a single file that uses the new wrapper library
25012
25013 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
25014
25015         * class.c, class.h: add mono_install_trampoline() so that the runtime
25016         can register a function to create a trampoline: removes the ugly
25017         requirement that a runtime needed to export arch_create_jit_trampoline.
25018         * object.h, object.c: added mono_install_handler() so that the runtime
25019         can install an handler for exceptions generated in C code (with
25020         mono_raise_exception()). Added C struct for System.Delegate.
25021         * pedump.c: removed arch_create_jit_trampoline.
25022         * reflection.c: some cleanups to allow registering user strings and
25023         later getting a token for methodrefs and fieldrefs before the assembly
25024         is built.
25025         * row-indexes.h: updates and fixes from the new ECMA specs.
25026
25027 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
25028
25029         * class.h, class.c: add enum_basetype field to MonoClass.
25030         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
25031         to get index in the constant table reated to a field, param or
25032         property.
25033         * reflection.h, reflection.c: handle constructors. Set public-key and
25034         version number of the built assembly to 0.
25035         * row-indexes.h: update from new ECMA spec.
25036
25037 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
25038
25039         * class.h, class.c: add a max_interface_id to MonoClass.
25040         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
25041         since it's used to do that. Added mono_type_type_from_obj().
25042         Make GetType() return NULL instead of segfaulting if the type was not
25043         found. Handle simple arrays in assQualifiedName.
25044         * object.h: add a struct to represent an Exception.
25045         * reflection.c: output call convention in method signature.
25046         Add code to support P/Invoke methods and fixed offsets for fields.
25047
25048 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
25049
25050         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
25051         the value.
25052         * icall.c: use mono_array_addr instead of array->vector: fixes the
25053         reflection image writing.
25054         * reflection.c: init call convention byte to 0 in method signature.
25055         Encode the property signature. Don't output property-related methods
25056         twice. Really process the properties for a type (don't cast a field to
25057         a property, my mom always told me that).
25058         Fix 64 bit issues in pointer alignment in a different and more
25059         readable way.
25060
25061 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
25062
25063         * loader.h: Removed type class from MonoDefaults, added monotype
25064
25065         * loader.c: Loaded MonoType, removed loading of Type
25066
25067         * icall.c (my_mono_new_object): Now returns a System.MonoType,
25068         and fills in System.Type._impl with a RuntimeTypeHandle rather
25069         than the actual MonoClass *
25070
25071         (ves_icall_type_from_handle): change from type_class to
25072         monotype_class
25073
25074         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
25075         implemented
25076
25077         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
25078         implemented
25079
25080         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
25081
25082         (ves_icall_System_Reflection_Assembly_GetType): implemented
25083
25084         (ves_icall_System_MonoType_assQualifiedName): implemented
25085
25086         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
25087
25088 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
25089
25090         * assembly.c (mono_assembly_open): Implement a cache for the
25091         assemblies. 
25092
25093         (mono_assembly_close): only destroy the assembly when the last
25094         reference is gone.
25095         
25096 2001-11-09  Dick Porter  <dick@ximian.com>
25097
25098         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
25099
25100 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
25101
25102         * class.c (mono_class_metadata_init): bug fix: compute the right slot
25103
25104 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
25105
25106         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
25107         from Martin Weindel.
25108         * object.h: add mono_string_chars ().
25109
25110 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
25111
25112         * reflection.c (build_compressed_metadata): Eliminates warnings
25113         and uses 64-bit clean code.
25114
25115         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
25116         (mono_type_equal): Change signature to eliminate warnings.
25117
25118 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
25119
25120         * icall.c, loader.c: remove the internalcall array constructors.
25121         Changes to match the new MonoArray structure.
25122         * object.h, object.c: an array object doesn't allocate an extra
25123         vector. Add mono_array_new_full () to create jagged arrays easily.
25124
25125 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
25126
25127         * metadata.h, metadata.c: add mono_metadata_field_info () to
25128         retreive all the info about a field from vairous tables.
25129         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
25130         * class.h, class.c: augment MonoClassField with more info.
25131         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
25132         policy and load a field's RVA if needed.
25133
25134 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
25135
25136         * class.c (mono_class_metadata_init): create a trampoline for all
25137         virtual functions instead of actually compiling them.
25138
25139 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
25140
25141         * class.h, class.c: include name in MonoClassField.
25142         * class.c: fix fundamental type of System.Object and System.String.
25143         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
25144         tokens in ldtoken.
25145         * icall.c: remove internalcalls for the Reflection stuff that is now
25146         done in C# code.
25147         * loader.c: mono_field_from_memberref () implementation.
25148         * mono-endian.c: thinko (s/struct/union/g).
25149         * object.c, object.h: make the mono_string_* prototypes actually use
25150         MonoString instead of MonoObject.
25151         * reflection.c, reflection.h: updates for changes in the reflection
25152         code in corlib: we use C structures that map to the actual C# classes.
25153         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
25154         fat method header if needed and use the info from the ILGenerator for
25155         methods. Handle fields in types. Misc fixes.
25156
25157 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
25158
25159         * class.c (mono_class_metadata_init): bug fix: always allocate
25160         space for static class data
25161
25162 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
25163
25164         * class.c (mono_compute_relative_numbering): use relative
25165         numbering to support fast runtime type checks.
25166
25167 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
25168
25169         * class.c (mono_class_create_from_typeref): added debugging output
25170         to print class name when MonoDummy is returned instead of real class
25171
25172 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
25173
25174         * class.c (mono_class_metadata_init): interface offset table now
25175         contains pointers into the vtable - this is more efficient for the jit
25176
25177 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
25178
25179         * class.c (mono_class_metadata_init): use a temporary vtable (the
25180         old algorithm only worked for the interpreter, but not for the jit)
25181
25182 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
25183
25184         * loader.c (method_from_memberref): use mono_class_get to get the
25185         class of an array instead of using System.Array directly.
25186         (mono_get_method): also add MEMBERREF methods to the method cache
25187         which usefull for arrays.
25188
25189 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
25190
25191         * pedump.c (arch_compile_method): added to compute vtable entry
25192
25193         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
25194         number of interfaces.
25195         
25196         * class.h: merged MonoArrayClass into MonoClass
25197
25198         * class.c (mono_class_create_from_typedef): compute the vtable size and
25199         allocate space to include the vtable inside MonoClass
25200         (mono_class_metadata_init): initialize the vtable
25201
25202 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
25203
25204         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
25205         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
25206         * image.c: endian fixes by Laurent Rioux.
25207         * object.h, object.c: rename MonoStringObject to MonoString and
25208         MonoArrayObject to MonoArray. Change some function names to conform to
25209         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
25210         guint16* as first argument, so don't use char*.
25211         Provide macros to do the interesting things on arrays in a portable way.
25212         * threads-pthread.c: updates for the API changes and #include <sched.h>
25213         (required for sched_yield()).
25214         * icall.c: updates for the API changes above.
25215         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
25216         platforms that need them.
25217
25218 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
25219
25220         * class.c: set the correct type for all the fundamental
25221         type when loading the class.
25222
25223 2001-10-05  Dick Porter  <dick@ximian.com>
25224
25225         * threads-pthread.c (pthread_mutex_timedlock): Simple
25226         compatibility version for C libraries that lack this call.
25227
25228 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
25229
25230         * class.c: MonoTypes stored in MonoClass are stored as
25231         fundamental MonoTypes when the class represents a
25232         fundamental type (System.Int32, ...).
25233         The TypeHandle return by ldtoken is a MonoType*.
25234         * icall.c: ves_icall_get_data_chunk () write out all the
25235         PE/COFF stuff. Implement ves_icall_define_method (),
25236         ves_icall_set_method_body (), ves_icall_type_from_handle ().
25237         * image.c: properly skip unknown streams.
25238         * loader.h, loader.c: add type_class to mono_defaults.
25239         * metadata.c, metadata.h: export compute_size () as
25240         mono_metadata_compute_size () with a better interface.
25241         Typo and C&P fixes.
25242         * pedump.c: don't try to print the entry point RVA if there is no entry point.
25243         * reflection.c, reflection.h: many cleanups, fixes, output method
25244         signatures and headers, typedef and typeref info, compress the metadata
25245         tables, output all the heap streams, cli header etc.
25246         * row-indexes.h: typo fixes.
25247
25248 2001-10-04  Dick Porter  <dick@ximian.com>
25249
25250         * object.h: Add a synchronisation mutex struct to MonoObject
25251
25252         * object.c (mono_new_object): Initialise the object
25253         synchronisation mutexes
25254
25255         * icall.c: System.Threading.Monitor internal calls
25256         
25257         * threads-pthread.h:
25258         * threads-pthread.c: System.Threading.Monitor internal calls
25259
25260         * threads-types.h: New file, includes the system-specific thread
25261         structures
25262         
25263         * threads-pthread-types.h:
25264         * threads-pthread-types.c: New files, handle pthread-specific
25265         synchronisation types
25266
25267         * threads-dummy-types.h: 
25268         * threads-dummy-types.c: New files of dummy support for
25269         thread-specific types
25270
25271         * metadata.c:
25272         * image.c:
25273         * pedump.c: include mono-endian.h not endian.h
25274         
25275         * Makefile.am: More threads files.
25276         Name mono-endian.h not endian.h
25277
25278 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
25279
25280         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
25281         stuff and implement a few more bits.
25282         * icall.c: a field needs to be dereferenced twice. Do not use the same
25283         name for two variables in the same scope.
25284         * image.c, image.h: cleanups.
25285
25286 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
25287
25288         * class.c (mono_class_metadata_init): bug fix: compute the right size
25289
25290 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
25291
25292         * icall.c: implemented some of the Reflection internalcalls.
25293         * image.c, image.h: start writing out the PE/COFF image.
25294         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
25295         that does the reverse than decode_blob_size ().
25296         * object.c: use mono_metadata_encode_value (). Move here
25297         temporary implementation of mono_string_to_utf8 ().
25298         * rawbuffer.c: make malloc_map static.
25299
25300 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
25301
25302         * metadata.c: fix type comparison for arrays.
25303         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
25304         Added a couple of new classes to monodefaults.
25305         * icall.c: added a couple of Reflection-related internalcalls.
25306         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
25307         Added a byval_arg MonoType to MonoClass.
25308
25309 2001-09-28  Dick Porter  <dick@ximian.com>
25310
25311         * icall.c:
25312         * threads-pthread.h: 
25313         * threads-pthread.c: Implemented internal calls for
25314         LocalDataStoreSlot operations.  Applied mutexes around all shared
25315         data.  Reworked the thread creation and Start() operations to
25316         avoid a race condition.
25317         
25318         * threads-dummy.h:
25319         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
25320
25321 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
25322
25323         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
25324
25325 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
25326
25327         * class.c, loader.c: warn and return NULL instead of erroring out.
25328         * icall.c: added System.AppDomain::getCurDomain().
25329         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
25330
25331 2001-09-25  Dick Porter  <dick@ximian.com>
25332
25333         * threads-pthread.h:
25334         * threads-pthread.c: Implemented timed thread joining and added
25335         System.Threading.Thread::Join_internal internal call
25336
25337         * icall.c: Added System.Threading.Thread::Join_internal internal call
25338
25339         * threads-dummy.h:
25340         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
25341
25342 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
25343
25344         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
25345         mono_string_intern () to implement the semantics of the ldstr opcode
25346         and the interning of System.Strings.
25347         * icall.c: provide hooks to make String::IsIntern and String::Intern
25348         internalcalls.
25349
25350 2001-09-23  Dick Porter  <dick@ximian.com>
25351
25352         * threads-dummy.c: 
25353         * threads-dummy.h: New files of dummy threading routines
25354
25355         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
25356         support code based on system specifics
25357
25358         Rename PTHREAD_LIBS to THREAD_LIBS
25359         
25360 2001-09-23  Dick Porter  <dick@ximian.com>
25361
25362         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
25363         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
25364         internal calls.
25365         (mono_thread_init): Set up a Thread object instance to return when
25366         the main thread calls Thread.CurrentThread
25367         (mono_thread_cleanup): Wait for all subthreads to exit
25368
25369         * icall.c: New internal calls for System.Threading.Thread::Sleep
25370         (including Schedule) and CurrentThread
25371
25372         * threads.h: New file, to insulate thread-specific stuff from the
25373         rest of the code
25374
25375 2001-09-21  Dick Porter  <dick@ximian.com>
25376
25377         * threads-pthread.h: 
25378         * threads-pthread.c: New file, for handling pthreads-style
25379         threading support.  Start() now starts a new thread and executes
25380         the ThreadStart delegate instance.
25381
25382         * icall.c: Added the internalcall for
25383         System.Threading.Thread::Start_internal
25384
25385         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
25386
25387 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
25388
25389         * loader.c: work around the different signatures for delegates
25390         constructors csc generates in compiled code vs the ones compiled in mscorlib.
25391
25392 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
25393
25394         * class.h, class.c: add mono_class_get_field_from_name ().
25395         * *: Fix C comments and other ANSI C issues.
25396
25397 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
25398
25399         * endian.h, assembly.c: fix some endianness issues.
25400
25401 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
25402
25403         * loader.h, load.c: add delegate_class to mono_defaults.
25404         Handle runtime provided methods in mono_get_method ().
25405
25406 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
25407
25408         * loader.c (mono_get_method): use pinvoke for internal call
25409
25410         * icall.c: use pinvoke for internal call
25411
25412         * loader.c (method_from_memberref): set the method name
25413
25414 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
25415
25416         * metadata.c: help the compiler generate better code for
25417         mono_class_from_mono_type ().
25418
25419 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
25420
25421         * class.c (mono_class_metadata_init): delayed computing of the
25422         class size to mono_class_metadata_init ()
25423
25424 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
25425
25426         * class.c, class.h: add an interfaces member to MonoClass.
25427         * image.c, image.h: add assembly_name field to MonoImage
25428         from the assembly table.
25429         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
25430
25431 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
25432
25433         * class.c: Handle Array in mono_class_from_mono_type ().
25434         * metadata.c, pedump.c: some endian fixes.
25435
25436 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
25437
25438         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
25439         * metadata.c: fix small problem introduced with the latest commit.
25440
25441 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
25442
25443         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
25444         We don't need a MonoMetadata pointer anymore to compare signatures in
25445         mono_metadata_signature_equal (), update callers.
25446         Reduced memory usage an number of allocations for MonoMethodHeader and
25447         MonoMethodSignature.
25448
25449 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
25450
25451         * metadata.c: added compare for szarray.
25452
25453 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
25454
25455         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
25456         and add a couple more types to it and mono_defaults. Give an hint on
25457         classes that need implementing in our corlib and are referenced
25458         in mscorlib.
25459
25460 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
25461
25462         * class.h, class.c: keep track if a class is also an Enum.
25463         * loader.c: Implement a couple more types for use in libffi
25464         marshalling. Gives better diagnostics when failing to dlopen
25465         a library. Set method->klass for P/Invoke methods, too.
25466
25467 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
25468
25469         * class.c, class.h: add a MonoType this_arg to MonoClass that
25470         represents a pointer to an object of the class' type that
25471         can be used by the interpreter and later the type cache.
25472         Add best guess alignment info for valuetype objects.
25473
25474 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
25475
25476         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
25477         into MonoType: one less level of indirection and allocation and
25478         simplifies quite a bit of code. Added cache for MonoTypes that are
25479         used frequently, so that we don't need to allocate them all the time.
25480
25481 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
25482
25483         * class.c (mono_class_create_from_typedef): System.Enum is also a
25484         value type, although it does not derive from System.ValueType
25485         (maybe a bug in the ms compiler?)
25486
25487         * metadata.c (mono_type_size): return the right size for value types
25488
25489         * loader.c (mono_get_method): only initialize method header if not abstract
25490
25491         * class.c (mono_class_from_mono_type): use mono_default values. 
25492
25493 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
25494
25495         * *: use MonoClass pointers instead of <type_tokens>
25496         
25497         * class.h: new flag: metadata_inited.
25498
25499         * class.c (mono_class_metadata_init): impl.
25500         (mono_class_instance_size): impl.
25501         (mono_class_data_size): impl.
25502
25503 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
25504
25505         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
25506         MonoClass now has the name and name_space fields. 
25507         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
25508         mono_get_method () takes and optional MonoClass as argument.
25509         Removed mono_typedef_from_name() and added mono_class_token_from_name()
25510         instead that takes advantage of a map from class names to typedef
25511         tokens in MonoImage.
25512
25513 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
25514
25515         * metadata.c: zero is not a valid alignment boundary.
25516         Merge MONO_TYPE_VOID in default decoding code.
25517
25518 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
25519
25520         * image.h: merged MonoMetadata into MonoImage
25521
25522         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
25523         identify the type of elements.
25524
25525 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
25526
25527         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
25528         * cil-coff.h: split MonoMSDOSHeader and add size info.
25529         * image.c: add some consistency checks.
25530         * metadata.c: fix row size computation: one programmer
25531         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
25532         add explanation for the locator routine.
25533         Fix decoding of size in method header.
25534         
25535 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
25536
25537         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
25538         (g_concat_dir_and_file): Bring g_concat_dir_and_file
25539         function from gnome-libs.  This uses the right path separator
25540         based on the OS, and also works around a bug in some systems where
25541         a double slash is not allowed. 
25542         (default_assembly_name_resolver): Use g_concat_dir_and_file
25543         (mono_assembly_open): ditto.
25544
25545 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
25546
25547         * metadata.c (mono_metadata_signature_equal): impl.
25548
25549         * *: void is now a realy MonoType (instead of using NULL)
25550         
25551         * metadata.c (do_mono_metadata_parse_type): use
25552         mono_metadata_parse_type to parse void value.
25553
25554 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
25555
25556         * metadata.c, metadata.h: in the signature and method header store
25557         only the space required for holding the loca vars and incoming arguments.
25558
25559 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
25560
25561         * metadata.c (do_mono_metadata_parse_type): treat void like any
25562         other type (instead of assigning NULL);
25563
25564 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
25565
25566         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
25567
25568 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
25569
25570         * image.c (do_mono_image_open): added a cache for arrays.
25571
25572 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
25573
25574         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
25575         decode a single column from a row in a metadata table and changes
25576         to take advantage of it in the typedef locator (gives a nice speed up).
25577         Store offset info for function params.
25578
25579 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
25580
25581         * image.h (MONO_IMAGE_IS_CORLIB): removed 
25582
25583 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
25584
25585         * assembly.c: how could mono_assembly_close () had ever worked?
25586         * metadata.c, metadata.h: provide offset info for local vars.
25587         Implement mono_type_size () to take care of alignment as well
25588         as size (it was mono_field_type_size in cli/class.c before).
25589
25590 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
25591
25592         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
25593
25594         * assembly.h (CORLIB_NAME): set to corlib.dll
25595
25596         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
25597
25598 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
25599
25600         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
25601         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
25602         tokentype.h: massive namespace cleanup.
25603
25604 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
25605
25606         * metadata.h, metadata.c: decode exception clauses when parsing method header.
25607
25608 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
25609
25610         * metadata.c (mono_metadata_free_type): added check for type !=
25611         NULL (void) before calling mono_metadata_free_type()
25612
25613 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
25614
25615         * metadata.h, row_indexes.h: added header with enumerations to use
25616         to index in the columns from tables in metadata and to decode coded
25617         tokens: we should start using this instead of embedding magic numbers
25618         all over the code.
25619
25620 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
25621
25622         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
25623         Move metadata_t info from cli_image_info_t to MonoImage, where
25624         it's easily accessible. Changed all the uses accordingly.
25625         Added the method and class caches to MonoImage.
25626         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
25627         and mono_metadata_decode_value () signature to be more consistent
25628         with the other parse functions (and simplify code). Taken advantage
25629         of zero-length array allocation with GCC. Removed reduntant (and
25630         wrong) MonoFieldType struct and use MonoParam instead. Changed
25631         mono_metadata_parse_field_type () to use common code for parsing.
25632         Added mono_metadata_typedef_from_field () and
25633         mono_metadata_typedef_from_method () to lookup a typedef index from a
25634         field or method token.
25635         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
25636
25637 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
25638
25639         * metadata.c (mono_metadata_parse_field_type): Implement. 
25640         (do_mono_metadata_parse_type): Split engine from
25641         mono_metadata_parse_type, so that we can create smaller structures
25642         for things that just have one pointer to the MonoType (look at
25643         the MonoFieldType)
25644
25645 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
25646
25647         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
25648         as Jan Gray found out, it is incorrect. 
25649
25650 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
25651
25652         * assembly.c: Implement asssembly loading.  This loads an image
25653         and loads all the referenced assemblies.  Come to think of it, we
25654         could always do lazy loading of the assemblies. 
25655
25656         * image.c (mono_image_open): Keep loaded images in a hashtable.
25657
25658         * image.h (MonoImage): Add reference count.
25659
25660 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
25661
25662         * assembly.c (mono_assembly_open): Keep track of the file name in
25663         case the assembly has no ASSEMBLY table.
25664
25665         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
25666         from get.c here.
25667
25668 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
25669
25670         * metadata.c, metadata.h: decode local vars in method header
25671         parse function. Change callers accordingly.
25672
25673 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
25674
25675         * metadata.h, cil-coff.h: protect against multiple inclusion.
25676         Added some new structures to hold information decoded from metadata:
25677         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
25678         and relevant decoding/free functions.
25679         * metadata.c: implement decoding functions. Add warning for out of bounds
25680         index in mono_metadata_locate(). Implement mono_get_method () to retreive
25681         all the info about a method signature and invocation. Remove check on
25682         uninitialized local var in parse_mh() and fix memory leak.
25683
25684 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
25685
25686         * metadata.h: More macros.
25687
25688         * tokentype.h: New file.
25689
25690 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
25691
25692         * assembly.c: added a consistency check and initialize
25693         some structures with g_new0().
25694         * metadata.c: fixed a couple more bugs in table size computation
25695         and add other checks for out-of bound access to metadata.
25696
25697 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
25698
25699         * metatada.c: fix bugs computing table sizes. Spew a
25700         warning when index in string heap is out of bounds.
25701
25702 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
25703
25704         * metadata.h: Add a couple of macros to manipulate tokens. 
25705
25706 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
25707
25708         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
25709         cli_section_tables).
25710
25711 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
25712
25713         * metadata.c (mono_metadata_user_string): New function, provides
25714         access to the UserString heap. 
25715
25716 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
25717
25718         * metadata.c: Add inline documentation.
25719
25720 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
25721
25722         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
25723         files. 
25724
25725 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
25726
25727         * typeattr.h: New file, TypeAttribute flags. 
25728
25729 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
25730
25731         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
25732         mono_assembly_ensure_section): Section loading code.
25733         (load_section_tables): Load the sections.
25734
25735         * mono/metadata/metadata.c (mono_metadata_locate_token,
25736         mono_metadata_locate): Functions to locate the information
25737         definition given a token or a table and an index.
25738         (mono_metadata_compute_table_bases): New.
25739         (compute_size): New function to compute the sizes of the various
25740         tables.
25741
25742         * mono/metadata/metadata.h: Finish listing the different index
25743         types. 
25744
25745         * mono/metadata/pedump.c: Improve to dump new information.
25746
25747 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
25748
25749         * mono/metadata/metadata.c: Entered all the tables matching
25750         Beta2. 
25751
25752         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
25753
25754
25755