2008-07-23 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
1 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
2
3         * verify.c (verify_class_for_overlapping_reference_fields):
4         On some cases, the field size might be zero, guard against that.
5         Fix the explicit layout check to work as expected.
6
7 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
8
9         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
10         mono_thread_resume () during shutdown, since the thread we want to abort
11         might be suspended.
12
13 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
14
15         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
16         warning.
17
18         * debug-mono-symfile.c: Fix a warning.
19
20         * mono-perfcounters.c (get_cpu_times): Fix a warning.
21
22         * object.c (mono_class_vtable): Check if exception_type is set, and return
23         NULL as defined by the function comments.
24
25 2008-07-22  Mark Probst  <mark.probst@gmail.com>
26
27         * mempool.c: Use malloc for every single mempool allocation if the
28         configure option is set.  This makes it easier to track mempool
29         allocations with tools like Valgrind.
30
31 2008-07-22  Jb Evain  <jbevain@novell.com>
32
33         * reflection.c (create_dynamic_mono_image): emit the same
34         metadata version that SL2 does when creating a SL2 image.
35
36 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
37
38         * icall-def.h:
39         * icall.c: New icall System.Enum:get_hashcode. This function
40         avoids the overhead of boxing the enum to the underlying type.
41
42 2008-07-21  Mark Probst  <mark.probst@gmail.com>
43
44         * reflection.c (mono_method_get_object): Don't let static RGCTX
45         invoke wrappers get into MonoReflectionMethods.
46
47 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
48
49         * object-internals.h:
50         * object.c: New mono_runtime_class_init_full function
51         that makes throwing the exception optinal.
52
53         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
54         for the case where the exception object is supplied.
55
56 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
57
58         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
59         old ld versions.
60
61         Contributed under MIT/X11 license.
62
63 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
64
65         * string-icalls.c (ves_icall_System_String_InternalSplit):
66         Optimize array allocation by caching the MonoClass of the
67         array type.
68
69         * icall.c (ves_icall_Type_GetMethodsByName): Same.
70
71         * reflection.c (mono_param_get_objects): Same.
72
73 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
74
75         * icall-def.h:
76         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
77         It inflates the given type using the class context.
78
79 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
80
81         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
82         the vtable if it already exists.
83
84         * object-internals.h: Add mono_class_try_get_vtable as part of the
85         internal API.
86
87         * reflection.c (mono_type_get_object): Use the MonoObject from the
88         vtable when possible. Reduces locking contention on reflection heavy
89         code.
90
91 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
92
93         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
94         g_bit_nth_msf () since that macro is not implemented in eglib.
95
96 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
97
98         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
99         on platforms which do not support it.
100
101 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
102
103         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
104
105 2008-07-11  Martin Baulig  <martin@ximian.com>
106
107         * mono-debug-debugger.h
108         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
109
110         * mono-debug-debugger.c
111         (_mono_debugger_interruption_request): New global volatile variable.
112         (mono_debugger_check_interruption): New public function.
113
114         * threads.c
115         (mono_thread_current_check_pending_interrupt): Call
116         mono_debugger_check_interruption().
117         (mono_thread_interruption_checkpoint_request): Likewise.
118
119 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
120
121         * verify.c: Add more type checks for loaded types. Verify the result
122         handle from ldtoken.
123
124 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
125
126         * loader.c (field_from_memberref): Don't crash if the field
127         wasn't found.
128
129 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
130
131         * verify.c: Verify if type and method instantiations
132         don't have invalid VAR or MVAR arguments.
133
134 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
135
136         * verify.c: Fix double free of function pointer list.
137
138 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
139
140         * object.c (mono_string_to_utf8): Comment the new code as it
141         breaks under eglib.
142
143 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
144
145         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
146
147 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
148
149         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
150           is not throw too many times.
151
152         Code is contributed under MIT/X11 license.
153
154 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
155
156         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
157         debugging is turned off.
158
159 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
160
161         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
162
163 2008-07-04  Mark Probst  <mark.probst@gmail.com>
164
165         * class-internals.h, class.c: Added new generic sharing option:
166         Share only stuff in System.Collections.Generic, which is now the
167         default.
168
169 2008-07-04  Mark Probst  <mark.probst@gmail.com>
170
171         * generic-sharing.c, class-internals.h: New function for getting a
172         generic method in a generic class given the corresponding method
173         for a different instantiation of the class.  Partly refactored
174         from mini-trampolines.c.
175
176         * class.c: Make sure generic methods have a class_inst if they are
177         part of a generic class.
178
179         * metadata.c (mono_type_stack_size_internal): Handle type
180         variables.
181
182 2008-07-04  Mark Probst  <mark.probst@gmail.com>
183
184         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
185         Signifies whether information on the this/vtable/mrgctx variable
186         is available.
187
188 2008-07-04  Mark Probst  <mark.probst@gmail.com>
189
190         * object.c, object-internals.h, icall.c: New function
191         mono_delegate_ctor_with_method(), which does the same as
192         mono_delegate_ctor(), but takes an explicit method argument
193         instead of taking the method from the jit info.
194
195         * marshal.c: When creating a delegate with an inflated method take
196         the "this" argument as the target class for the castclass.
197
198 2008-07-03  Mark Probst  <mark.probst@gmail.com>
199
200         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
201         mono_jit_info_table_find() to perform very badly in some cases.
202
203 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
204
205         * icall.c (type_from_typename): Handle 'string'.
206
207         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
208         wrappers into the wrapper_hash, since the key is not a MonoMethod.
209
210 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
211
212         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
213
214         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
215         number of available managed allocator types.
216
217         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
218         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
219
220 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
221
222         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
223         which is a low level lock protecting just the 'jit_code_hash' hash table.
224
225         * domain.c: Initialize+cleanup jit_code_hash_lock.
226         
227 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
228
229         * coree.c (mono_load_coree): Set coree_module_handle global variable only
230         after initialization.
231
232         * coree.h: Make MonoFixupExe internal.
233
234         Contributed under MIT/X11 license.
235
236 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
237
238         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
239         because that is platform independent. Check NumberOfRvaAndSizes in PE32
240         as well.
241         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
242         image being loaded is a CLI image and _CorValidateImage gets called.
243
244         * coree.h: Add MonoLoadImage.
245
246         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
247         instead of LoadLibrary.
248
249         Contributed under MIT/X11 license.
250
251 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
252
253         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
254         for any primitive type.
255
256 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
257
258         * object.c (mono_array_new_specific): Optimize this and the other allocation
259         functions a bit.
260         
261         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
262         domains too if mono_dont_free_domains is set.
263
264         * domain-internals.h (mono_dont_free_domains): New internal option controlling
265         whenever to free appdomain data after it has been unloaded.
266
267         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
268         
269 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
270
271         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
272         (mono_method_get_equivalent_method): Fix a warning.
273
274         * object.c (mono_message_init): Avoid looking up array types for each call.
275
276 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
277
278         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
279         call.
280
281         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
282         even more.
283
284         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
285         each iteration.
286
287         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
288         fields of an enum.
289
290 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
291
292         * object.c (mono_value_box): Fix boxing of nullables.
293
294 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
295
296         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
297         mono_module_handle that is defined by the linker; no initialization required.
298         * coree.h: Remove mono_module_handle, add __ImageBase, update
299         mono_image_open_from_module_handle.
300         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
301         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
302         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
303         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
304         to 4 GB away from image base address. IA64 version is not tested but was very
305         easy to implement and should work if we ever need it.
306         * domain.c (mono_init_internal): Avoid system error message boxes.
307         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
308         with has_entry_point. Handle do_mono_image_load fauilre correctly.
309         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
310         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
311         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
312
313         Contributed under MIT/X11 license.
314
315 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
316
317         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
318         as part of the private mono API.
319         
320         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
321         Do proper argument checking for methods that belong to generic classes.
322         Do proper type resolution for GMFH/2.
323         Fixes #377324.
324         
325 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
326
327         * verify.c (do_switch): Fix a memory corruption bug with
328         the jump index is out of bound.
329
330 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
331
332         * verify.c: Disable debug code.
333
334 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
335
336         * reflection.c (mono_image_get_methodbuilder_token): Use
337         mono_image_get_methodspec_token_for_generic_method_definition
338         instead of mono_image_get_memberref_token. We cache more memberef
339         entries now.
340
341 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
342
343         * verify.c: Inflate exception clause types.
344         Fixes #402606.
345         
346 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
347
348         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
349         name.
350
351         * reflection.c (mono_image_get_ctorbuilder_token): Same.
352
353         * reflection.c (mono_image_create_method_token): Same.
354
355 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
356
357         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
358         It does the same as mono_image_get_methodref_token but works on
359         MethodBuilder.
360
361         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
362         and always generate a methodspec. This follows the old behavior and fixes
363         the regressions in System.Core. 
364
365 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
366
367         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
368         don't event mono_class_get () succeeds. Fixes #402182.
369
370 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
371
372         * metadata-internals.h: Added MonoDynamicImage::methodspec
373         hashtable to store methodspec tokens created for MethodBuilders.
374
375         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
376         MethodBuilders as open instantiations if a methodspec was requested.
377
378         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
379
380         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
381
382         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
383
384         Fixes bug #349190.
385
386 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
387
388         * loader.c (method_from_methodspec): Avoid crashing if the
389         method lookup fails.
390
391 2008-06-20  Dick Porter  <dick@ximian.com>
392
393         * socket-io.c (get_socket_assembly): Cope with Moonlight network
394         classes being in a different assembly.  Fixes bug 399184.
395
396 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
397
398         * loader.c (mono_loader_init): Make this callable multiple times.
399         (mono_dllmap_insert): Call mono_loader_init () so this works even before
400         the runtime is initialized. Fixes #401755.
401
402 2008-06-19  Dick Porter  <dick@ximian.com>
403
404         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
405         Fixes bug 349688.
406
407 2008-06-19  Dick Porter  <dick@ximian.com>
408
409         * socket-io.c:
410         * icall-def.h: Implement Socket generic Send() and Receive()
411         methods.  Fixes bug 395168.
412
413 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
414
415         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
416
417         Contributed under MIT/X11 license.
418
419 2008-06-18  Martin Baulig  <martin@ximian.com>
420
421         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
422         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
423         set to 80.0.  The debugger <-> runtime interface is now frozen as
424         well.   
425
426         * mono-debug.c
427         (mono_debug_debugger_version): Bump to 4.
428
429 2008-06-18  Martin Baulig  <martin@ximian.com>
430
431         * debug-mono-symfile.c
432         (load_symfile): Don't check the minor version.
433
434         * debug-mono-symfile.h: Bump the version number to 50.0.
435
436 2008-06-18  Martin Baulig  <martin@ximian.com>
437
438         * debug-mono-symfile.c
439         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
440         minimum required version.
441
442 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
443
444         * reflection.c (mono_custom_attrs_from_property): Fix support for
445         retriveving cattrs of dynamic inflated generic types.
446
447         * reflection.c (mono_custom_attrs_from_event): Same.
448
449         * reflection.c (mono_custom_attrs_from_field): Same;
450
451         * reflection.c (typebuilder_setup_events): Same cattrs of events.
452
453         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
454         Moved to metadata.c.
455
456         * metadata.c: New functions to retrive the equivalent field, event
457         of property from the generic type definition.
458
459         * metadata-internals.h: Added new functions from metadata.c.
460
461 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
462
463         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
464         to cached in a mempool is used.
465
466         * metadata.c (free_generic_class): In some situations field generic_info type
467         is not properly dup'ed and leads to double free'ing.
468
469         Fixes #400643.
470
471 2008-06-17  Mark Probst  <mark.probst@gmail.com>
472
473         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
474         this arguments (will be needed later for generic methods).
475         Collect stats.
476
477 2008-06-17  Mark Probst  <mark.probst@gmail.com>
478
479         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
480         Create a static RGCTX invoke wrapper for methods which require it.
481
482 2008-06-17  Mark Probst  <mark.probst@gmail.com>
483
484         * object.c, class-internals.h: New function for checking whether
485         an individual field is special static.
486
487 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
488
489         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
490         linear search since the table is sorted.
491
492         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
493         Fixes #324180.
494
495 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
496
497         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
498         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
499
500         * gc.c (mono_domain_finalize): Allow an infinite timeout.
501
502         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
503         
504         * threads.c (mono_thread_request_interruption): Get rid of locking, use
505         InterlockedCompareExchange to query and modify 
506         thread->interruption_requested.
507
508         * object-internals.h (struct _MonoThread): Change interruption_requested
509         to a gint32 so it can be modified by atomic operations. Add 
510         'critical_region_level' from the managed side, change small_id to a guint32,
511         add new set of 'unused' fields.
512
513         * appdomain.c: Bump corlib version.
514
515 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
516
517         * class.c (mono_class_from_name): Search modules as well. Fixes
518         #322332.
519
520 2008-06-13  Mark Probst  <mark.probst@gmail.com>
521
522         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
523         templates.  Templates are generalized with an additional type_argc
524         argument.  RGCTX templates have type_argc==0, MRGCTX templates
525         have type_argc>0.
526
527         * domain-internals.h, domain.c: New hash table for looking up
528         MRGCTXs.
529
530         * metadata.c, metadata-internals.h: Rename hash and equal
531         functions for MonoGenericInst's and make them public.
532
533         * class-internals.h: New data structures for the MRGCTX.  Macros
534         for distinguishing slots in the RGCTX and the MRGCTX.
535
536 2008-06-13  Mark Probst  <mark.probst@gmail.com>
537
538         * object.c (mono_method_get_imt_slot): Put the same methods of
539         different instantiations of the same generic interface in the same
540         IMT slots, to make generic sharing simpler.
541
542 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
543
544         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
545
546         * metadata.c (mono_metadata_field_info_with_mempool): Added.
547         This function works just like mono_metadata_field_info, but
548         accept a mempool as argument to be used allocating memory.
549
550         * marshal.c (mono_marshal_load_type_info): Use new function
551         to load marshal data into image mempool.
552
553 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
554
555         * class.c (mono_class_inflate_generic_type_with_mempool):
556         This function allows to inflate a generic type using
557         a mempool.
558
559         * class.c (inflate_generic_type): Take a mempool as argument
560         and use it to do type dup'ing.
561
562         * class.c (mono_class_setup_fields): Field type for generic
563         generic classes are allocated from the image mempool.
564
565         * metadata.c (free_generic_class): Inflated field type is
566         now allocated in the image mempool.
567
568 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
569
570         * threads.c (thread_cleanup): Free MonoThread::name.
571
572 2008-06-12  Marek Habersack  <mhabersack@novell.com>
573
574         * appdomain.c (ensure_directory_exists): avoid unnecessary
575         mkdir(2) calls when the shadow directory already exists.
576         (mono_make_shadow_copy): copy also satellite assemblies from the
577         private bin directories.
578
579 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
580
581         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
582         
583         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
584         a page boundary. Fixes #396219.
585
586 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
587
588         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
589         due to double-checked locking.
590
591 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
592
593         * assembly.c (build_assembly_name): Release memory on failure.
594
595         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
596
597 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
598
599         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
600         memory on failure.
601
602 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
603
604         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
605         memory on failure.
606
607 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
608
609         * loader.c (field_from_memberref): Check if field signature type is equal
610         to the non-inflated type of the field. Fixes #398980.
611
612 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
613
614         * assembly.c (mono_assembly_load_from_full): Call 
615         mono_assembly_load_friends () outside the assemblies lock, since it can
616         acquire the loader lock. Fixes #323696.
617
618         * reflection.c (resolve_object): Inflate the inst with the context for
619         FieldOnTypeBuilderInst. Fixes #399010.
620
621 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
622
623         * reflection.c (mono_image_get_field_on_inst_token): Don't
624         inflate the field to encode it's signature. If it's a
625         VAR or MVAR it should stay that way in the signature.
626         Fixes #399047.
627
628 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
629
630         * reflection.c (resolve_object): Release memory of inflated types.
631
632 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
633
634         * loader.c (mono_method_get_signature_full): Remove assert about
635         loading a methodspec to a generic method. We have such methods, such as
636         System.Threading.Interlocked::CompareExchange<T>.
637         This assert was removed since it crashes the verifier when it checks
638         methods calling CompareExchange<T>.
639
640 2008-06-10  Marek Safar  <marek.safar@gmail.com>
641
642         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
643         of Type array and not MonoType.
644
645 2008-06-10  Marek Habersack  <mhabersack@novell.com>
646
647         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
648         <lupus@ximian.com>
649
650 2008-06-10  Martin Baulig  <martin@ximian.com>
651
652         * debug-mono-symfile.h
653         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
654         changes to the file format, but we were generating incorrect
655         source file indices in the line number table due to a bug, which
656         made backtraces report an incorrect source file.
657
658 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
659
660         * mono-debug.c: Moved mono_debug_free_method_jit_info from
661         mini/debug-mini.c to here.
662
663         * mono-debug.c (il_offset_from_address): Free memory from find_method.
664
665         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
666         use it to release structs returned by mono_debug_find_method.
667
668 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
669
670         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
671         since it needs to set method->slot for all interface methods.
672
673 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
674
675         * class-internals.h: Forgot to add.
676
677 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
678
679         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
680
681         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
682         Lookup the custom attributes from property_hash.
683
684         * reflection.c (mono_save_custom_attrs): Save the custom attributes
685         in property_hash. Allocate all data using the image mempool.
686
687         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
688         for dynamic_custom_attrs to checks if the image is dynamic.
689
690 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
691
692         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
693         assemblies array.
694         
695         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
696         runtime functions while holding the domain assemblies lock.
697
698 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
699
700         * verify.c: Reapplied the last bit of the reverted changes.
701
702 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
703
704         * verify.c: Reapplied more of the reverted changes.
705
706 2008-06-09  Martin Baulig  <martin@ximian.com>
707
708         * debug-mono-symfile.c (load_symfile): Check the major version
709         first; if it's wrong, don't print the minor version in the error message.
710
711 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
712
713         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
714         lock instead of the domain lock to avoid deadlocks, since the thread might
715         already hold the loader lock.
716
717         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
718         (mono_thread_attach): Ditto.
719
720         * monitor.c: Use a TLS variable for holding the current thread id instead
721         of calling pthread_self ().
722         (mono_monitor_init_tls): New internal function to initialize the TLS
723         variable.
724         (mono_monitor_try_enter_internal): Put the owner == id check after the
725         owner == 0 check.
726
727         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
728         missed optimizations when using gcc-4.3.
729
730 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
731
732         * reflection.c (mono_dynamic_image_free): Free the memory
733         used by MonoGenericParam in MonoDynamicImage::gen_param.
734
735         * reflection.c (mono_reflection_setup_generic_class): Allocate
736         container from mempool.
737
738         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
739         container from mempool.
740
741 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
742
743         * threads.c (mono_set_pending_exception): New internal function to set the
744         pending exception of the current thread.
745         (mono_thread_get_and_clear_pending_exception): Check for 
746         thread->pending_exception as well.
747
748         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
749
750         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
751         it can trigger a collection.
752
753 2008-06-06  Martin Baulig  <martin@ximian.com>
754
755         Merged the `debugger-kahalo' branch.
756
757         * mono-debug.h
758         (MONO_DEBUGGER_VERSION): Bumped to 72.
759
760         * debug-mono-symfile.h
761         (MonoSymbolFileMethodIndexEntry): Removed.
762         (MonoSymbolFileMethodEntry): New public typedef.
763         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
764         (MonoSymbolFileSourceEntry): Remove everything except `index' and
765         `data_offset'.
766         (MonoSymbolFileMethodEntry): Removed.
767         (MonoSymbolFileLexicalBlockEntry): Removed.
768         (MonoSymbolFileLineNumberEntry): Removed.
769         (MonoDebugLexicalBlockEntry): Removed.
770         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
771         removed `num_il_offsets' and `il_offsets'.
772         (MonoSymbolFile): Replace `version' with `major_version' and
773         `minor_version'.
774         (MONO_SYMBOL_FILE_VERSION): Replace with
775         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
776         `MONO_SYMBOL_FILE_MINOR_VERSION'.
777
778         * debug-mono-symfile.c
779         (mono_debug_symfile_lookup_location): Add support for the new line
780         number table format.
781
782 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
783
784         * metadata.c (free_generic_class): Release the inflated
785         MonoClass of dynamic generic classes if it's not a generic
786         type definition.
787
788 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
789
790         * verify.c: Reapplied more of the reverted changes.
791
792 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
793
794         * reflection.c (lookup_custom_attr): Clean the cached flag or
795         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
796         for SRE types.
797
798 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
799
800         * verify.c: Reapplied a small part of the reverted changes.
801
802 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
803
804         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
805
806         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
807         previously in managed code.
808         (mono_monitor_exit): Ditto.
809         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
810
811         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
812         the managed definition.
813
814 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
815
816         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
817
818 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
819
820         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
821         
822         * monitor.c: Add some micro optimizations.
823
824         * icall.c (type_from_typename): Handle 'bool'.
825
826 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
827
828         * verify.c: Implement constructor verification per P III 1.8.1.4.
829         Fixes #396716.
830
831 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
832
833         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
834         holding the assemblies lock here too.
835
836 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
837
838         * verify.c: Kill stack_top function.
839
840 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
841
842         * verify.c: Kill stack_get function.
843
844 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
845
846         * verify.c (mono_method_verify): Last change broke the build. Fixed.
847
848 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
849
850         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
851         more reliable.
852
853         * verify.c (mono_method_verify): Inflate params and locals to avoid
854         mismatch when checking for compatibility.
855
856 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
857
858         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
859         Length prefix should be size in bytes. Fix bug #339530.
860         
861         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
862         Length prefix should be size in bytes. Fix bug #339530.
863
864         Code is contributed under MIT/X11 license.
865
866 2008-06-05  Bill Holmes <billholmes54@gmail.com>
867
868         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
869
870         Contributed under MIT/X11 license.
871
872 2008-06-05  Martin Baulig  <martin@ximian.com>
873
874         * mono-debug-debugger.c
875         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
876
877 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
878
879         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
880         while holding the assemblies lock to prevent deadlocks. Handle the case
881         where the search hook returns NULL but the assembly was still loaded.
882         Fixes #323696.
883
884         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
885         modify domain state.
886
887 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
888
889         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
890         * Makefile.am (pedump_LDADD): Post-process object files and
891         add dtrace-generated object file, if necessary.
892
893         Code is contributed under MIT/X11 license.
894
895 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
896
897         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
898
899 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
900
901         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
902
903 2008-06-04  Mark Probst  <mark.probst@gmail.com>
904
905         * threads.c: Try to free everything from the delayed free table
906         when shutting down threads, and set the variable to NULL after the
907         table is freed so that calling
908         mono_thread_hazardous_try_free_all() when shutting down the root
909         domain doesn't crash.
910
911 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
912
913         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
914         the caller if resulting type was inflated.
915
916         * class.c (mono_class_create_from_typespec): Free the MonoType if it
917         was inflated.
918
919         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
920
921
922 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
923
924         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
925         class library tests.
926
927         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
928         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
929         #396989.
930
931 2008-06-04  Mark Probst  <mark.probst@gmail.com>
932
933         * domain.c, domain-internals.h: The JIT infos are now freed by the
934         JIT info table code.  They are freed immediately if there only a
935         single JIT info table in circulation.  If there is more, the free
936         is delayed via a queue.
937
938         * threads.c, threads-types.h: New hazard pointer function for
939         freeing all freeable delayed items in one sitting.
940
941 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
942
943         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
944
945         * reflection.c (typebuilder_setup_properties): Same.
946
947         * reflection.c (typebuilder_setup_events): Same.
948
949 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
950
951         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
952         and use it for allocating memory.
953
954         * reflection.c (mono_marshal_spec_from_builder): Same.
955
956         * reflection.c: Change code to use new signatures.
957
958         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
959
960 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
961
962         * decimal.c (rescale128): Put back one line which was accidently commented
963         out.
964         
965         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
966         to cause crashes.
967
968 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
969
970         * reflection.c (mono_reflection_generic_class_initialize): Name must
971         be always malloc'ed so we can free it later on. Do this for field, property
972         and event.
973
974         * metadata.c (free_generic_class): Free field, property and event names.
975
976 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
977
978         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
979         instead of g_memdup.
980
981         * reflection.c (typebuilder_setup_fields): Same.
982
983 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
984
985         * decimal.c (rescale128): Optimize this function a bit more.
986
987 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
988
989         * metadata.c (free_generic_class): Release some memory from
990         SRE generic classes.
991
992 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
993
994         * reflection.c (mono_image_get_generic_field_token): No reference
995         to name is kept, free it.
996
997         * reflection.c (mono_reflection_generic_class_initialize): Free
998         more memory of the inflated field.
999
1000 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
1001
1002         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
1003         code.
1004
1005 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
1006
1007         * reflection.c (mono_dynamic_image_free): Release memory used by
1008         MonoDynamicImage::array_methods elements.
1009
1010         * reflection.c (assembly_add_win32_resources): Release memory after
1011         encoding.
1012
1013 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
1014
1015         * decimal.c (log2_32): Use an optimized version for this function too.
1016         
1017         * decimal.c (log2_64): Fix this on 32 bit machines.
1018
1019 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
1020
1021         * class.c (mono_dup_array_type): Implement allocation using a mempool.
1022
1023         * class.c (mono_metadata_signature_deep_dup): Same.
1024
1025         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
1026         a mempool.
1027
1028         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
1029
1030         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
1031
1032         * metadata-internals.h: Added mono_metadata_signature_dup_full.
1033
1034         * class-internals.h: Update signatures to take a MonoMemPool.
1035
1036 2008-06-02  Dick Porter  <dick@ximian.com>
1037
1038         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
1039         * icall-def.h: Add
1040         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
1041         FormatMessage API to get the error text.  Fixes bug 321827.
1042
1043 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
1044
1045         * decimal.c: Add some micro optimizations to make decimal operations faster.
1046
1047 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
1048
1049         * reflection.c (method_encode_clauses): Take a mempool
1050         as parameter and use it to allocate the clause array.
1051
1052         * reflection.c (mono_image_get_field_on_inst_token): Free
1053         the inflated type after encoding it.
1054
1055         * reflection.c (mono_dynamic_image_free): Free each element
1056         of MonoDynamicImage::gen_params.
1057
1058         * reflection.c (reflection_methodbuilder_to_mono_method):
1059         Allocate the generic param array from the mempool.
1060         Allocate signature params from the mempool.
1061
1062         * reflection.c (mono_reflection_generic_class_initialize):
1063         Free inflated fields after been used.
1064
1065 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
1066
1067         * icall.c: Reapply the memory leak fixes as they no
1068         longer make mono crash.
1069
1070 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
1071
1072         * reflection.c (mono_type_get_object): Don't store the suplied
1073         MonoType with type_hash. A caller which pass a type that
1074         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
1075         might end with a pointer to freed memory.
1076         The solution is to use byval_arg or this_arg from the associated
1077         MonoClass of the supplied type.
1078
1079 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
1080
1081         * icall.c: Revert the rest of the last change as it breaks the build too.
1082
1083 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
1084
1085         * icall.c: Revert a leak fix as it's breaking the build.
1086
1087 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
1088
1089         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
1090
1091 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
1092
1093         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
1094
1095 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
1096
1097         * icall.c: Fix some memory leaks.
1098
1099 2008-05-29  Dick Porter  <dick@ximian.com>
1100
1101         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
1102         async socket operations from the pending list when a socket
1103         closes.  Leaving it until the threadpool services the event
1104         exposes a race condition when a socket descriptor is reused.
1105         Fixes bug 377589.
1106
1107 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
1108
1109         * object.c: Fix negative index check for array alocation.
1110
1111 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
1112
1113         * icall.c, marshal.c: Delegate wrappers should skip visibility.
1114         This check is performed by the verifier for IL created delegates
1115         and by Delegate::CreateDelegate for programatically created ones.
1116         Fixes #372406.
1117
1118 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
1119
1120         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
1121         Fix code to use mono_array_size_t instead of int.
1122
1123         Based on patch by Luis F. Ortiz.
1124         Contributed under X11 license.
1125         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
1126
1127 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
1128
1129         * icall.c: Added ves_icall_System_Array_GetLongLength and
1130         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
1131         arrays.
1132
1133         * icall.h: Export both new functions.
1134
1135         Based on patch by Luis F. Ortiz.
1136         Contributed under X11 license.
1137         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
1138
1139 2008-05-28  Martin Baulig  <martin@ximian.com>
1140
1141         The debugger now requires exactly r103463.
1142
1143         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
1144         This version is not supported by the debugger, wait for 72.
1145
1146 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
1147
1148         * object.h: Changed array related functions to use
1149         mono_array_size_t instead of guint32. Forgot to commit this file.
1150
1151         Patch by Luis F. Ortiz.
1152         Contributed under X11 license.
1153         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
1154
1155
1156 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
1157
1158         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
1159         don't define it. Use the number literal instead.
1160
1161 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
1162
1163         * icall.c: Changed array related functions to use
1164         mono_array_size_t instead of guint32.
1165
1166         * icall.c (ves_icall_System_Array_GetLength): Check for length
1167         overflow under MONO_BIG_ARRAYS.
1168
1169         Based on patch by Luis F. Ortiz.
1170         Contributed under X11 license.
1171         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
1172
1173 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
1174
1175         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
1176
1177         Based on patch by Luis F. Ortiz.
1178         Contributed under X11 license.
1179         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
1180
1181 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
1182
1183         * object.c, object.h: Changed array related functions to use
1184         mono_array_size_t instead of guint32.
1185
1186         Patch by Luis F. Ortiz.
1187         Contributed under X11 license.
1188         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
1189
1190 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
1191
1192         * object.h: Introduced mono_array_size_t typedef. This must be used
1193         in all places an array length is expected. This is 64bits wide if
1194         MONO_BIG_ARRAYS is enabled.
1195
1196         Patch by Luis F. Ortiz.
1197         Contributed under X11 license.
1198         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
1199
1200 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
1201
1202         * security-manager.c class.c: Set the class exception info by calling
1203         mono_class_set_failure ().
1204
1205         * class.c (mono_class_get_exception_data): New accessor function.
1206         (mono_class_set_failure): Store exception_data in the property hash.
1207
1208         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
1209         the struct as a property.
1210
1211         * loader.c (mono_get_method_full): Store the lookup result for method
1212         tokens in method_cache, the others in methodref_cache to decrease the memory
1213         usage of hash tables.
1214
1215         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
1216         (mono_image_init): method_cache is lazy inited now.
1217
1218         * metadata-internals.h (struct _MonoImage): Change method_cache to
1219         a MonoValueHashTable, add a separate methodref_cache.
1220
1221 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
1222
1223         * number-formatter.h: Fix tables to avoid arithemtic overflow in
1224           Double.ToString as exposed by Bug #383531.
1225
1226 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
1227
1228         * number-formatter.h: Make some tables static.
1229
1230         * class.c (mono_method_set_generic_container): New accessor function.
1231         (mono_method_get_generic_container): Ditto.
1232
1233         * class-internals.h (struct _MonoMethod): Remove rarely used 
1234         'generic_container' field, store it in the property hash instead. Add 
1235         'is_generic' boolean field instead.
1236
1237         * image.c (mono_image_init): Initialize property_hash.
1238         (mono_image_close): Destroy property_hash.
1239
1240         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
1241         hold rarely used fields of runtime structures belonging to this image.
1242
1243         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
1244         to get/set method->generic_container.
1245
1246         * loader.c (mono_get_method_from_token): Avoid loading the method header for
1247         generic methods.
1248
1249 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
1250
1251         * class.c (mono_class_inflate_generic_method_full): Don't increase
1252         mono_stats.inflated_method_count for methods found in the cache.
1253
1254         * threads.c (mono_thread_request_interruption): Add a comment about 
1255         QueueUserAPC ().
1256
1257 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
1258
1259         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
1260         interface_offsets_packed table.
1261         
1262         * class.c (mono_class_init): Remove some dead code.
1263
1264         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
1265         mono_class_setup_vtable () when CAS is active to detect security problems.
1266
1267 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
1268
1269         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
1270
1271         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
1272         parameters as it's irrelevant for delegate checking.
1273
1274 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
1275
1276         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
1277
1278         * class.c (mono_class_init): Control the creation of a generic vtable using
1279         a global which is true by default, but set to false by the runtime startup code.
1280         
1281         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
1282         Disabled for now since it breaks the embedding API.
1283         Move the setup of class->methods for arrays to mono_class_setup_methods ().
1284         (mono_class_setup_methods): Add a memory barrier.
1285
1286         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
1287         when mono_class_init () doesn't compute the generic vtable.
1288         
1289 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
1290         * profiler.c: Added mono_profiler_install_statistical_call_chain,
1291         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
1292         to support call chains (backtrace) in the stat profiler.
1293         * profiler.c, profiler-private.h: Likewise.
1294
1295 2008-05-22  Mark Probst  <mark.probst@gmail.com>
1296
1297         * generic-sharing.c: Init generic class when a method of it is
1298         requested via a runtime generic context.
1299
1300 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
1301
1302         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
1303
1304         * reflection.c (mono_type_get_object): Add a FIXME.
1305
1306         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
1307
1308         * class.c (mono_class_get_method_by_index): New helper function, returning an
1309         entry in the class->methods array.
1310
1311 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
1312
1313         * class.c (mono_class_init): Only do the array optimization for szarrays. 
1314         Avoid creating a generic vtable for generic instances as well.
1315         (mono_class_get_method_from_name_flags): Don't search in the metadata for
1316         generic instances.
1317
1318 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
1319
1320         * loader.c (mono_get_method_constrained): Inflate the signature
1321         with class context. Fix #325283.
1322
1323 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
1324
1325         * object.c (mono_class_create_runtime_vtable): Add a comment.
1326
1327         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
1328         where needed.
1329         (setup_interface_offsets): Handle the case when this is called twice for arrays.
1330         (mono_class_setup_vtable_general): Add an assert.
1331         (mono_class_init): Avoid creating a generic vtable for arrays.
1332
1333         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
1334         here, let mono_class_init () do that.
1335
1336         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
1337         interfaces in mscorlib.
1338
1339         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
1340         interfaces. Add some comments.
1341         (mono_class_init): Call mono_class_setup_methods () here since it is no
1342         longer called by mono_class_setup_vtable ().
1343
1344         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
1345         not set in class->vtable.
1346         (mono_class_create_runtime_vtable): Reenable the disabled code.
1347
1348         * object.c (mono_class_create_runtime_vtable): Disable the last change for
1349         now as it causes some test failures.
1350
1351         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
1352         if using the vtable trampoline. Also remove some strange code which put the
1353         generic methods themselves into the vtable slots. Remove the AOT init_vtable
1354         stuff as it is no longer needed.
1355
1356 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
1357
1358         * pedump.c: Give make --verify all option check code as well.
1359         Using --verify code won't check for metadata now.
1360
1361 2008-05-19  Martin Baulig  <martin@ximian.com>
1362
1363         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
1364
1365         * mono-debug.c
1366         (_mono_debug_using_mono_debugger): New global variable; it's set
1367         directly by the debugger, so mono_debug_using_mono_debugger() also
1368         works after attaching.
1369
1370 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
1371
1372         * object.c (mono_class_create_runtime_vtable): Use memory barriers
1373         as we do double checked locking on MonoClass::runtime_info and
1374         MonoClassRuntimeInfo::domain_vtables.
1375
1376 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
1377
1378         * debug-helpers.c (print_field_value): Fix a warning.
1379
1380 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
1381
1382         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
1383         set in the AOT case.
1384
1385 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
1386
1387         * class.c (mono_class_setup_vtable_general): Use memory barriers
1388         as we do double checked locking on MonoClass::vtable.
1389
1390 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
1391
1392         * reflection.c (resolve_object): Inflate only if the generic context
1393         is not null. Fixes #389886.
1394
1395 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
1396
1397         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
1398         instead of g_free.
1399
1400         Code is contributed under MIT/X11 license.
1401
1402 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
1403
1404         * class.c: Revert unrelated change.
1405
1406 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
1407
1408         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
1409         a generic instantiation, use mono_class_from_mono_type instead of playing
1410         with MonoType directly.
1411
1412 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
1413
1414         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
1415         checks must ignore generic instantiations, so mono_class_has_parent is not
1416         suitable. Fixes #390128.
1417
1418 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
1419
1420         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
1421         it to avoid registering tokens during metadata generation. Fixes #390023.
1422
1423 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
1424
1425         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
1426         consistent.
1427
1428         Contributed under MIT/X11 license.
1429
1430 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
1431
1432         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
1433         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
1434         to fixup the EXE image.
1435         (mono_cleanup): Use mono_close_exe_image.
1436         (mono_close_exe_image): New function.
1437         * image.c: Include "marshal.h".
1438         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
1439         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
1440         counting when the image is loaded outside of mono_image_open_full. Set status
1441         based on GetLastError.
1442         * coree.c: Include required headers. Add init_from_coree.
1443         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
1444         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
1445         (_CorExeMain): Set init_from_coree.
1446         (CorExitProcess): Only call ExitProcess for now.
1447         (CorBindToRuntimeEx): New stub implementation.
1448         (CorBindToRuntime): New function.
1449         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
1450         (MonoFixupExe): ILONLY executables require no fixups.
1451         (mono_set_act_ctx): New function to set activation context.
1452         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
1453         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
1454         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
1455         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
1456         as MONO_INTERNAL.
1457         * domain-internals.h: Add mono_close_exe_image.
1458
1459         Contributed under MIT/X11 license.
1460
1461 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
1462
1463         * metadata.c (mono_metadata_compute_size): Correctly calculate field
1464         size for generic param and event tables. Fixes #388977.
1465
1466 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
1467
1468         * loader.c (mono_method_signature): Use memory barriers because of the double
1469         checked locking pattern.
1470
1471         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
1472         aborting or aborted as well. Fixes #376391.
1473         
1474         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
1475         existing runtime state in the Suspend handler during shutdown.
1476
1477 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
1478
1479         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
1480
1481         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
1482         which are starting up or shutting down.
1483
1484         * threads.c (mono_threads_set_shutting_down): Don't return a value since
1485         this function never returns if the runtime is already shutting down.
1486
1487         * icall.c (ves_icall_System_Environment_Exit): Update after 
1488         mono_threads_set_shutting_down () signature change.
1489         
1490 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
1491
1492         * class.c: Added can_access_instantiation to verify if the instantiation
1493         is visible. Fix access check for nested types as they returned TRUE
1494         before doing type and generic instantiation visibility checks.
1495
1496 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
1497
1498         * reflection.c (mono_reflection_create_generic_class): The created type
1499         must have a different container from its TypeBuilder. Otherwise they
1500         will end sharing generic arguments, which is wrong.
1501
1502         Due to the sharing, making a generic instance of the created type using
1503         the TypeBuider generic arguments resulted in the generic type definition
1504         been returned, which is wrong as well.
1505
1506         As a bonus the code was leaking the type_params array. This memory should
1507         be allocated from the image mempool.
1508
1509         This fixes bug #354047.
1510
1511 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
1512
1513         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
1514         to here         as they are now used in assembly.c new code.
1515         Added a skipverification flag to MonoAssembly.
1516         New internal function mono_assembly_has_skip_verification.
1517
1518         * assembly.c: New function mono_assembly_has_skip_verification. It checks
1519         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
1520         part of #387274.
1521
1522 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
1523
1524         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
1525         needed. Fixes #387034.
1526
1527         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
1528
1529 2008-05-06  Miguel de Icaza  <miguel@novell.com>
1530
1531         * assembly.c (mono_assembly_load_reference): Prevent crash while
1532         disassembling Silverlight 2.0 executables while we still do not
1533         have GACed libraries.
1534
1535 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
1536
1537         * reflection.c: Special case generic type definitions as well. Fixes #383444.
1538
1539 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
1540
1541         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
1542         of the dynamic case. Fixes #387404.
1543
1544 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
1545
1546         *verify.c (mono_verifier_is_class_full_trust): If under
1547         verify_all and the verifier mode was not set, only
1548         gac and corlib types are fulltrust. This makes --verify-all
1549         usable to detect unverifiable code, which is the expected
1550         use case.
1551
1552 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
1553
1554         * verify.h: Ops, commited the header with debug
1555         enabled.
1556
1557 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
1558
1559         * verify.c (merge_stack): Use the new value on unverifiable
1560         stack merges.
1561
1562         * verify.c (verify_type_compatibility_full): Comparison
1563         of nullable types can't use mono_class_is_assignable_from.
1564
1565         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
1566         that makes all verification errors be reported.
1567
1568         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
1569         mono_method_verify.
1570
1571 2008-05-05  Robert Jordan  <robertj@gmx.net>
1572
1573         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
1574         support for value types. See #386415.
1575
1576         * object.c: comments.
1577
1578         Code is contributed under MIT/X11 license.
1579
1580 2008-05-05  Martin Baulig  <martin@ximian.com>
1581
1582         * debug-mono-symfile.h
1583         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
1584         for old pre-terrania symbol files.
1585
1586 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
1587
1588         * mono-config.c: Add ppc64 architecture.
1589
1590         Code is contributed under MIT/X11 license.
1591
1592 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
1593
1594         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
1595           PPC64 uses function descriptors as well.
1596
1597         Code is contributed under MIT/X11 license.
1598
1599 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
1600
1601         * object.c (compute_class_bitmap): Ignore literal static fields.
1602
1603         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
1604         var has an invalid format.
1605         (describe_ptr): Add some sanity checks for the vtable.
1606         (add_nursery_frag): Clear unused nursery fragments.
1607         (major_collection): Clear all remaining nursery fragments.
1608
1609 2008-05-03  Robert Jordan  <robertj@gmx.net>
1610
1611         * image.c, metadata-internals.h: add thunk_invoke_cache.
1612
1613         * marshal.c, marshal.h: implement
1614         mono_marshal_get_thunk_invoke_wrapper ().
1615
1616         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
1617
1618         Code is contributed under MIT/X11 license.
1619
1620 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
1621
1622         * verify.c (do_leave): Empty the stack.
1623
1624 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
1625
1626         * class.c (mono_class_is_assignable_from): Variance
1627         doesn't work between reference and value types. For example,
1628         given type C<T+>, C<int32> is not assignable to C<object>.
1629         Break the argument checking loop on first error. 
1630
1631 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
1632
1633         * icall.c : base64_to_byte_array() needs some more strict
1634           check for sequence of '=' characters. Patch by Santa
1635           Marta (http://deee.g.hatena.ne.jp/santamarta).
1636
1637           Contributed under MIT/X11 license.
1638           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
1639
1640 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
1641
1642         * domain.c: Disable LoadLibrary support to fix Win32 build.
1643
1644         Code is contributed under MIT/X11 license.
1645
1646 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
1647
1648         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
1649         to help with cache behaviour.
1650
1651 2008-05-01  Miguel de Icaza  <miguel@novell.com>
1652
1653         * appdomain.c (mono_domain_from_appdomain): Add new accessor
1654         method. 
1655
1656 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
1657
1658         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
1659
1660 2008-05-01  Dick Porter  <dick@ximian.com>
1661
1662         * process.c (process_get_fileversion): Only pass 16 bits of
1663         language ID to VerLanguageName.  Fixes bug 381204.
1664
1665 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
1666
1667         * verify.c (mono_method_verify): Fix the comparison
1668         operator for code bounds check.
1669
1670 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
1671
1672         * verify.c (mono_method_verify): Check the bounds of
1673         all access of the code array.
1674
1675 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
1676
1677         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
1678
1679 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
1680
1681         * image.c (mono_image_strong_name_position): Fix return value when the rva is
1682         not valid.
1683
1684 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
1685
1686         * loader.c (mono_get_method_from_token, mono_method_signature): Add
1687         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
1688         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
1689         fixup main EXE images when using mono.exe for mixed-mode assembly support.
1690         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
1691         mono_runtime_load.
1692         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
1693         runtime initialization from metadata.
1694         * assembly.c: Remove obsolete ceGetModuleFileNameA.
1695         (mono_set_rootdir): Use mono_get_module_file_name.
1696         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
1697         handles.
1698         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
1699         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
1700         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
1701         MonoCLIImageInfo. Add support for module handles.
1702         (load_cli_header): Update mono_cli_rva_image_map signature.
1703         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
1704         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
1705         (mono_image_rva_map): Add support for module handles.
1706         (mono_image_ensure_section_idx): Add support for module handles.
1707         (mono_image_close): Add support for module handles.
1708         (do_load_header): Add support for module handles.
1709         (mono_image_open_from_module_handle): New function for internal use.
1710         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
1711         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
1712         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
1713         handles.
1714         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
1715         * image.h: Add mono_image_fixup_vtable.
1716         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
1717         support.
1718         * coree.h: New file.
1719         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
1720         unsupported native code.
1721         (mono_marshal_set_callconv_from_modopt): New function splitted from
1722         mono_marshal_get_managed_wrapper.
1723         (mono_marshal_get_managed_wrapper): Use
1724         mono_marshal_set_callconv_from_modopt.
1725         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
1726         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
1727         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
1728         that results in a deadlock when the runtime is loaded in _CorDllMain.
1729         * Makefile.am: Add coree.c and coree.h.
1730
1731         Contributed under MIT/X11 license.
1732
1733 2008-04-28  Mark Probst  <mark.probst@gmail.com>
1734
1735         * generic-sharing.c: Search for type arguments in array element
1736         types as well.
1737
1738 2008-04-28  Mark Probst  <mark.probst@gmail.com>
1739
1740         * class-internals.h, generic-sharing.c: New, small runtime generic context.
1741
1742         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
1743
1744         * object.c: Don't setup the RGCTX when the vtable is created,
1745         because we're setting it up lazily now.
1746
1747 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
1748
1749         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
1750         64 bit support.
1751
1752 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
1753
1754         * verify.c (verify_class_for_overlapping_reference_fields): 
1755         If class is under fulltrust allow reference types to overllap
1756         if they have the same RVA.
1757
1758 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
1759
1760         * pedump.c: Added new flag valid-only, that makes the verifier
1761         behaves just like --security=validil. It won't fail type load
1762         due to unverifiable restrictions.
1763
1764 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
1765
1766         * class-internals.h (struct MonoMethod): Added a verification_success
1767         field to cache verifier executions. Reduced MonoMethod:slot size by
1768         one bit.
1769
1770 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
1771
1772         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
1773         instead of a 'vt' argument to save an indirection and to allow these to be used
1774         for valuetypes.
1775         (scan_vtype): New helper function to scan an area using a gc descriptor.
1776         (mono_gc_wbarrier_value_copy): Implement this.
1777         (handle_remset): Add support for REMSET_VTYPE.
1778         (find_in_remset_loc): Ditto.
1779         (mono_gc_base_init): Allow some debugging options to be controlled through the
1780         use of the MONO_GC_DEBUG env variable.
1781         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
1782         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
1783
1784 2008-04-23  Martin Baulig  <martin@ximian.com>
1785
1786         * domain.c (mono_domain_create): Move the call to
1787         mono_debug_domain_create() down, after allocating the domain id.
1788
1789 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
1790
1791         verify.c (verify_class_for_overlapping_reference_fields): Skip
1792         static fields while verifying for overlapping fields as they
1793         don't matter at all.
1794
1795 2008-04-23  Marek Habersack  <mhabersack@novell.com>
1796
1797         * domain-internals.h: added a declaration of
1798         mono_make_shadow_copy.
1799
1800         * assembly.c (mono_assembly_open_full): shadow copying of
1801         assemblies moved to here, so that all the assemblies within the
1802         application domain's private binary directories can be
1803         processed. Fixes bug #380546
1804
1805         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
1806         mono_make_shadow_copy and made non-static. The decision whether
1807         to shadow-copy an assembly is made based on its location - it's
1808         copied if it's in one of the private application domain binary
1809         directories and its different to the target file in the shadow
1810         directory. Fixes bug #380546
1811
1812 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
1813
1814         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
1815
1816         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
1817         types.
1818
1819         * reflection.c (mono_image_create_token): Handle 
1820         Method/ConstructorOnTypeBuilderInst.
1821         (resolve_object): Ditto.
1822         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
1823         so it can be called from resolve_object. Also handle the case when the inflated
1824         class already has its methods setup.
1825
1826 2008-04-21  Martin Baulig  <martin@ximian.com>
1827
1828         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
1829
1830 2008-04-20  Geoff Norton  <gnorton@novell.com>
1831
1832         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
1833         pointer dereference.
1834
1835 2008-04-15  Marek Habersack  <mhabersack@novell.com>
1836
1837         * appdomain.c (try_load_from): if IOMAP is in effect, call the
1838         portability API to look up the assembly file. Fixes behavior in
1839         situations when the application has a bin/ directory, but the
1840         assembly search patch refers to Bin/ (and thus the requested file
1841         name is Bin/SomeLibrary.dll). Fixes bug #379888
1842
1843 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1844
1845         verify.c (mono_type_is_generic_argument): Extracted this check
1846         from a dozen places to here.
1847
1848         verify.c: Fixed all issues related to boxing generic arguments
1849         and their constraints.
1850
1851 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
1852
1853         verify.c (mono_class_interface_implements_interface): Fix win32 build.
1854
1855 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
1856
1857         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
1858         isn't finished yet. Fixes #363447.
1859
1860 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
1861
1862         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
1863         Fixes #346419.
1864
1865 2008-04-13  Jb Evain  <jbevain@novell.com>
1866
1867         * domain.c: update the 2.1 profile versions.
1868         Merged from the Moonlight 2 branch.
1869
1870 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
1871
1872         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
1873         mscorlibs for the non-refonly case as well.
1874
1875         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
1876         in mono_assembly_load_from_full (). Fixes #378924.
1877
1878 2008-04-11  Geoff Norton  <gnorton@novell.com>
1879
1880         * icall.c: The global extern environ doesn't exist on Mac.  We
1881         need to call NSGetEnviron instead.
1882
1883 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
1884
1885         verify.c: Add generic method constraint verification.
1886
1887 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
1888
1889         class.c (mono_class_inflate_generic_method_full): Add a long
1890         explanation to the is_mb_open hack. Remove the FIXME.
1891
1892 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
1893
1894         * verify.c (mono_method_verify): Mark all unknown opcodes
1895         as invalid. Mark jmp as unverifiable.
1896
1897 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
1898
1899         * verify.c: Add code to do type constraint verification on class instances.
1900
1901         * verify.c (mono_verifier_verify_class): Use the type constraint 
1902         verification code.
1903
1904 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
1905
1906         * class.c (mono_class_get_field_default_value): Don't pass cindex
1907         as hint to mono_metadata_get_constant_index. The local is not initialized
1908         and should contain garbage most of the time. This could only work
1909         with a lot of luck.
1910
1911 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1912
1913         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
1914
1915 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1916
1917         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
1918
1919         * class.c (mono_class_from_generic_parameter): Save the token of the
1920         generic param in MonoClass::sizes.generic_param_token.
1921
1922         * reflection.c (mono_custom_attrs_from_class): If the class type is
1923         VAR or MVAR retrieve the attributes of the generic param.
1924
1925 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
1926
1927         * class.c (mono_class_init): Do class verification if the verifier
1928         is enabled.
1929
1930 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
1931
1932         * verify-internal.h: Added mono_verifier_verify_class.
1933
1934         * verify.c: Added mono_verifier_verify_class. It checks for
1935         classes with explicit layout that have overlapping reference fields.
1936
1937         * pedump.c: Init the verifier state prior to verification. Fixed
1938         command line arguments.
1939
1940 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
1941
1942         * Makefile.am: Added verify-internals.h, hopefully fix the build.
1943
1944 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
1945
1946         * verify-internals.h: Fix a warning.
1947
1948 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1949
1950         * verify-internals.h: New header with the verifier configuration
1951         extracted from mini.c.
1952
1953         * verify.c: Implemented the new functions exported by verify-internals.h.
1954
1955 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1956
1957         * verify.c: Add proper verification of ckfinite.
1958
1959 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
1960
1961         * verify.c (do_conversion): Improved error message to something
1962         more meanfull.
1963
1964         * verify.c (check_is_valid_type_for_field_ops): Fix to work
1965         with primitive types.
1966
1967 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
1968
1969         * verify.c: Added tail prefix checking. Marked icall
1970         as unverifible.
1971
1972 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
1973
1974         * verify.c: Fix the detection of branches to the middle
1975         of an instruction.
1976
1977 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
1978
1979         * verify.c: Implemented verification of volatile. and
1980         unaligned. prefix. Check if a type is valid after retrieving it.
1981
1982 2008-04-01  Dick Porter  <dick@ximian.com>
1983
1984         * process.c (process_get_fileversion): If there's no string block,
1985         set the file language to en_US.  Fixes the other new part of bug
1986         374600.
1987
1988 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
1989
1990         * class.c: New functions mono_method_can_access_field_full and
1991         mono_method_can_access_method_full. They perform type visibility
1992         and type site check.
1993
1994         * class-internal.h: Added exported functions.
1995
1996         * verify.c: Use new functions to implement proper visibility checks.
1997
1998 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
1999
2000         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
2001
2002 2008-03-28  Dick Porter  <dick@ximian.com>
2003
2004         * process.c (process_get_fileversion): Use the first language ID
2005         we see, rather than insisting on an invariant language.  Fixes bug
2006         374600.
2007
2008 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
2009
2010         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
2011         the streams to fix reading of invalid memory later.
2012
2013         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
2014         to ease debugging.
2015
2016 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
2017
2018         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
2019         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
2020
2021 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
2022         * threads.h: Added MonoThreadManageCallback type and
2023         mono_thread_set_manage_callback prototype
2024         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
2025         (used to store the mono_thread_manage callback).
2026         * threads.c: Added mono_thread_set_manage_callback, and handle
2027         "MonoThread->manage_callback" in build_wait_tids.
2028
2029 2008-03-26  Dick Porter  <dick@ximian.com>
2030
2031         * process.c (process_get_fileversion): Set FileVersionInfo strings
2032         to Empty when the resource doesn't have the particular info.
2033         Fixes bug 355717.
2034
2035 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
2036
2037         * verify.c (mono_method_verify): Proper prefix validation.
2038
2039 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
2040
2041         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
2042         itself in a separate argument instead of throwing them. Fixes #373448.
2043
2044         * appdomain.c: Bump corlib version.
2045
2046 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
2047
2048         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
2049
2050 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
2051
2052         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
2053         version macros.
2054
2055 2008-03-20  Mark Probst  <mark.probst@gmail.com>
2056
2057         * generic-sharing.c, class-internals.h: Code for putting
2058         reflection types into the runtime generic context.
2059
2060 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
2061
2062         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
2063         Fixes #340662. 
2064
2065
2066 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
2067
2068         * verify.c (VerifyContext): Added instruction prefix data to the struct.
2069
2070         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
2071
2072         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
2073
2074         * verify.c (do_cast): Let the result value keep the boxed status.
2075
2076         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
2077
2078 2008-03-17  Jb Evain  <jbevain@novell.com>
2079
2080         * reflection.c: when running on a 2.0 runtime, emit
2081         unconditionally the #~ header version as 2.0, and the
2082         CLI header version as 2.5, for symmetry's sake with csc.
2083
2084 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
2085
2086         * class.c: Remove the unused cache_interface_offsets stuff.
2087
2088         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
2089         profiler.c: Fix warnings.
2090
2091 2008-03-16  Mark Probst  <mark.probst@gmail.com>
2092
2093         * generic-sharing.c, class-internals.h: Support for putting
2094         methods into the runtime generic context.
2095
2096 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
2097
2098         * class.c (mono_class_setup_fields): Ignore calls made to this function for
2099         classes which are generic instances of not-yet finished typebuilders. Fixes
2100         #351172.
2101
2102         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
2103
2104 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
2105
2106         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
2107
2108         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
2109         field, replace it with a hash table in MonoDynamicImage.
2110
2111         * reflection.c (inflate_mono_method): Access the generic definition object from
2112         image->generic_def_objects instead of imethod->reflection_info.
2113
2114         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
2115
2116         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
2117         
2118         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
2119         function in reflection.c so it is easier to keep in sync with the dynamic image
2120         creation code.
2121
2122         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
2123         mono_image_close ().
2124
2125 2008-03-15  Mark Probst  <mark.probst@gmail.com>
2126
2127         * class.c (mono_class_generic_sharing_enabled): Disable generic
2128         sharing for all architectures except AMD64 and x86 to fix build.
2129
2130 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
2131
2132         * verify.c: Use the generic definition MonoGenericContext when available.
2133         Remove code for checking generics instance compatibility in favor of
2134         mono_class_is_assignable_from.
2135
2136 2008-03-14  Mark Probst  <mark.probst@gmail.com>
2137
2138         * marshal.c, marshal.h, metadata-internals.h, image.c,
2139         wrapper-types.h: New wrapper for invoking a shared static method
2140         without having to pass the runtime generic context argument.
2141
2142 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
2143
2144         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
2145
2146 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
2147
2148         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
2149         
2150         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
2151         create a token from a FieldOnTypeBuilderInst.
2152         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
2153         (resolve_object): Ditto.
2154
2155         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
2156         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
2157
2158 2008-03-14  Martin Baulig  <martin@ximian.com>
2159
2160         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
2161
2162         * debug-mono-symfile.h
2163         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
2164         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
2165
2166 2008-03-10  Martin Baulig  <martin@ximian.com>
2167
2168         * debug-mono-symfile.h
2169         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
2170         `lexical_block_table_offset'.
2171         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
2172         `lexical_blocks'.
2173         (MonoSymbolFile): Added `version'.
2174
2175         * mono-debug.h
2176         (MonoDebugLexicalBlockEntry): Removed.
2177         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
2178         `lexical_blocks'.
2179
2180         * mono-debug.c (mono_debug_add_method): Don't compute lexical
2181         blocks here; the debugger now does this internally.
2182
2183 2008-02-27  Martin Baulig  <martin@ximian.com>
2184
2185         * object.c (mono_runtime_exec_main): Call
2186         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
2187         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
2188
2189 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
2190
2191         * verify.c (verify_type_compatibility_full): Allow native int to be converted
2192         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
2193
2194 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
2195
2196         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
2197         ldftn with a virtual method.
2198
2199 2008-03-13  Geoff Norton  <gnorton@novell.com>
2200
2201         * decimal.c:  Only include memory.h if the platform has it.
2202
2203 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
2204
2205         * assembly.c, class.c, metadata-internals.h: make sure public key
2206         tokesns are compared in a case-insensitive way. Also, all
2207         the lookups in the GAC use a lowercase public key token
2208         (gaacutil already does the lowercasing on install). Fixes
2209         bug #369541.
2210
2211 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
2212
2213         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
2214         and return value.
2215
2216 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
2217
2218         * image.c: when someone loads a mscorlib from a file, return the
2219         currently loaded mscorlib (fixes bug #369253).
2220
2221 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
2222
2223         * class.c: handle types with no parents by forcing them to have
2224         System.Object as a parent and marking them as broken (this currently
2225         allows the first part of bug #369173 to work as well, likely because
2226         we don't check for typeload exceptions everywhere yet).
2227
2228 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
2229
2230         * class.c: more complete check that types belong to corlib
2231         (fixes second part of bug #369173).
2232
2233 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
2234
2235         * generic-sharing.c:  Including glib.h for the MSVC builds to define
2236           "inline" to "__inline" before including mono-membar.h.
2237           
2238         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
2239           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
2240           MSVC builds.
2241
2242         Contributed under MIT/X11 license.
2243
2244 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
2245
2246         * verify.c (do_invoke_method): Remove return type validation.
2247
2248         * verify.c (do_ret): Do return type validation at return site instead of
2249         call site.
2250
2251 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
2252
2253         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
2254
2255         * verify.c: Some todos cleaned and improved a few error messages.
2256
2257 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
2258
2259         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
2260
2261 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
2262
2263         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
2264         system types correctly.
2265
2266         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
2267         function.
2268
2269 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
2270
2271         * assembly.c (build_assembly_name): Fix a warning.
2272
2273 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
2274
2275         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
2276         the called function takes an object type argument. Fixes storing or
2277         valuetypes across remoting as well as reducing memory usage.
2278         * image.c, metadata-internals.h: remove now unused ldfld_remote and
2279         stfld_remote wrapper caches.
2280
2281 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
2282
2283         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
2284         is not found.
2285
2286         * reflection.c (mono_image_register_token): New helper function to save
2287         a token->object mapping.        
2288
2289         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
2290         managed code.
2291
2292         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
2293         one dimension arrays. Fixes #367670.
2294         (mono_reflection_get_type_internal): Ditto.
2295
2296 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
2297
2298         * marshal.c: mono_load_remote_field_new() always returns object.
2299         so use the proper signature (fixes bug #366445).
2300
2301 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
2302         
2303         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
2304         add an 'inline_failure' flag instead.
2305
2306 2008-03-04  Mark Probst  <mark.probst@gmail.com>
2307
2308         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
2309         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
2310         contains the location of "this", used for exception handling.
2311
2312 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
2313
2314         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
2315         their size on all platforms for perf reasons.
2316
2317 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
2318
2319         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
2320         object-internal.h
2321
2322         * object-internal.h: Same.
2323
2324 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
2325
2326         * reflection.h: Fix the build I just broke.
2327
2328 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
2329
2330         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
2331         Test if a token is valid, this remove explicit usage of 
2332         MonoDynamicImage::tokens from the verifier code.
2333
2334         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
2335
2336         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
2337         instead of direct access to MonoDynamicImage::tokens.
2338
2339 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
2340
2341         * verify.c (token_bounds_check): Fix the build I just broke.
2342
2343 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
2344
2345         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
2346
2347         * verify.c (verifier_load_method): Fixed the errors message.
2348
2349         * verify.c (mono_method_verify): Fixed a debug message.
2350
2351 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
2352
2353         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
2354         mono-perfcounters.h, class-internals.h: support for predefined
2355         writable counters, query of categories and counters, bugfixes.
2356
2357 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
2358
2359         * verify.c (do_refanytype): Verify the refanytype opcode.
2360
2361         * verify.c (mono_method_verify): Use do_refanytype.
2362
2363 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
2364
2365         * verify.c (do_mkrefany): Verify the mkrefany opcode.
2366
2367         * verify.c (mono_method_verify): Use do_mkrefany.
2368
2369 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
2370
2371         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
2372         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
2373         implementation.
2374
2375 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
2376
2377         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
2378         the type load exception.
2379
2380 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
2381
2382         * verify.c: Added a few FIXME for method signatures
2383
2384         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
2385         of mono_method_get_signature and get vararg call working. Removed unused
2386         checks for return value.
2387
2388         * verify.c (do_refanyval): Verify the refanyval opcode.
2389
2390         * verify.c (mono_method_verify): Implemented verification of arglist and
2391         use do_refanyval.
2392
2393 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
2394
2395         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
2396         vtypes to marshal.c.
2397
2398         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
2399         it works for AOT as well.
2400
2401 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
2402
2403         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
2404         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
2405         the system time is adjusted.
2406
2407 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
2408
2409         * icall.c, icall-def.h: use the new time functions (fixes the
2410         non-monotonic behaviour of TickCount).
2411
2412 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
2413
2414         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
2415         it breaks the build.
2416         
2417         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
2418         cattr is not finished yet.
2419
2420 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
2421
2422         * verify.c: Proper token validation for field, method and type.
2423
2424 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
2425
2426         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
2427
2428         * loader.c (method_from_memberref): Generate type load error instead of method missing
2429         if the type is not found.
2430
2431 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
2432
2433         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
2434         some of the conversions caused the generation of a marshal directive exception.
2435
2436 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
2437
2438         verify.c: Report which exception should be thrown by the JIT.
2439         Added a lot of FIXME notes.
2440
2441 2008-02-22  Mark Probst  <mark.probst@gmail.com>
2442
2443         * generic-sharing.c: Runtime generic context slots are not
2444         instantiated on init anymore.  Instead, provide function to do the
2445         instantiating on demand.
2446
2447         * class-internals.h: Added vtable to runtime generic context.
2448         Macros for encoding direct and indirect slot offsets in one
2449         guint32.
2450
2451 2008-02-21  Mark Probst  <mark.probst@gmail.com>
2452
2453         * object.c, generic-sharing.c: Moved some generic sharing code
2454         from object.c to generic-sharing.c.
2455
2456         * generic-sharing.c: Added support for extensible runtime generic
2457         context.
2458
2459         * metadata-internals.h: Two new hash tables in MonoImage for
2460         extensible runtime generic context support.
2461
2462         * domain.c: Unregister generic vtables upon domain unloading.
2463
2464         * image.c: Destroy new hash tables upon image unloading.
2465
2466         * metadata.c: Unregister generic subclasses upon image unloading.
2467
2468         * class-internals.h: New data structure for runtime generic
2469         context template.  New fields in the runtime generic context for
2470         extensible part.
2471
2472         * Makefile.am: Added generic-sharing.c.
2473
2474 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
2475
2476         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
2477         there is a pending loader exception, raise it.
2478
2479         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
2480         same.
2481
2482         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
2483         same.
2484
2485         Fixes #363450.
2486
2487 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
2488
2489         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
2490
2491         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
2492         
2493         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
2494         ref-only requests for compatibility with MS.
2495
2496 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
2497
2498         * reflection.c (mono_custom_attrs_from_method): Don't silently
2499         return an empty list for generic method instances.
2500         (mono_custom_attrs_from_param): Likewise.
2501
2502 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
2503             Raja R Harinath  <harinath@hurrynot.org>
2504
2505         Fix #354757
2506         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
2507         * class.c (mono_class_inflate_generic_method_full): Initialize it
2508         when a fully-open method is instantiated.
2509         * metadata.c (inflated_method_equal, inflated_method_hash): Update
2510         to new field.
2511         * reflection.c (inflate_mono_method): Don't create a temporary context.
2512
2513 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
2514
2515         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
2516         Compute correct value, to prepare for imethod->reflection_info going away.
2517
2518 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
2519
2520         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
2521
2522 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
2523
2524         * verify.c: Implement skip visibility flag.
2525
2526 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
2527
2528         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
2529         which contains an extra field to tell the kind of exception that should be thrown.
2530
2531         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
2532
2533 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
2534
2535         * loader.c (mono_method_get_param_names): Initialize 'klass' after
2536         'method' is updated.
2537
2538 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
2539
2540         * class.c (mono_class_layout_fields): Set class->min_align for classes using
2541         explicit layout as well. Fixes #360375.
2542
2543 2008-02-11  Geoff Norton  <gnorton@novell.com>
2544
2545         * loader.c: Guard and dereference against inflated generic methods
2546
2547 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
2548
2549         * class.c: Include Retargetable spec in assembly name.
2550         * assembly.c: Always include PublicKeyToken spec in assembly name
2551         (with value "null" if assembly is not signed), and include
2552         Retargetable spec.
2553         * icall-def.h: Added icall for Assembly.get_fullname.
2554         * icall.c: Added icall returning the fullname of an assembly.
2555
2556 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
2557
2558         * class.c (mono_class_setup_vtable_general): Add a missing call to
2559         mono_class_setup_methods () which is needed in the AOT case.
2560
2561 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
2562
2563         * verify.c (mono_type_get_stack_name): Added. Return the name for the
2564         stack type of the given MonoType.
2565
2566         * verify.c (verify_type_compatibility_full): Handle the void type.
2567
2568         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
2569         way stack merging works.
2570
2571         * verify.c (store_local): Improved verification message.
2572
2573         * verify.c (do_branch_op): If the merging is invalid, the method
2574         is unverifiable and not invalid. Improved error message.
2575
2576         * verify.c (merge_stacks): Properly merge a boxed valuetype and
2577         a reference type diferent than System.Object. Improved error
2578         message.
2579
2580 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
2581
2582         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
2583
2584         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
2585         type of an enum even if the argument is byref.
2586
2587         * verify.c: Replace all explicit uses of enumtype and enum_basetype
2588         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
2589
2590         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
2591
2592         *verify.c (verify_type_compatibility_full): Make enum types
2593         compatible with their base types.
2594
2595         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
2596         types are compatible for the special case of a boxed valuetype and
2597         System.Object.
2598
2599         * verify.c (verify_stack_type_compatibility): The function
2600         is_compatible_boxed_valuetype was extracted from here.
2601
2602         * verify.c (push_arg): Only set ctx->has_this_store if the method
2603         is not static.
2604
2605         * verify.c (do_ldelem): Fixed a typo in an error message and added
2606         strict check for mixing int32 and native int as the array type
2607         and ldelem type.
2608
2609         * verify.c (merge_stacks): Consider boxed valuetypes in the
2610         compatibility checks.
2611
2612 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
2613         * profiler.h: (MonoGCEvent): Added start-stop the world events.
2614
2615 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
2616         *class.c: use_new_interface_vtable_code: renamed the env var to have
2617         a "MONO_" prefix, and fix the logic to enable it by default.
2618
2619 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
2620         *class.c:
2621         mono_class_setup_vtable_general: rewrote the way in which interface
2622         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
2623         makes the code more maintainable.
2624         For now the old code is still there, and can be activated setting
2625         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
2626
2627 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
2628
2629         * verify.c: guarded some debug functions around and #ifdef.
2630
2631         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
2632
2633 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
2634
2635         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
2636         changes for now since they seem to break too many things.
2637
2638 2008-02-05  Mark Probst  <mark.probst@gmail.com>
2639
2640         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
2641         mono_marshal_find_nonzero_bit_offset): Added macro and function
2642         for finding the byte- and bit-offset of a bitfield within a
2643         struct.
2644
2645 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
2646
2647         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
2648         (mono_marshal_get_struct_to_ptr): Ditto.
2649
2650         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
2651         cctor_signature.
2652
2653 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
2654
2655         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
2656         between methods for non-corlib types.
2657
2658 2008-02-02  Geoff Norton  <gnorton@novell.com>
2659
2660         * loader.c (mono_method_get_param_names): Populate the parameter name for 
2661         generic parameters as well. (Fixes #342536)
2662
2663 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
2664
2665         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
2666
2667         * verify.c (do_invoke_method): Fix for calling with byref structs.
2668
2669         * verify.c (do_cast): push a boxed value type based on the type token and not
2670         the type of stack.
2671
2672 2008-01-31  William Holmes  <billholmes54@gmail.com>
2673
2674         * process.c (process_module_string_read): Check the size returned form 
2675           VerQueryValue to avoid out of memory exception. 
2676
2677 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
2678
2679         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
2680         Handle properly modules which are not in the moduleref table. Fixes
2681         #356938.
2682
2683 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
2684
2685         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
2686         the dynamic case which is now in managed code.
2687         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
2688
2689         * marshal.c (mono_string_to_bstr): Fix a warning.
2690         (init_com_provider_ms): Ditto.
2691
2692         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
2693
2694         * exception.c (mono_get_exception_out_of_memory): New helper function.
2695
2696 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
2697
2698         * marshal.c: Add support for BSTR marshalling
2699         using other COM systems.
2700
2701         Code is contributed under MIT/X11 license.
2702
2703 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
2704
2705         * object.c (mono_runtime_invoke_array): reverted previous
2706         commit as it breaks the build.
2707
2708 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
2709
2710         * object.c (mono_runtime_invoke_array): Verify arguments for
2711         invalid types. Fixes #348522.
2712
2713 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
2714
2715         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
2716         non-final virtual calls using call. 
2717
2718         * verify.c (do_invoke): fixed some TODOs.
2719
2720         * verify.c (push_arg): set has_this_store for "ldarga 0".
2721
2722 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
2723
2724         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
2725         which belong to an inflated class. Fixes #356531.
2726
2727 2008-01-26  Robert Jordan  <robertj@gmx.net>
2728
2729         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
2730         which resort to FindFirstFile when a certain error condition
2731         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
2732         Code is contributed under MIT/X11 license.
2733
2734 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
2735
2736         * marshal.c (emit_marshal_string): Fix out string marshalling
2737         to use specified encoding. Fixes #323900.
2738
2739         Code is contributed under MIT/X11 license.
2740
2741 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
2742
2743         * class.c (mono_class_inflate_generic_method_full): Don't modify
2744         iresult->context after cache check.
2745
2746 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
2747
2748         * class.c (mono_class_inflate_generic_method_full): Change the
2749         struct assignments to memcpy for better visibility and add some comments.
2750
2751 2008-01-23  Dick Porter  <dick@ximian.com>
2752
2753         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
2754         procedure, and make it work on windows.
2755
2756 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
2757
2758         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
2759         a MonoReflectionTypeBuilder since it is always of that type.
2760
2761         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
2762
2763         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
2764
2765         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
2766         
2767         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
2768
2769         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
2770
2771         * reflection.c (mono_reflection_create_runtime_class): Remove already created
2772         instantiations from the type cache.
2773
2774 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
2775
2776         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
2777
2778         * verify.c (do_unbox_value): push a controled mutability managed pointer.
2779
2780 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
2781
2782         * verify.c (do_ldstr): added, verifies if the #US token is valid.
2783
2784         * verify.c (mono_method_verify): removed old TODO
2785
2786 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
2787
2788         * verify.c (do_newobj): add visibility check.
2789
2790 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
2791
2792         * verify.c (do_load_function_ptr): add visibility check.
2793
2794 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
2795         *class.c:
2796         mono_generic_class_get_class: hook profiler events.
2797         mono_field_get_offset: added to support heap-shot in the new profiler.
2798         *class.h: exported mono_field_get_offset.
2799         * reflection.c:
2800         mono_reflection_setup_internal_class: hook profiler events.
2801
2802 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
2803
2804         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
2805         argument here too and use it to avoid checking for pending exceptions if 
2806         possible.
2807
2808 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
2809
2810         * assembly.c (build_assembly_name): add arg for passing the assembly
2811         flags. Do not consider a PublicKey with value "null" valid.
2812         (mono_assembly_name_parse_full): added boolean argument that will be
2813         set if the assembly name contains a PublicKeyToken spec. Added support
2814         for the Retargetable spec for which only Yes or No are allowed as valid
2815         value. Consider assembly name invalid if Retargetable spec is set, but
2816         either version, culture or public key (token) are not specified.
2817         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
2818         with implementation in assembly.c.
2819         * icall.c (fill_reflection_assembly_name): also copy assembly flags
2820         from MonoAssemblyName.
2821         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
2822         introduced argument for mono_assembly_name_parse_full to know if the
2823         assembly name has a PublicKeyToken spec, and if it has instruct
2824         fill_reflection_assembly_name to use default value for keyToken (if
2825         PublicKeyToken is null).
2826
2827 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2828
2829         * verify.c (mono_method_verify): fixed ovf ops with
2830         float values. They are unverifiable now.
2831
2832 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2833
2834         * class.c (set_failure_from_loader_error): add BadImageException to the
2835         list of exceptions that can cause a type to fail to load.
2836
2837         * class.c (mono_class_get_exception_for_failure): same.
2838
2839 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
2840
2841         * verify.c (in_any_exception_block): added, check if offset
2842         is part of any exception handling clause.
2843
2844         * verify.c (get_stack_type): added VAR and MVAR types.
2845
2846         * verify.c (do_stobj): better error messages.
2847
2848         * verify.c (do_cpobj): added, check cpobj.
2849
2850         * verify.c (do_initobj): added, check initobj.
2851
2852         * verify.c (do_sizeof): added, check sizeof.
2853
2854         * verify.c (do_localloc): added, check localloc.
2855
2856         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
2857
2858 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
2859
2860         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
2861         save_lmf/restore_lmf opcodes.
2862
2863         * threads.c (mono_threads_install_notify_pending_exc): New function to
2864         install a callback notifying the JIT there is a pending exception on a thread.
2865         (mono_thread_request_interruption): Call the new callback.
2866         (mono_thread_get_and_clear_pending_exception): New function to return the
2867         exception pending on a thread.
2868
2869         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
2870         to turn off checking for pending exceptions.
2871         (mono_marshal_get_native_wrapper): Ditto.
2872
2873 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
2874
2875         * threads-types.h: Get rid of the unnecessary extern declarations.
2876
2877 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
2878
2879         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
2880         return field from parent class if not private.
2881         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
2882         returns fields from parent class if they are not private.
2883         (method_nonpublic): added function to determine if a given method
2884         should be considered non-public. Returns false for private methods
2885         on parent class, and internal methods from parent on the 1.0 profile.
2886         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
2887         use method_nonpublic function to determine whether method should be
2888         returned.
2889         (property_accessor_public): use newly introduced method_nonpublic
2890         function to determine whether accessor is non-public. 
2891         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
2892         event from parent class if not private. Only return static event if
2893         Static flag is set, and only return static event from parent class if
2894         FlattenHierarchy flag is set.
2895         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
2896         include non-private events from parent class.
2897
2898 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
2899
2900         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
2901         warning.
2902
2903 2008-01-16  Wade Berrier <wberrier@novell.com>
2904
2905         * security.c: Add assembly.h header to appease some warnings
2906
2907 2008-01-16  Dick Porter  <dick@ximian.com>
2908
2909         * process.c (process_module_string_read): Remove trailing null
2910         when saving string.
2911
2912 2008-01-16  Mark Probst  <mark.probst@gmail.com>
2913
2914         * class-internals.h: A new data structure describing the layout of
2915         a runtime generic context (MonoRuntimeGenericContextTemplate).
2916
2917         * metadata-internals.h: Added a hash table to MonoDomain that maps
2918         from open generic classes to their runtime generic context
2919         templates.
2920
2921         * object.c: Building of the runtime generic context, including
2922         proper handling of generic type arguments of superclasses.
2923         Building of the runtime generic context according to the template.
2924
2925 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
2926
2927         * class.c (mono_class_setup_fields): Set field.count for generic instances.
2928         Fixes #350856.
2929
2930         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
2931         mono_portability_find_file (). Fixes #325466.
2932         (mono_image_get_public_key): Fix a warning.
2933
2934 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
2935
2936         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
2937         Fixes #353550.
2938         (mono_class_from_name_case): Ditto.
2939
2940 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
2941
2942         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
2943           common storage for the tables used in the System/NumberFormatter class.
2944
2945 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
2946
2947         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
2948
2949 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
2950
2951         * verify.c (get_boxable_mono_type): check if the token is valid.
2952
2953         * verify.c (set_stack_value): changed to add an error if an
2954         invalid type is set on stack. Changed all callers due to signature change.
2955
2956         * verify.c (do_stobj): implement stobj validation.
2957
2958 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
2959
2960         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
2961         set container->is_method, it was set earlier.
2962
2963         * metadata.c (type_in_image): Handle MVARs which belong to not finished
2964         generic methods.
2965
2966         * reflection.c (mono_reflection_initialize_generic_parameter): Set
2967         is_method of the generic container to TRUE for methods.
2968
2969 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
2970
2971         * metadata.c (type_in_image): Handle type parameters properly.
2972
2973         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
2974         memory ownership of this structure.
2975
2976 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
2977
2978         * verify.c (get_boxable_mono_type): make typedref types been just
2979         unverifiable. check for void type.
2980
2981         * verify.c (do_unbox_any): added, verify opcode unbox.any.
2982
2983         * verify.c (do_load_function_ptr): accept method spec tokens.
2984
2985 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
2986
2987         * marshal.c (mono_class_native_size): Always set *align even if this is called
2988         recursively.
2989
2990 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
2991
2992         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
2993         out-of-date.
2994
2995 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
2996
2997         * verify.c: removed some old unused tables. A huge bunch of small fixes
2998         to things found while testing the verifier with mono basic.
2999
3000         * verify.c (dump_stack_value): dump null literal flag to.
3001
3002         * verify.c (verify_type_compatibility_full): fix comparison
3003         for types that have a generic super type.
3004
3005         * verify.c (verify_stack_type_compatibility): fix compatibility
3006         between null literals and reference types. fix compatibility between
3007         boxed valuetypes and object. fix corner case test for enums.
3008
3009         * verify.c (do_cmp_op): proper verification of cgt.un in case
3010         of reference types.
3011
3012         * verify.c (do_invoke_method): fix error message.
3013
3014         * verify.c (do_store_indirect
3015
3016         * verify.c (check_is_valid_type_for_field_ops): proper verification
3017         of managed pointers to valuetypes and boxed valuetypes. proper verification
3018         of null literals.
3019
3020         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
3021         allow token to be a reference type.
3022
3023         * verify.c (do_cast): proper handling of boxes valuetypes.
3024
3025         * verify.c (do_stelem): proper handling of storing a boxed valuetype
3026         in object[].
3027
3028         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
3029         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
3030         fixed the decoding of unbox_any
3031
3032 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
3033
3034         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
3035
3036 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
3037
3038         * verify.c (do_newobj): do delegate verification.
3039
3040         * verify.c (verify_delegate_compatibility): perform delegate
3041         verification.
3042
3043         * verify.c (verify_ldftn_delegate): perform tests related to
3044         ldftn delegates.
3045
3046         * verify.c (mono_delegate_signature_equal): perform the
3047         slightly diferent signature comparison required by delegates.
3048
3049         * metadata.c (mono_metadata_type_equal_full): added and exported
3050         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
3051         allows signature only comparison.
3052
3053         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
3054         as MONO_INTERNAL.
3055
3056 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
3057
3058         * verify.c: added a bunch of stack_slot_* functions to
3059         make access to stack slot type easier. This is required to
3060         allow optional flags, like null literal, boxed value and
3061         this pointer.
3062         All access paths to IlStackDesc::stype have been changed 
3063         to use these new funcions.
3064         Removed a bunch of unused functions and cleared all warnings.
3065         This patch introduces the usage of the this pointer and 
3066         boxed value flags.
3067
3068 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
3069
3070         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
3071
3072 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
3073
3074         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
3075         match managed version.
3076
3077         * appdomain.c: Bump corlib version.
3078         
3079         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
3080         argument.
3081
3082 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
3083
3084         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
3085         Set public key token to zero-length byte array if assembly is not
3086         strongnamed.
3087
3088 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
3089
3090         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
3091         writing a vtype array elem.
3092
3093 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
3094
3095         * assembly.c (build_assembly_name): return FALSE if length of token is
3096         not 16 (if not "null").
3097         (mono_assembly_name_parse_full): return FALSE if value of version,
3098         culture, token or key is 0.
3099         * icall.c (fill_reflection_assembly_name): add boolean arguments to
3100         specify whether public key and public key token must be set to default
3101         value (zero-length byte array) if not available. Set versioncompat to
3102         SameMachine. If public key is available or the default is set, then
3103         set PublicKey flag.
3104         (ves_icall_System_Reflection_Assembly_FillName): if no public key
3105         is available, use empty byte array as default value. On the 2.0
3106         profile, use default value for public key token if not set.
3107         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
3108         profile, use default value for public key if not set. On the 2.0
3109         profile, use default value for public key token if not set.
3110         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
3111         default values for public key and public key token.
3112
3113 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
3114
3115         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
3116         field to keep it in synch with the managed object.
3117
3118         * marshal.c (emit_marshal_object): Add support for byref marshalling of
3119         delegates. Fixes #351520.
3120
3121         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
3122         contains defined memory.
3123         
3124         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
3125
3126         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
3127         
3128         * sgen-gc.c (check_consistency): New helper function to do a consistency check
3129         of the GC data structures.
3130
3131         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
3132
3133         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
3134         
3135         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
3136         barrier.
3137         (mono_array_clone_in_domain): Ditto.
3138         (mono_array_clone_in_domain): Ditto.
3139
3140         * threads.c (start_wrapper): Register the thread start argument as a GC root.
3141         (cache_culture): Use a write barrier.
3142
3143         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
3144         (ves_icall_get_property_info): Ditto.
3145
3146         * object.h (MONO_STRUCT_SETREF): New macro.
3147
3148         * class-internals.h (MonoStats): Add some GC statistics.
3149
3150         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
3151
3152 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
3153
3154         * exception.c (mono_exception_from_name_two_strings):
3155         Break from loop after method is found.
3156
3157 2008-01-04  Dick Porter  <dick@ximian.com>
3158
3159         * process.c (process_module_string_read): Rename variable to
3160         reflect correct usage, after fixing bug 345972.
3161
3162 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
3163
3164         * verify.c (mono_type_create_fnptr_from_mono_method): 
3165         created a MonoType function pointer instance to be used during
3166         verification. The verifier releases this memory at end.
3167
3168         * verify.c (mono_method_is_constructor): extracted repeated
3169         checks for constructor into a single class.
3170
3171         * verify.c (do_push_field): use new extracted method
3172         for constructor check.
3173
3174         * verify.c (do_newobj): same.
3175
3176         * verify.c (do_ldftn): renamed to do_load_function_ptr
3177         and make it verify ldvirtftn too.
3178
3179         * verify.c (mono_method_verify: proper verification
3180         of ldvirtftn. release created MonoMethod instances.
3181
3182 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
3183
3184         * verify.c (token_bounds_check): added.
3185
3186         * verify.c (do_ldftn): added.
3187
3188         * verify.c (mono_method_verify): proper verificartion of ldftn.
3189
3190 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
3191
3192         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
3193         than the table row count. It's the resposibility of the caller to
3194         make the bounds check and raise the correct error.
3195
3196         * metadata.c (mono_metadata_decode_row_col): Same.
3197
3198         * loader.c (mono_get_method_from_token): perform bounds check
3199         on token for methoddef table.
3200
3201 2007-12-29  Miguel de Icaza  <miguel@novell.com>
3202
3203         * icall.c
3204         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
3205         assert into a negative result, the managed code already coped with
3206         that.
3207
3208         Some folks on Windows reported this error. 
3209
3210 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
3211
3212         * appdomain.c: Bump corlib version.
3213         * icall.c:
3214         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
3215         CultureInfo.CreateCulture to create CultureInfo for name.
3216         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
3217         create CultureInfo for name. Fixes bug #347174.
3218
3219 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
3220
3221         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
3222         flags.
3223
3224         * verify.c (is_valid_branch_instruction): allow branching to the
3225         first instruction of the protected block.
3226
3227         * verify.c (is_valid_cmp_branch_instruction): same.
3228
3229         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
3230         avoid double initialization.
3231
3232         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
3233         detect which cases the eval stack should just be copied.
3234
3235         * verify.c (mono_method_verify): check if the eval stack
3236         is empty when entering a protected block.
3237
3238 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
3239
3240         * verify.c: added is_clause_in_range, is_clause_inside_range,
3241         is_clause_nested and verify_clause_relationship. They perform
3242         the verifications stated in P1 12.4.2.7.
3243
3244         * verify.c (mono_method_verify): remove some unused variables,
3245         add the new exception clause checks, add instruction border
3246         checks for protected block start/end, improved some error 
3247         messages and fixed a bug in the way invalid instruction access
3248         is detected.
3249
3250 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
3251
3252         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
3253         from GC 7.0 if available.
3254
3255         * object.c: Remove an unused define.
3256         
3257         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
3258
3259         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
3260
3261         * null-gc.c (mono_gc_make_descr_for_array): Implement.
3262
3263         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
3264
3265         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
3266         to take the same arguments as the other make_descr functions.
3267
3268         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
3269
3270         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
3271         directly.
3272
3273         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
3274         mini.c.
3275
3276         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
3277         call to boehm-gc.c.
3278
3279         * boehm-gc.c (mono_gc_register_root): Fix a warning.
3280
3281         * null-gc.c (mono_gc_register_root): Fix a warning.
3282
3283         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
3284
3285         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
3286         (mono_gc_base_init): Call GC_init ().
3287
3288         * null-gc.c: Define mono_gc_register_root () as a no-op.
3289
3290         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
3291
3292 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
3293
3294         * verify.c: add prototype for merge_stacks at top
3295
3296         * verify.c (do_switch): added.
3297
3298         * verify.c (merge_stacks): on some cases the stack merging
3299         was not happening properly. Unequal stack sizes at merge
3300         points should be invalid.
3301
3302         * verify.c (mono_method_verify): added more debug info on stack state.
3303         verify switch properly.
3304
3305 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
3306
3307         * method-builder.h: New file, moved the mono_mb_ declarations here from 
3308         marshal.h.
3309
3310         * boehm-gc.c marshal.c: Include method-builder.h.
3311
3312         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
3313
3314         * marshal.c: Remove some code which is now in method-builder.c.
3315
3316 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
3317
3318         * method-builder.c: New file, extraction of the method builder functionality 
3319         from marshal.c.
3320
3321         * marshal.c: Move the mb functions into method-builder.c.
3322
3323         * marshal.h marshal.c: Export some mono_mb_... functions.
3324
3325         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
3326
3327         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
3328         the caller.
3329
3330         * class.c (mono_class_get_full): Check the token type in the dynamic case.
3331
3332         * loader.c (mono_field_from_token): Ditto.      
3333
3334         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
3335         type as well.
3336         
3337         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
3338         Fixes #342565.
3339
3340         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
3341         a helper function for setting it.
3342
3343         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
3344
3345         
3346         * assembly.c: Significally simplify code now that referenced assemblies are 
3347         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
3348
3349         * threads.h: Don't include  the internal threads-types.h header file. Fixes
3350         #349952.
3351
3352 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
3353
3354         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
3355         instructions that were target of branches or are at protected block boundaries.
3356
3357         * verify.c (in_same_block): handle filter clauses.
3358
3359         * verify.c (is_valid_branch_instruction): added. checks the target of
3360         instructions br or brtrue/false.
3361
3362         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
3363         binary branch instructions such as beq and bge.
3364
3365         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
3366         and made it pin the instruction as been part of the exception block.
3367
3368         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
3369         of in_same_block.
3370
3371         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
3372         of in_same_block.
3373
3374         * verify.c (do_ret): ret from a protected block is unverifiable and
3375         not invalid.
3376
3377         * verify.c (do_static_branch): verify br and br.s instructions.
3378
3379         * verify.c (merge_stacks): add extra param to support detection
3380         of branches in the middle of instructions.
3381         
3382         * verify.c (mono_method_verify): verify branches and exception blocks
3383         that target the middle of instructions. Proper verification of br and br.s.
3384
3385 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
3386
3387         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
3388         skip_visibility field.
3389         (reflection_methodbuilder_from_dynamic_method): Ditto.
3390
3391         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
3392         registrations. Fixes #348193.
3393
3394         * threads.h: Move the internal mono_thread_get_pending_exception () to
3395         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
3396
3397 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
3398
3399         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
3400         icall registration. Fixes #348193.
3401
3402         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
3403         for corlib classes into object. Fixes #349621.
3404
3405 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
3406
3407         * icall.c (property_accessor_nonpublic): new function to determine
3408         whether an accessor allows a property to be considered non-public.
3409         Returns false for private accessor(s) from parent class, and internal
3410         accessor(s) from parent on 2.0 profile (and higher).
3411         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
3412         to determine whether property should be included if NonPublic flag
3413         is set. Fixes bug #349078.
3414
3415 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
3416
3417         * verify.c (init_stack_with_value): added.
3418
3419         * verify.c (mono_method_verify): extracted common
3420         code for exception initialization into init_stack_with_value.
3421
3422         * verify.c (mono_method_verify): initialize the exception
3423         for handler clauses as well.
3424
3425         * verify.c (mono_method_verify): fix the exception clause
3426         ordering rules, it should use handler end offset and not
3427         start offset.
3428
3429 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
3430
3431         * rawbuffer.c: remove useless warning.
3432
3433 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
3434
3435         * threads.h, threads-types.h: move functions to the correct header
3436         (fixes bug#349952).
3437
3438 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
3439
3440         * verify.c (mono_method_verify): proper verification
3441         of exception handling clauses ranges and fallthru in
3442         and out of protected blocks.
3443
3444 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
3445
3446         * verify.c (mono_method_verify): fixed compilation issue.
3447
3448 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
3449
3450         * verify.c (mono_method_verify): a printf slipped in, changed
3451         to use verifier debug macro.
3452
3453 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
3454
3455         * verify.c (is_correct_leave): check for filter clauses.
3456
3457         * verify.c (do_filter): added.
3458
3459         * verify.c (mono_method_verify): property verification of leave.
3460
3461
3462 2007-12-18  Mark Probst  <mark.probst@gmail.com>
3463
3464         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
3465         Win32 build, until we figure out how to do the proper thing on
3466         Win32.
3467
3468 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
3469
3470         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
3471         by the previous patch.
3472         
3473         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
3474         the assembly resolve handler for refonly assemblies.
3475
3476 2007-12-17  Mark Probst  <mark.probst@gmail.com>
3477
3478         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
3479         Make sure only one thread is allowed to commence shutdown, and
3480         don't allow new threads to be started once shutdown is in
3481         progress.
3482
3483 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
3484
3485         * verify.c (is_correct_endfilter): added.
3486
3487         * verify.c (is_unverifiable_endfilter): added.
3488
3489         * verify.c (do_endfilter): added.
3490
3491         * verify.c (mono_method_verify): property verification of endfilter
3492         and fixed a corner case or endfinally.
3493
3494 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
3495
3496         * verify.h: new flags to support fail fast of unverifiable code and
3497         do non-strict verification. Non-strict verification is required to
3498         have MS runtime compatibility. There are a huge amount of unverifiable
3499         code that it accepts as verifiable. The strict mode verifies the code
3500         as the specs says.
3501         Non-strict mode will be required in cases where code needs to be
3502         accepted as verifiable but fails under strict mode.
3503
3504         * pedump.c: added support to fail fast and non-strict verification.
3505
3506         * verify.c: added support for both fail fast and non-strict verification.
3507
3508 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
3509
3510         * verify.c (is_correct_endfinally): added.
3511
3512         * verify.c (mono_method_verify): property verification of endfinally.
3513
3514 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
3515
3516         * verify.c (in_any_block): check for filter clauses.
3517
3518         * verify.c (is_correct_rethrow): added.
3519
3520         * verify.c (mono_method_verify): property verification of rethrow.
3521
3522         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
3523
3524 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
3525
3526         * verify.c (do_throw): added.
3527
3528         * verify.c (mono_method_verify): property verification of throw
3529
3530 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
3531
3532         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
3533         assemblies. Fixes #346425.
3534
3535 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
3536
3537         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
3538         FieldBuilders.
3539
3540         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
3541
3542         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
3543         prevent asserts when this is called with a token which might not be valid.
3544
3545         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
3546         lookup_dynamic_token_class with valid_token == FALSE.
3547
3548         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
3549
3550         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
3551
3552         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
3553         
3554 2007-12-10  Mark Probst  <mark.probst@gmail.com>
3555
3556         * gc.c: Don't delay threadpool thread finalization unless Mono is
3557         shutting down.
3558
3559 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
3560
3561         * threads.c: turn an assert into a non-fatal warning.
3562
3563 2007-12-09  Robert Jordan  <robertj@gmx.net>
3564
3565         * icall.c (GetVirtualMethod): Add missing argument validation.
3566
3567 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
3568
3569         * verify.c (do_cast): added.
3570
3571         * verify.c (mono_method_verify): property verification of castclass and isinst.
3572
3573
3574 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
3575
3576         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
3577
3578         * verify.c (do_stelem): added.
3579
3580         * verify.c (mono_method_verify): property verification of stelem.X.
3581
3582 2007-12-07  Mark Probst  <mark.probst@gmail.com>
3583
3584         * class.c, class-internals.h: Introduce an environment variable
3585         (MONO_GENERIC_SHARING) through which the extent of generic code
3586         sharing can be controlled (share all classes, share only corlib
3587         classes, or share nothing).
3588
3589         * object.c: Only create runtime generic context for classes for
3590         which sharing is enabled.
3591
3592 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
3593
3594         * verify.c (do_ldelem): refactor it to work with ldelem.any.
3595
3596         * verify.c (mono_method_verify): property verification of ldelem.any.
3597
3598 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
3599
3600         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
3601         added ldelem.X opcodes.
3602
3603         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
3604
3605         * verify.c: proper verification of ldelem.X 
3606
3607 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
3608
3609         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
3610
3611 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
3612
3613         * verify.c (mono_method_verify): null literal requires special handling,
3614         the value pushed on stack need to be flagged as so.
3615
3616         * verify.c (do_ldelema): Verify ldelema properly.
3617
3618 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
3619
3620         * verify.c: Verify ldlen properly.
3621
3622 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
3623
3624         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
3625         to the target object's type. Fixes #346160.
3626
3627 2007-12-05  Dick Porter  <dick@ximian.com>
3628
3629         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
3630         Solaris needs the same workaround as BSD-derived systems.  Fixes
3631         bug 323524, patch by Burkhard Linke
3632         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
3633
3634 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
3635
3636         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
3637         handle to use when error dialog is shown; otherwise, update mask
3638         to show no error dialog when an error occurs.
3639
3640 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
3641
3642         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
3643
3644         * class.c (mono_class_get_field_default_value): New helper function to initialize
3645         field->def_type and field->data.
3646
3647 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
3648
3649         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
3650         the general one.
3651
3652         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
3653
3654         * marshal.c: Avoid depending on delegate->method_info being set.
3655
3656         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
3657         
3658         * object.c (mono_delegate_ctor): Set delegate->method.
3659
3660         * object-internals.h (struct _MonoDelegate): Add 'method' field.
3661
3662         * appdomain.c: Bump corlib version.
3663
3664 2007-11-27  Raja R Harinath  <harinath@gmail.com>
3665
3666         * metadata.c (mono_generic_inst_equal_full): Short-circuit
3667         equality check if we're comparing canonicalized MonoGenericInsts.
3668
3669 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
3670
3671         * class.c (generic_array_methods): Call mono_class_setup_methods () before
3672         accessing class->methods.
3673
3674 2007-11-22  Dick Porter  <dick@ximian.com>
3675
3676         * threads.c: Ensure that the synch_cs is set before trying to use
3677         it.
3678
3679 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
3680
3681         * profiler.c: r89126 broke the statistial profiler, unbreak.
3682
3683 2007-11-22  Martin Baulig  <martin@ximian.com>
3684
3685         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
3686
3687         * mono-debug.c
3688         (mono_debug_debugger_version): Bump to 3.
3689         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
3690         -> mono_debugger_class_initialized().
3691
3692         * mono-debug-debugger.c
3693         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
3694
3695         * class.c
3696         (mono_debugger_start_class_init_func): Removed.
3697         (mono_debugger_class_loaded_methods_func): Added.
3698         (mono_class_setup_methods): Call it here.
3699
3700 2007-11-22  Martin Baulig  <martin@ximian.com>
3701
3702         * mono-debug.c
3703         (mono_debug_add_delegate_trampoline): New public method.
3704         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
3705
3706         * mono-debug.h
3707         (MonoSymbolTable): Added `global_data_table'.
3708         (MonoDebuggerTypeKind): Removed.
3709
3710 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
3711
3712         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
3713         these methods.
3714
3715         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3716         
3717 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
3718
3719         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
3720
3721 2007-11-20  Martin Baulig  <martin@ximian.com>
3722
3723         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
3724
3725         * mono-debug-debugger.c
3726         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
3727         (mono_debugger_remove_breakpoint): Likewise.
3728         (mono_debugger_check_breakpoints): Likewise.
3729         (mono_debugger_register_class_init_callback): New public method.
3730         (mono_debugger_remove_class_init_callback): Likewise.
3731         (mono_debugger_add_type): Likewise.
3732
3733         * mono-debug-debugger.h
3734         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
3735
3736 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
3737
3738         * class.c: more interface implementations needed for the
3739         array enumerator (fixes bug #341112).
3740
3741 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
3742
3743         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
3744         fix ParamName of ArgumentNullExceptions.
3745
3746 2007-11-17  Miguel de Icaza  <miguel@novell.com>
3747
3748         * reflection.c (mono_reflection_encode_sighelper): Generate the
3749         modopts and modreqs.   I have a useless test that crashes monodis,
3750         but that shows the code working.
3751
3752 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
3753
3754         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
3755         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
3756
3757 2007-11-15  Dick Porter  <dick@ximian.com>
3758
3759         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
3760         When joining a thread, it's the thread that's calling Join that
3761         gets WaitSleepJoin state not the target.  Fixes the standalone
3762         test case in bug 334740, and hopefully the whole bug too.
3763
3764 2007-11-15  Dick Porter  <dick@ximian.com>
3765
3766         * process.c: Read file version info from the files pointed at by
3767         process modules, not the current process.  Fixes bug 315969.
3768
3769         Use windows typedef names in some places to fix warnings on the
3770         windows build.
3771
3772 2007-11-15  Mark Probst  <mark.probst@gmail.com>
3773
3774         * image.c, metadata-internals.h: Added a generic_class_cache hash
3775         to MonoImage for looking up generic classes when sharing generics.
3776
3777 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
3778
3779         * sgen-gc.c: warning cleanups.
3780
3781 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
3782
3783         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
3784         inherited properties.
3785
3786 2007-11-14  Mark Probst  <mark.probst@gmail.com>
3787
3788         * object.c, class-internals.h: Added more information to the
3789         runtime generic context.
3790
3791 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
3792
3793         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
3794         instead of just the target method. Generalize the abstract method handling to
3795         handle any non-static method.
3796
3797         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
3798         mono_marshal_get_delegate_invoke () signature change.
3799
3800 2007-11-13  Mark Probst  <mark.probst@gmail.com>
3801
3802         * class.c, class-internals.h: Made
3803         mono_type_get_basic_type_from_generic () public.  Fixed member
3804         access check for shared generics.
3805
3806         * loader.c: Don't insert field into field cache if it's part of a
3807         non-inflated generic class.
3808
3809         * domain.c, domain-internals.h: The generic sharing context is now
3810         part of the jit info data structure.  Added two accessor
3811         functions.
3812
3813 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
3814
3815         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
3816         the array Get/Set/Address methods, since the JIT inlines them.
3817
3818         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
3819
3820         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
3821         (mono_image_init): Initialize runtime_invoke_direct_cache.      
3822
3823         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
3824         mono_marshal_get_delegate_invoke signature change.
3825
3826         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
3827         an additional argument. Add support for invoking abstract methods.
3828
3829         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
3830
3831         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
3832
3833 2007-11-09  Mark Probst  <mark.probst@gmail.com>
3834
3835         * class.c: Do field layout for open generic classes as well.
3836
3837 2007-11-09  Mark Probst  <mark.probst@gmail.com>
3838
3839         * gc.c, gc-internal.h: Don't finalize threadpool threads with
3840         other objects, because the threadpool is still around.  Put them
3841         in a list instead and after finalizing all other objects in the
3842         root domain shut down the thread pool and then finalize the
3843         threads.  Fixes bug #337383.
3844
3845         * threads.c, thread-types.h: New mono_thread_create_internal()
3846         function for marking a thread with the threadpool flag before it
3847         started.  Set synch_cs to NULL after freeing it.
3848
3849         * threadpool.c: Mark threadpool threads before they start.
3850
3851 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
3852
3853         * reflection.h, reflection.c: don't export random functions
3854         and lazy load dbnull and missing objects.
3855
3856 2007-11-07  Jonathan Chambers <joncham@gmail.com>
3857
3858         * class.c: Initialize COM types if COM interfaces
3859         are present (not just COM classes).
3860         
3861         Code is contributed under MIT/X11 license.
3862
3863 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
3864         * reflection.c:
3865         create_dynamic_mono_image: hook module profiler events (dynamic case).
3866         mono_image_basic_init: hook assembly profiler events (dynamic case).
3867
3868 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
3869         * profiler.c:
3870         simple_appdomain_unload: completely terminate the profiler
3871         instead of only processing the statistical samples.
3872         simple_shutdown: make sure this is really called exactly once,
3873         even in multithreaded applications, and always listen to
3874         appdomain events.
3875         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
3876         here, the "[un]load" functions will do it.
3877         Fixes bugs #333791 and #325261.
3878
3879 2007-11-07  Geoff Norton  <gnorton@novell.com>
3880
3881         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
3882         rather than depend on __APPLE__.
3883
3884 2007-11-07  Mark Probst  <mark.probst@gmail.com>
3885
3886         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
3887
3888 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
3889
3890         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
3891         UTF16 MonoString. Fix the crash from bug #335488
3892
3893 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
3894
3895         * marshal.c: Correct (for non-Win32 OS) length != size in 
3896         mono_string_from_bstr. Fix #339530.
3897
3898 2007-11-06  Geoff Norton  <gnorton@novell.com>
3899
3900         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
3901         to succeed
3902
3903 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
3904
3905         * process.c: Added run-time GetProcessId API detection for Windows.
3906
3907 2007-11-04  Miguel de Icaza  <miguel@novell.com>
3908
3909         * reflection.c  (mono_param_get_objects): If a parameter has the
3910         attribute [System.Runtime.InteropServices.Optional] we should
3911         set the DefaultValue of the ParameterInfo to be
3912         System.Reflection.Missing instead of DBNull.
3913
3914         See bug #339013.
3915
3916         (mono_get_reflection_missing_object): New method,
3917         returns the System.Reflection.Missing.Value singleton instance.
3918
3919 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
3920
3921         * culture-info-table.h : regenerated.
3922
3923 2007-11-02  Jonathan Chambers <joncham@gmail.com>
3924
3925         * icall.c: Use GetEnvironmentStrings on windows
3926         so we are using the same environment block as 
3927         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
3928         #333740.
3929         
3930         Code is contributed under MIT/X11 license.
3931
3932 2007-10-31  Martin Baulig  <martin@ximian.com>
3933
3934         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
3935
3936         * mono-debug-debugger.h
3937         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3938
3939 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
3940
3941         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
3942         classes.
3943
3944 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
3945
3946         * culture-info-table.h : regenerated.
3947
3948 2007-10-30  Robert Jordan  <robertj@gmx.net>
3949
3950         * icall-def.h, icall.c:
3951         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
3952
3953         Code is contributed under MIT/X11 license.
3954
3955 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
3956
3957         * class.c (mono_class_setup_vtable): Find the inflated methods in the
3958         inflated class instead of inflating them again.
3959         
3960         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
3961         dynamic case.
3962
3963         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
3964         Call setup_supertypes () after klass->parent is set.
3965         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
3966
3967         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
3968         for inflated instances of not yet created dynamic generic classes.
3969         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
3970         times from inflated_method.
3971         (methodbuilder_to_mono_method): Ditto.
3972
3973 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
3974
3975         * gc.c: code cleanup and removed old untested option of not creating the
3976         finalizer thread.
3977
3978 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
3979
3980         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
3981         creating a jump trampoline for dynamic methods.
3982
3983 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
3984
3985         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
3986         generic TypeBuilders when called from another method of the same type (bug #335131).
3987
3988
3989 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
3990
3991         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
3992         doesn't seem to work perfectly.
3993         
3994         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
3995         called multiple times.
3996         (methodbuilder_to_mono_method): Ditto.
3997         (resolve_object): Inflate FieldBuilder's.
3998
3999 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
4000
4001         * string-icalls.c, string-icalls.h, appdomain.c: patch from
4002         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
4003         RemoveEmptyEntries in the string.Split implementation (bug #322375).
4004
4005 2007-10-26  Dick Porter  <dick@ximian.com>
4006
4007         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
4008         Thread initialisation changes
4009
4010 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
4011
4012         * verify.c: fix compatibility check between arrays and System.Array
4013
4014 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
4015
4016         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
4017         too. Fixes #336999.
4018
4019 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
4020
4021         * object.c (mono_value_box): Use typed allocation here.
4022
4023 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
4024
4025         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
4026         trampoline instead of compiling the method right away.
4027
4028         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
4029
4030 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
4031
4032         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
4033         related fields for dynamic classes. Fixes #334493.
4034
4035 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
4036
4037         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
4038         
4039         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
4040
4041         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
4042         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
4043
4044         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
4045
4046         * reflection.c (create_generic_typespec): Initialize klass->generic_container
4047         if needed.
4048         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
4049
4050 2007-10-18  Jonathan Chambers <joncham@gmail.com>
4051
4052         * marshal.c: Use correct key when removing item
4053         from ccw_hash.
4054         
4055         Code is contributed under MIT/X11 license.
4056
4057 2007-10-17  William Holmes  <billholmes54@gmail.com>
4058
4059         *marshal.c: Adding a case to marshal booleans to U1
4060
4061         Code is contributed under MIT/X11 license.
4062
4063 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
4064
4065         * class.c (mono_class_from_name): Search the modules compromising dynamic
4066         assemblies. Fixes #331601.
4067
4068 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
4069
4070         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
4071         exception if the type name contains an assembly component. Fixes #334203.
4072
4073         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
4074         modules inside dynamic assemblies. Fixes #334200.
4075         
4076         * reflection.c: Set image->public_key and image->public_key_length;
4077
4078         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
4079         fields.
4080
4081         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
4082         
4083 2007-10-16  Mark Probst  <mark.probst@gmail.com>
4084
4085         * metadata.c: Implemented correct comparing of generic classes.
4086         An inflated generic class can be equal to a non-inflated one if it
4087         is inflated with generic type variables as type arguments.  Fixes
4088         bug #333798.
4089
4090 2007-10-15  Dick Porter  <dick@ximian.com>
4091
4092         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
4093         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
4094         81646.
4095
4096         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
4097         instead of a monitor lock.  This means that monitor_try_enter and
4098         co can set the thread state safely.
4099         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
4100         thread_interrupt_requested, so interrupt actually works.
4101
4102         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
4103         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
4104         state accessor function
4105
4106 2007-10-15  Martin Baulig  <martin@ximian.com>
4107
4108         * mono-debug.h
4109         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
4110         the debugger with the current runtime.
4111
4112 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
4113
4114         * object.c, object-internals.h: added the ability to set a single
4115         trampoline for all the slots in a vtable.
4116
4117 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
4118
4119         * marshal.c: deal with a possible race condition during multicast
4120         delegate invocation.
4121
4122 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
4123
4124         * class.c: ensure value type methods don't have the synchronized
4125         flag set.
4126
4127 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
4128
4129         * string-icalls.c, string-icalls.h: reverted unapproved patch that
4130         breaks the build.
4131
4132 2007-10-11  Joel Reed  <joelwreed@comcast.com>
4133
4134         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
4135         to take an options parameter so that empty entries can be removed during
4136         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
4137
4138 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
4139
4140         * marshal.c: make sure we don't store the signature from a dynamic
4141         method into the runtime invoke cache (bug #327189).
4142
4143 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
4144
4145         * marshal.c: make sure the wrapper methods are properly initialized.
4146
4147 2007-10-11  Mark Probst  <mark.probst@gmail.com>
4148
4149         * metadata.c, metadata-internals.h: Generalized
4150         mono_type_stack_size() to mono_type_stack_size_internal() which
4151         takes an additional argument specifying whether it allows open
4152         types.
4153
4154 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
4155
4156         * verify.c (do_invoke_method): handle typedbyref params
4157         correctly and check for unverifiable return values.
4158
4159         * verify.c (do_newobj): fix a warning.
4160
4161 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
4162
4163         * verify.c: don't tread typedbyref as allways unverifable,
4164         so uses, like (ld/st)loc.0 are valid. verify for the cases
4165         that it matters, like boxing related operations.
4166
4167 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
4168
4169         * verify.c: add verification of the newobj opcode. verification
4170         of delegate instantation still missing due ldftn and virldftn not
4171         pushing the function type on stack
4172
4173 2007-10-08  Mark Probst  <mark.probst@gmail.com>
4174
4175         * class-internals.h: Runtime generic context data structure
4176         definition.
4177
4178         * object.c: Initialization of runtime generic context at runtime
4179         vtable creation time.
4180
4181 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
4182         * class.c (mono_class_create_from_typedef,
4183         mono_class_from_generic_parameter, mono_ptr_class_get,
4184         mono_fnptr_class_get, mono_bounded_array_class_get)
4185         * domain.c (mono_domain_create, mono_domain_free)
4186         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
4187         * image.c (do_mono_image_load, mono_image_close):
4188         Hooked up load-unload profiler events.
4189
4190 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
4191
4192         * domain.c: track statistics about the actual amount of native code
4193         allocated.
4194
4195 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
4196
4197         * class.c: the valuetype enumerators don't have the additional
4198         supertypes interfaces.
4199
4200 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
4201
4202         * class.c: need more interfaces setup for the IEnumerator<T>
4203         object created for arrays (tests/ienumerator-interfaces.2.cs).
4204
4205 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
4206
4207         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
4208
4209 2007-10-05  Alp Toker  <alp@atoker.com>
4210
4211         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
4212         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
4213         #315863.
4214
4215 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
4216
4217         * verify.c (verify_type_compatibility_full): verification of
4218         compatibility improved, validates correctly non-strict checks between
4219         native int and I4 types different than (unsigned)int32.
4220
4221         * verify.c (do_store_indirect): added, do all verification of
4222         ldind.X opcodes. 
4223
4224         * verify.c (get_load_indirect_mono_type): renamed to
4225         get_indirect_op_mono_type, as it now returns the MonoType for 
4226         ldind.X and stind.X opcodes.
4227
4228 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
4229
4230         * reflection.c: Fix the encoding of generic type definition for
4231         TypeBuilders.
4232
4233         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
4234         mono_image_typedef_or_ref but allows to specify if typespec lookups should
4235         be made. Typespec check is done prior to typeref cache lookup.
4236
4237         * reflection.c (mono_image_typedef_or_ref): now just delegate to
4238         mono_image_typedef_or_ref_full.
4239
4240         * reflection.c (encode_generic_class): encode the generic class
4241         directly instead of calling encode_type.
4242
4243         * reflection.c (encode_type): encode the generic type definition
4244         MonoClass as a generic instantiation.
4245
4246         * reflection.c (create_typespec): cache typespec tokens in
4247         the assembly->typespec cache. Don't create typespec for a generic
4248         instance MonoClass. Create typespec for the generic type defintion.
4249
4250         * reflection.c (create_generic_typespec): encode the generic
4251         class directly instead of calling encode_type.
4252
4253         * reflection.c (mono_image_create_token): encode the generic
4254         type definition not using a typespec for MonoType instances.
4255
4256
4257 2007-10-04  Raja R Harinath  <rharinath@novell.com>
4258
4259         Fix #328812
4260         * class.c (mono_image_init_name_cache): Don't return nested
4261         'protected internal' classes.
4262         (mono_class_from_name_case): Likewise.
4263
4264 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
4265
4266         * icall-def.h, icall.c : get_bundled_machine_config() is now the
4267           common function used by both DefaultConfig in System.dll and
4268           InternalConfigurationHost in System.Configuration.dll.
4269
4270 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
4271
4272         * class.c: automatically add to vectors only a few essential explicit
4273         generic interfaces. The rest of the interfaces that arrays should
4274         provide are currently implicitly added (but still not lazily, see the
4275         design in the discussion of bug#325495 for the details of what is
4276         needed for that). Additionally, implicit interfaces are assigned the
4277         same vtable slot as the explicit interfaces (as they are compatible):
4278         this enables huge memory savings since we don't need to instantiate
4279         as many memthods and as large vtables anymore. Also, Since
4280         GetEnumerator<T> returns an instance of a type that is required to
4281         support a similarly large set of interfaces as arrays, we add
4282         implicit interfaces and interface offset sharing support to those
4283         types, too. This change adds all the required interfaces so that
4284         the anonarray.cs test case in the bug report works (we don't add
4285         all the interfaces to arrays of arrays 3-level deep and more because
4286         of the memory requirements explained in the bug and since they are much
4287         less common: the lazy-loading support will enabled them to work, too).
4288
4289 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
4290
4291         * verify.c (merge_stacks): major clean up, all type compatibility
4292         checks are done by verify_type_compatibility. This fix my earlier lack
4293         of understanding of the CLR type system and merge_stacks no longer looks
4294         scary.
4295
4296         * verify.c: fixed some bad spelling.
4297
4298 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
4299
4300         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
4301         a given stack slock.
4302         
4303         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
4304         verify_type_compatibility_full. This removed a near indentical function and fixed
4305         handling of Int32 and IntPtr across all opcodes.
4306
4307 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
4308
4309         * class.c: only vectors have the additional generic interfaces.
4310
4311 2007-10-01  Jonathan Chambers <joncham@gmail.com>
4312
4313         * mono-config.c: Use g_strcasecmp instead of
4314         strcasecmp like everywhere else to fix
4315         compilation with MSVC.
4316         
4317         Code is contributed under MIT/X11 license.
4318
4319 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
4320
4321         * object.c, object-internals.h: refactored the IMT code to enable
4322         building a single slot at a time and lazily creating the IMT trampolines
4323         and thunks.
4324
4325 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
4326
4327         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
4328
4329         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
4330         Fixes #328501.
4331         
4332 2007-09-29  Raja R Harinath  <harinath@gmail.com>
4333
4334         * loader.c (method_from_methodspec): Rearrange to avoid
4335         un-necessary exposition.  Don't assert out if the method's
4336         declaring type is a generic type definition.
4337
4338 2007-09-28  Martin Baulig  <martin@ximian.com>
4339
4340         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
4341
4342 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
4343
4344         * class-internals.h: optimize field layout of MonoClass to
4345         requires less cachelines at runtime and save a few bytes on 64 bit
4346         systems.
4347
4348 2007-09-28  Jb Evain  <jbevain@novell.com>
4349
4350         * reflection.c: when encoding type names in custom attributes,
4351         if the type is a closed generic type, its generic arguments
4352         have to be serialized as AssemblyQualifiedName, so that when
4353         they are deserialized, it's possible to re-create them properly.
4354         Fixes #329450.
4355
4356
4357 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
4358
4359         * object.c, class-internals.h: added delegate-creation counter.
4360
4361 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
4362
4363         * class.c: cleanup of the code that synthetizes interfaces for
4364         arrays in 2.0: saves quit a bit of corlib mempool memory.
4365         Code to fix bug #325495 ifdeffed out for now until the issues
4366         with memory usage and O(n^2) behaviour are fixed.
4367
4368 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
4369
4370         * marshal.c: when possible, do not duplicate the name of the methods
4371         in the method builder and in the generated MonoMethod.
4372
4373 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
4374         * verify.c: added support for type checking ldind_* opcodes.
4375
4376 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
4377
4378         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
4379         which is used to distinguish the fully open instantiation of a TypeBuilder
4380         with the rest. This temporary hack is required to restore the property that
4381         the fully open instantiation is the same type of the generic type definition.
4382
4383         * class-internals.h (mono_generic_class_is_generic_type_definition):
4384         new function as part of the internal API.
4385
4386         * class.c (inflate_generic_type): return NULL when the generic inst is
4387         fully open. The fully open generic type is now the same as the generic type
4388         definition for non TypeBuilder types.
4389
4390         * class.c (mono_generic_class_get_class): removed assert since it is
4391         no longer valid, gklass->cached_class can point to the generic type definition.
4392
4393         * class.c (mono_generic_class_is_generic_type_definition): new.
4394
4395         * metadata.c (mono_generic_class_hash): added is_tb_open field
4396         to the hash calculation.
4397
4398         * metadata.c (free_generic_class): if the generic class is associated
4399         with the generic type definition, its field will come from the mempool and
4400         must not be freed.
4401
4402         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
4403         new, this function identifies the corner case of a TypeBuilder fully open
4404         instantiation.
4405
4406         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
4407         for lookup. Set gclass->cached_class to be the container class in case of
4408         the fully open instantiation of non TypeBuilder types.
4409
4410         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
4411         to compare generic classes.
4412
4413         * reflection.c (method_encode_methodspec): remove assert that
4414         no longer is valid.
4415
4416         * reflection.c (mono_reflection_generic_class_initialize): add
4417         an aditional assert to ensure the proper type is used.
4418
4419 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
4420
4421         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
4422         to enjoy it.
4423
4424 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
4425
4426         * verify.c (push_arg): Fixed support for ldarga
4427         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
4428         MonoType used as first arg in case of instance calls.
4429
4430 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
4431
4432         * verify.c: Support for verifying VAR and MVAR types, 
4433
4434 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
4435
4436         * icall.c (ves_icall_get_property_info): Set the reflected type of the
4437         accessors correctly.
4438
4439 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
4440
4441         * threads.c: support OSX and other systems in
4442         mono_thread_get_stack_bounds (bug #328026).
4443
4444 2007-09-25  Martin Baulig  <martin@ximian.com>
4445
4446         * mono-debug.h
4447         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
4448
4449 2007-09-24  Martin Baulig  <martin@ximian.com>
4450
4451         * mono-debug.h
4452         (MonoDebugClassEntry): Moved the definition of this struct into
4453         mono-debug.c to make it private.
4454
4455         * mono-debug.c
4456         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
4457         type table per symbol file, we don't need to store the symfile id
4458         any longer.
4459
4460 2007-09-24  Martin Baulig  <martin@ximian.com>
4461
4462         Create one type table per symbol file, since a `MonoClass *' gets
4463         invalid when its image is unloaded.
4464
4465         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
4466         (MonoDebugHandle): Added `type_table'.
4467
4468 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
4469
4470         * mempool.c, mempool.h: added mono_mempool_new_size () API
4471         to be able to specify a smaller initial size for the pool.
4472         Adjusted the code to slowly increase pool size before using
4473         the previous default size.
4474         * image.c: use a small initial size for image mempools.
4475
4476 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
4477
4478         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
4479         Fixes ##320990.
4480
4481         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
4482         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
4483
4484 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
4485
4486         * metadata.c (mono_type_create_from_typespec): Remove an invalid
4487         free. Fixes #327438.
4488
4489 2007-09-21  Raja R Harinath  <harinath@gmail.com>
4490
4491         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
4492         generic instantiations, etc.
4493         <MONO_TYPE_ARRAY>: Likewise.
4494
4495 2007-09-21  Martin Baulig  <martin@ximian.com>
4496
4497         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
4498         these structs were never defined.
4499         (MonoDebugHandle): Removed the `_priv' field, it was never used.
4500
4501 2007-09-21  Martin Baulig  <martin@ximian.com>
4502
4503         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
4504
4505 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
4506
4507         * image.c: removed the guid hash tables: we can get the same info
4508         without the additional memory usage hit (partially fixes also bug #327052).
4509
4510 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
4511
4512         * profiler.h, profiler-private.h, profiler.c: add a new profiler
4513         event to handle unloading methods. After the event is called, the
4514         corresponding MonoMethod* must be considered invalid.
4515         * loader.c (mono_free_method): call the new mono_profiler_method_free
4516         event.
4517
4518 2007-09-20  Mark Probst  <mark.probst@gmail.com>
4519
4520         * domain-internals.h: New flag in MonoJitInfo which marks shared
4521         generic methods.  New hash table (shared_generics_hash) in
4522         MonoDomain to keep track of shared generic methods.  Prototypes
4523         for functions to register and lookup shared generic methods.
4524
4525         * domain.c: Support for registering and looking up shared generic
4526         methods via a hash table (shared_generics_hash) in MonoDomain.
4527
4528         * class-internals.h: New exception to signal failure of shared
4529         compilation of a generic method.  New counters for generics
4530         sharing in MonoStats.
4531
4532 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
4533
4534         * image.c, metadata-internals.h: don't keep a file descriptor open
4535         for loaded assemblies (bug#325988).
4536
4537 2007-09-19  Raja R Harinath  <rharinath@novell.com>
4538
4539         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
4540         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
4541         use the corresponding datatypes.
4542         (type_in_image): Update to changes.
4543         (CleanForImageUserData): Simplify.
4544         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
4545         Avoid quadratic behaviour in handling the "stolen" list by
4546         separating the filter predicate out, and by prepending the stolen
4547         items rather than appending them.
4548         (steal_ginst_in_image): Likewise.
4549         (mono_metadata_clean_for_image): Update to changes.
4550
4551 2007-09-19  Martin Baulig  <martin@ximian.com>
4552
4553         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
4554
4555 2007-09-19  Martin Baulig  <martin@ximian.com>
4556
4557         * mono-debug.c (mono_debug_cleanup): Don't call
4558         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
4559
4560 2007-09-19  Raja R Harinath  <harinath@gmail.com>
4561
4562         Fix crash on 'make run-test' in mcs/errors
4563         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
4564         Avoid more potential allocations in mono_class_from_mono_type.
4565         (ginst_in_image): Update to changes.
4566         (gclass_in_image): Rearrange slightly.
4567
4568 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
4569
4570         * class.c (mono_class_init): Move the code that sets up class->methods to 
4571         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
4572
4573         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
4574         canonical instance of an inflated generic signature.
4575         (mono_type_create_from_typespec): Remove an invalid free.
4576
4577         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
4578
4579 2007-09-18  Marek Habersack  <mhabersack@novell.com>
4580
4581         * domain-internals.h: added a declaration of the
4582         mono_assembly_load_full_nosearch internal function.
4583
4584         * assembly.c (mono_assembly_load_with_partial_name): use
4585         mono_try_assembly_resolve return value properly.
4586         (mono_assembly_load_full_nosearch): copied the function body from
4587         mono_assembly_load_full, without the code to invoke assembly
4588         search hooks.
4589         (mono_assembly_load_full): calls the above new function and if the
4590         assembly is not resolved, invokes the search hooks.
4591
4592         * appdomain.c (mono_runtime_init): restore the global postload
4593         assembly search handlers.
4594
4595 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
4596
4597         * class.c (mono_class_init): Make sure class->methods and class->properties
4598         are never NULL in the generics case.
4599
4600         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
4601
4602 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
4603
4604         * metadata.c (free_generic_class): Disable some code to fix the build.
4605
4606         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
4607
4608         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
4609         from the image mempool.
4610
4611         * metadata.c (free_generic_class): Free more data from the inflated class.
4612
4613         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
4614
4615         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
4616         mempool.
4617         (mono_type_create_from_typespec): Ditto.
4618
4619         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
4620         MonoImage to the caller.
4621         (mono_init_internal): Save the opened image in a global variable.
4622         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
4623
4624         * reflection.c (resolve_object): Fix a leak.
4625
4626         * metadata.c: Fix the freeing of data in the generics caches.
4627         
4628         * metadata.c (free_generic_inst): Comment this out to fix the build.
4629         (free_generic_class): Ditto.
4630
4631         * metadata.c: Free cached generic methods, instantinations and classes when
4632         they are removed from the caches.
4633         (mono_metadata_free_type): Free the type itself.
4634
4635         * class.c: Free the result of mono_class_inflate_generic_type () in a few
4636         places.
4637
4638 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
4639
4640         * boehm-gc.c: restrict managed allocs to __thread supporting
4641         architectures.
4642
4643 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
4644
4645         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
4646         (mono_generic_class_get_class): Fix a leak.
4647
4648         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
4649         mono_metadata_free_type ().
4650         (mono_metadata_inflate_generic_inst): Fix a leak.
4651
4652 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
4653
4654         * mono-debug.c (free_header_data): Fix a leak missed earlier.
4655
4656         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
4657         mempool.
4658
4659         * mono-debug.c (mono_debug_close_image): Fix call to 
4660         g_hash_table_remove ().
4661
4662 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
4663
4664         * icall-def.h: redirect all the string ctor to the managed
4665         CreateString () methods.
4666         * string-icalls.c, string-icalls.h: removed dead code for string
4667         ctors and icalls.
4668
4669 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
4670
4671         * mono-debug.c: Fix memory leaks.
4672
4673 2007-09-14  Jonathan Chambers <joncham@gmail.com>
4674
4675         * threads-types.h: Implement mono_hazard_pointer_set and 
4676         mono_hazard_pointer_clear macros using do/while(0) to fix
4677         compilation with MSVC.
4678         
4679         Code is contributed under MIT/X11 license.
4680
4681 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
4682
4683         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
4684         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
4685
4686 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
4687
4688         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
4689         icalls.
4690
4691 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
4692
4693         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
4694         managed-code allocated as well.
4695
4696 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
4697
4698         * class.c (mono_class_is_assignable_from): Add support for generic variance.
4699
4700 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
4701
4702         * boehm-gc.c: fixed the build after the AOT changes.
4703
4704 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
4705
4706         * wrapper-types.h: Add an ALLOC wrapper type.
4707
4708         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
4709         reference managed allocator methods.
4710
4711 2007-09-12  Marek Safar  <marek.safar@gmail.com>
4712
4713         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
4714         of Type array and not MonoType, a fix suggested by Hari.
4715         
4716 2007-09-12  Jonathan Chambers <joncham@gmail.com>
4717
4718         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
4719         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
4720         
4721         Code is contributed under MIT/X11 license.
4722
4723 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
4724
4725         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
4726
4727 2007-09-12  Marek Habersack  <mhabersack@novell.com>
4728
4729         * image.c (do_mono_image_open): if assembly file fails to open and
4730         MONO_IOMAP is in effect, try to find the path in a
4731         case-insensitive way.
4732
4733         * appdomain.c (mono_runtime_init): do not install postload hooks -
4734         tests show that MS.NET doesn't use anything of that sort to
4735         trigger the AppDomain.AssemblyResolve event.
4736         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
4737         made non-static.
4738         (mono_runtime_init): init portability helpers here.
4739
4740         * assembly.c (mono_assembly_load_with_partial_name): if other   
4741         attempts fail, trigger the AppDomain.AssemblyResolve event handler
4742         to resolve the assembly.
4743
4744         * domain-internals.h: added mono_try_assembly_resolve and marked
4745         it as internal.
4746
4747 2007-09-11  Jb Evain  <jbevain@novell.com>
4748
4749         * object-internals.h (MonoReflectionDynamicMethod): add
4750         a `MonoReflectionType *owner` field. The owner is used
4751         * reflection.c:
4752         (mono_reflection_create_dynamic_method): use the owner of the dynamic
4753         method as the class declaring the dynamic method.
4754         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
4755         dynamic method to the declaring type of the methodbuilder.
4756
4757 2007-09-11  Mark Probst  <mark.probst@gmail.com>
4758
4759         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
4760         rules for calling methods via reflection.
4761
4762 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
4763
4764         * reflection.c (resolve_object): Add support for MonoGenericClass. 
4765         Inflate MonoType's.
4766
4767 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
4768
4769         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
4770         provide a managed method that does fast allocations without needing
4771         a managed->unmanaged transition. Boehm GC implementation currently
4772         enabled for ptrfree objects on sane architectures.
4773
4774 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
4775
4776         * marshal.c, marshal.h: exported a couple of useful functions and
4777         added mono_mb_get_label () to easily handle backward branches.
4778
4779 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
4780
4781         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
4782
4783 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
4784
4785         * loader.c (find_method): Fixed the regression introduced while
4786         fixing bug #81466.
4787
4788 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
4789
4790         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
4791         well.
4792         
4793         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
4794         icall.c reflection.c: Pass a MonoGenericContext argument to 
4795         mono_lookup_dynamic_token ().
4796
4797         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
4798         #82744.
4799         
4800 2007-09-09  Robert Jordan  <robertj@gmx.net>
4801
4802         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
4803         for generic methods.
4804
4805         * object.c (mono_object_get_virtual_method): Handle generic methods.
4806         Fixes bug #78882.
4807
4808         Code is contributed under MIT/X11 license.
4809
4810 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
4811
4812         * image.c: fix locking in mono_image_load_file_for_image ().
4813
4814 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
4815
4816         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
4817         used only as a cache: added an icall to fill it.
4818
4819 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
4820
4821         * reflection.h: exposed mono_reflection_free_type_info
4822         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
4823         since mono_reflection_bind_generic_parameters makes a copy of it.
4824         * reflection.c (free_type_info): subinfos should be freed.
4825         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
4826         made non static.
4827         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
4828         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
4829         this fixes #82695 and #81726.
4830    
4831
4832 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
4833
4834         * process.h, process.c:  added support for user profile/info in
4835           ProcessStartInfo. For now only Windows works.
4836
4837 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
4838
4839         * metadata.c: consider the generic arguments when comparing
4840         signatures (bug #82614).
4841
4842 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
4843
4844         * cil-coff.h, image.c: updated assembly loader to cope with the
4845         PE32+ 64 bit file format.
4846
4847 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
4848
4849         * assembly.c, class.c, domain.c, loader.c: remove useless
4850         inclusion of cil-coff.h.
4851
4852 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
4853
4854         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
4855         if interface is marked with CoClassAttribute. 
4856    
4857         Code is contributed under MIT/X11 license.
4858
4859 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
4860
4861         * sgen-gc.c: ensure no object from the to space is copied again or finalized
4862         if it's seen twice in major collections.
4863
4864 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
4865
4866         * sgen-gc.c: big objects are not copied to the gray area, but they
4867         need to be considered for scanning, too, if they are brought alive
4868         by an object ready for finalizations or a survived one.
4869
4870 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
4871
4872         * sgen-gc.c: properly account the number of disappearing links when
4873         they are nullified.
4874
4875 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
4876
4877         * sgen-gc.c: share the code to scan the registered roots between the
4878         different types of collections.
4879
4880 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
4881
4882         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
4883
4884 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
4885
4886         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
4887         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
4888
4889 2007-08-28  Mark Probst  <mark.probst@gmail.com>
4890
4891         * security-manager.c (mono_security_manager_get_methods):
4892         LinkDemandSecurityException now has 2 arguments instead of 3.
4893
4894 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
4895
4896         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
4897         platforms which need it.
4898
4899 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
4900
4901         * sgen-gc.c: unregister thread data structures with a pthread_key_t
4902         dtor.
4903
4904 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
4905
4906         * threads.c: free the thread static data on thread exit.
4907
4908 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
4909
4910         * class.c: walk the hierarchy to find the generic definition for
4911         a class (fixes runtime part of bug #82498).
4912
4913 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
4914
4915         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
4916         ...
4917
4918         * image.c (mono_image_close): Here. Hopefully fixes #82510.
4919
4920 2007-08-24  Mark Probst  <mark.probst@gmail.com>
4921
4922         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
4923
4924 2007-08-24  Robert Jordan  <robertj@gmx.net>
4925
4926         * appdomain.c: don't perform the ':'->';' substitution on Win32.
4927
4928 2007-08-24  Jb Evain  <jbevain@novell.com>
4929
4930         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
4931         for byref types.
4932
4933 2007-08-24  Mark Probst  <mark.probst@gmail.com>
4934
4935         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
4936         #82286.
4937
4938 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
4939
4940         * assembly.c: Fix a warning.
4941         
4942 2007-08-23  Marek Habersack  <mhabersack@novell.com>
4943
4944         * appdomain.c: parse the <runtime> section looking for the probing
4945         element with the 'privatePath' attribute, which sets additional
4946         directories in which the runtime should look for assemblies.
4947
4948 2007-08-23  Robert Jordan  <robertj@gmx.net>
4949
4950         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
4951         Fixes #82499.
4952
4953 2007-08-23  Martin Baulig  <martin@ximian.com>
4954
4955         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
4956         _mono_debug_init_corlib() and remove it from the header file.
4957
4958 2007-08-23  Martin Baulig  <martin@ximian.com>
4959
4960         * mono-debug-debugger.c
4961         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
4962         don't notify the debugger about it.
4963
4964         * mono-debug-debugger.h
4965         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
4966
4967 2007-08-23  Robert Jordan  <robertj@gmx.net>
4968
4969         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
4970         Code is contributed under MIT/X11 license.
4971
4972 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
4973
4974         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
4975
4976 2007-08-22  Martin Baulig  <martin@ximian.com>
4977
4978         * mono-debug.c: Store debugging info on a per-domain basis and
4979         free it on domain unload.  Add support for unloading symbol files.
4980
4981         * mono-debug.h
4982         (MonoDebugList): New typedef.
4983         (MonoSymbolTable):
4984         - add `data_tables and `type_table'.
4985         - replace 'symbol_files' and `num_symbol_files' with a
4986           `MonoDebugList *'.
4987         (mono_debug_data_table): Removed.
4988         (mono_debug_list_add): New public function.
4989         (mono_debug_list_remove): New public function.
4990         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
4991         (mono_debug_init_2_memory): Renamed into
4992         mono_debug_open_image_from_memory().
4993         (mono_debug_close_image): New public function.
4994         (mono_debug_domain_create): Likewise.
4995         (mono_debug_domain_unload): Likewise.
4996         (MONO_DEBUGGER_VERSION): Bump to 60.
4997
4998         * mono-debug-debugger.h
4999         (MonoDebuggerEvent):
5000         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
5001         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
5002         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
5003         - rename `THREAD_CREATED' and `THREAD_EXITED' into
5004           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
5005         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
5006           meaning.
5007         (mono_debugger_add_symbol_file): Removed.
5008         (mono_debugger_add_type): Removed.
5009         (mono_debugger_lookup_type): Removed.
5010         (mono_debugger_lookup_assembly): Removed.
5011
5012         * domain.c
5013         (mono_domain_create): Call mono_debug_domain_create().
5014         (mono_init_internal): Call mono_debug_init_corlib().
5015
5016         * assembly.c
5017         (mono_assembly_close): Call mono_debug_close_image().
5018
5019 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
5020
5021         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
5022         mmap call.
5023
5024 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
5025
5026         * sgen-gc.c: ensure section->pin_queue_end is initialized
5027         correctly when non pinning objects in the section have been found.
5028
5029 2007-08-22  Marek Habersack  <mhabersack@novell.com>
5030
5031         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
5032         containing a list of directories separated by ':'. MSDN docs say
5033         the directories should be separated with ';'. Part of a bugfix for
5034         bug #81446
5035
5036 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
5037
5038         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
5039         it should MonoType and not MonoClass.
5040
5041 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
5042
5043         * culture-info-table.h : regenerated.
5044
5045 2007-08-20  William Holmes  <billholmes54@gmail.com>
5046
5047         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
5048          to call ReplaceFile Kernel32 on windows or in io-layer.
5049         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
5050         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
5051          as an internal call.
5052
5053         Code is contributed under MIT/X11 license.
5054
5055 2007-08-20  Jb Evain  <jbevain@novell.com>
5056
5057         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
5058         and MONO_EXCEPTION_FIELD_ACCESS.
5059
5060         * debug-helpers.[c|h]: new mono_field_full_name function.
5061
5062 2007-08-20  Mark Probst  <mark.probst@gmail.com>
5063
5064         * class.c: Removed class_security_level() and moved it to
5065         security-core-clr.c.
5066
5067         * security-core-clr.c, security-core-clr.h: class_security_level()
5068         is now public and renamed to mono_security_core_clr_class_level().
5069         It also looks for security attributes in the classes a class is
5070         nested in.
5071
5072 2007-08-20  Mark Probst  <mark.probst@gmail.com>
5073
5074         * security-core-clr.c, security-core-clr.h: CoreCLR security
5075         utility functions.
5076
5077         * Makefile.am: Added security-core-clr.[ch].
5078
5079         * security-manager.c, security-manager.h: Functions and enum for
5080         setting and getting the security mode.
5081
5082         * class.c: CoreCLR security checks.
5083
5084 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
5085
5086         * icall-def.h, process.c, process.h: implemented icall to get
5087         user/system processor times.
5088
5089 2007-08-17  Mark Probst  <mark.probst@gmail.com>
5090
5091         * domain.c, threads.c, class-internals.h, domain-internals.h: New
5092         reader-lock-free jit_info_table.
5093
5094 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
5095
5096         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
5097
5098         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
5099
5100         * object-internals.h (MonoException): Add missing _data member.
5101
5102 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
5103
5104         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
5105         checking that only methods with matching qname or fqname are picked
5106         from implemented interfaces.
5107
5108 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
5109
5110         * verify.c (do_newarr):added, do type verification of
5111         newarr ops, push the right value on the eval stack.
5112         * verify.c (mono_method_verify): use do_newarr
5113
5114
5115 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
5116
5117         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
5118         factored the common code into get_boxable_mono_type, which
5119         is now using mono_type_get_full, this fixed byref related tests.
5120
5121 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
5122
5123         * class.c: added mono_type_get_full, this function has the same
5124         behavior of mono_class_get_full but the returned MonoType has
5125         all metadata of the associated token in case of a typespec token.
5126         * class.c: added mono_type_retrieve_from_typespec, used by 
5127         mono_type_get_full to retrieve the token type.
5128         * class.c (mono_class_create_from_typespec): changed to use
5129         mono_type_retrieve_from_typespec.
5130         * class.c (mono_ldtoken): changed to use mono_type_get_full
5131         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
5132         * class-internals.h: exported mono_type_get_full for internal use.
5133
5134 2007-08-16  Jb Evain  <jbevain@novell.com>
5135
5136         * domain.c (supported_runtimes): add entry for
5137         the 'moonlight' runtime version.
5138
5139 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
5140
5141         * verify.c (mono_method_verify): small typo sliped in.  
5142
5143 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
5144
5145         * verify.c (do_unbox_value): added, do type verification of
5146         unboxing ops
5147         * verify.c (mono_method_verify): use do_unbox_value
5148
5149
5150 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
5151
5152         * verify.c (dump_stack_value): fixed typo, was printing string
5153         instead of object on stack.
5154         * verify.c (do_box_value): moved the byref check up as it leads
5155         to invalid code and should be done earlier.
5156         * verify.c: improved error messages for and ldobj
5157
5158 2007-08-15  William Holmes  <billholmes54@gmail.com>
5159
5160         * marshal.c (emit_marshal_custom): Omit the call to 
5161           marshal_native_to_managed when calling native to managed 
5162           and the argument is specified as an out argument.
5163
5164         Code is contributed under MIT/X11 license.
5165
5166 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
5167
5168         * verify.c: fixed the type checks for generics, function pointers and vectors.
5169         Added type verification for ldobj and ldtoken. The verifier
5170         would segfault if header or signature of a method contained references
5171         to non-existant types.
5172
5173 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
5174
5175         * marshal.c (cominterop_get_ccw): Patch from
5176         Bill Holmes to no walk up interface hierarchy. 
5177         All parent methods should be present in the interface for COM.
5178    
5179         Code is contributed under MIT/X11 license.
5180
5181 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
5182
5183         * marshal.c (emit_marshal_com_interface): Patch from
5184         Bill Holmes to handle COM Interfaces as return values
5185         for native->managed calls.
5186    
5187         Code is contributed under MIT/X11 license.
5188
5189 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
5190
5191         * marshal.c (cominterop_get_idispatch_for_object): Implement
5192         for runtime callable wrappers.
5193    
5194         Code is contributed under MIT/X11 license.
5195
5196 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
5197
5198         * pedump.c (main): changed from mono_init to mono_init_from_assembly
5199         so 2.0 types are accessible
5200
5201
5202 2007-08-13  Miguel de Icaza  <miguel@novell.com>
5203
5204         * domain.c (mono_init_internal): Call mono_assembly_load_friends
5205         once we load mscorlib.   Due to the order in which we initialize,
5206         the mono_assembly_load_full routine that loads mscorlib did not
5207         load friends.   We now load it once we load the
5208         mono_defaults.internals_visible_class class. 
5209
5210         * assembly.c: Expose the mono_load_friend_assemblies method.
5211
5212 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
5213
5214         * verify.c: improved the handling of boxing, better
5215         type checking for unary ops and conversion. Fix bug
5216         regarding managed pointer compatibility checking
5217
5218 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
5219
5220         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
5221
5222         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
5223
5224 2007-08-09  Raja R Harinath  <rharinath@novell.com>
5225
5226         * reflection.c (dup_type): Remove.
5227         * class.c (dup_type): Remove.
5228         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
5229         instead of the dodgy 'dup_type'.
5230         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
5231         handle the case where 'dup_type' needed the second argument.
5232
5233 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
5234
5235         * domain.c: Fix a warning.
5236
5237 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
5238
5239         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
5240         checking that methods with the same fqname are not overridden
5241         with a method from an ancestor.
5242
5243 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
5244
5245         * threads.c (free_thread_static_data_helper): Avoid a crash if
5246         thread->static_data is not yet set.
5247
5248 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
5249
5250         * marshal.c: Use correct image when emitting
5251         native wrapper for COM calls.
5252    
5253         Code is contributed under MIT/X11 license.
5254
5255 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
5256
5257         * icall-def.h, security.c, security.h :
5258           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
5259
5260 2007-08-07  Martin Baulig  <martin@ximian.com>
5261
5262         * mono-debug-debugger.h
5263         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
5264
5265         * domain.c (mono_domain_free): Call
5266         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
5267
5268 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
5269
5270         * verify.c (check_underflow, check_overflow): error message now returns IL offset
5271         * verify.c (in_same_block): code should test if either offset is inside the clauses
5272         * verify.c (mono_method_verify): push the exception into the eval stack of exception
5273         and filter blocks
5274
5275 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
5276
5277         * image.c (mono_image_close): Fix a leak.
5278
5279         * object.c (mono_runtime_invoke_array): Avoid using alloca.
5280
5281         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
5282
5283 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
5284
5285         * domain.c, threads.c, threads-types.h: fix memory retention issue
5286         with thread static variables not being cleared on domain unload.
5287         Reuse thread static slots after domain unload.
5288
5289 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
5290
5291         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
5292         nullable type.
5293
5294         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
5295         now done in mono_runtime_invoke_array.
5296
5297         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
5298         receiver is a nullable type.
5299
5300         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
5301         generic parameter.
5302
5303 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
5304
5305         * marshal.c: Implement COM Objects as return type for 
5306         managed->unmanaged calls. Added Release calls for COM Object
5307         out/return values in managed->unmanaged calls.
5308
5309         Code is contributed under MIT/X11 license.
5310
5311 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
5312
5313         * threads.h, threads-type.h: move the hazard pointer declarations
5314         to the private header.
5315
5316 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
5317
5318         * file-io.c, appdomain.c: memory leak fixes.
5319
5320 2007-08-02  Dick Porter  <dick@ximian.com>
5321
5322         * socket-io.c
5323         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
5324         SO_REUSEADDR setting into io-layer/sockets.c.
5325
5326 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
5327
5328         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
5329         from Object when called on a generic parameter. Fixes #82211.
5330
5331 2007-08-01  Dick Porter  <dick@ximian.com>
5332
5333         * file-io.c (convert_share): Test FileShare values bit-by-bit.
5334         Fixes bug 79250 yet again.
5335
5336 2007-07-30  Martin Baulig  <martin@ximian.com>
5337
5338         Merged the `debugger-dublin' branch.
5339
5340         * mono-debug.h
5341         (MonoDebugDataTable): New typedef.
5342         (MonoDebugMethodAddressList): New typedef.
5343         (MonoDebugWrapperData): Removed.
5344         (MonoDebugSymbolTable): Removed `current_data_table',
5345         `current_data_table_size', `current_data_table_offset'.
5346         (MonoDebugDataItemType): Moved into mono-debug.c.
5347         (MonoDebugMethodJitInfo): Remove `address'.
5348         (mono_debug_data_table): New global variable.
5349         (mono_debug_lookup_method_addresses): New public function.
5350         (mono_debug_find_method): Take a `MonoMethod *', not a
5351         `MonoDebugMethodInfo *'.
5352
5353         * mono-debug.c: Drop support for the old symbol tables.
5354
5355 2007-06-28  Martin Baulig  <martin@ximian.com>
5356
5357         * mono-debug.c (mono_debug_debugger_version): New public variable.
5358
5359 2007-07-31  William Holmes  <billholmes54@gmail.com>
5360
5361         * metadata.c Changed mono_type_create_from_typespec to not insert
5362           the type into the hash map until after
5363           do_mono_metadata_parse_type has completed.
5364         Fixes Bug #82194
5365         Code is contributed under MIT/X11 license.
5366
5367 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
5368
5369         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
5370         generic parameter. Fixes #82211.
5371
5372 2007-07-27  Jb Evain  <jbevain@novell.com>
5373
5374         * pedump.c (dump_metadata, dump_metadata_header): dump
5375         versions contained in the metadata header.
5376
5377 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
5378
5379         * threads.c: register small_id_table with the GC.
5380
5381 2007-07-27  Mark Probst  <mark.probst@gmail.com>
5382
5383         * threads.c, threads.h, class-internals.h, object-internals.h:
5384         Hazard pointers, to be used by lock-free parallel algorithms.
5385
5386 2007-07-26  Dick Porter  <dick@ximian.com>
5387
5388         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
5389         routine on non-windows platforms, as I've not managed to think of
5390         a non-kludgy way of doing this.  Finishes off bug 78739.
5391
5392 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
5393
5394         * object.c: properly setup interface_bitmap in proxy vtables.
5395
5396 2007-07-25  Marek Habersack  <mhabersack@novell.com>
5397
5398         * appdomain.c (get_shadow_assembly_location): do not use TickCount
5399         to create unique shadow copy target directories, use the domain's
5400         serial number instead. Each domain gets a unique target directory
5401         that way.
5402
5403         * domain.c (mono_domain_create): added code to increment domain
5404         shadow copy serial number and cache the value in the current
5405         domain structure.
5406
5407         * domain-internals.h (struct _MonoDomain): added a new field -
5408         shadow_serial to hold the serial number used in generation of
5409         shadow-copy directories. This is to make sure that the directory
5410         name is unique for each and every domain created. We avoid a race
5411         condition with overriding assemblies already in use by other app
5412         domains.
5413
5414 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
5415
5416         * class.c (mono_bounded_array_class_get): fixed memory leak when 
5417         binding generic parameters.
5418
5419 2007-07-24  Raja R Harinath  <rharinath@novell.com>
5420
5421         * metadata.c (do_mono_metadata_parse_generic_class): Use
5422         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
5423         error.
5424
5425 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
5426
5427         * loader.c, class-internals.h, reflection.c: removed the per-method
5428         generics hashtable: we use the global one through the call of
5429         mono_class_inflate_generic_method ().
5430
5431 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
5432
5433         * class.c, metadata.c, class-internals.h: introduce yet another
5434         generics global cache for inflated methods (fixes 98% of the perf
5435         issue in bug #81806).
5436
5437 2007-07-23  Raja R Harinath  <rharinath@novell.com>
5438
5439         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
5440         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
5441         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
5442         return a MonoGenericInst containing (a copy) of those types.
5443         (mono_metadata_inflate_generic_inst): Update to changes.
5444         (mono_metadata_parse_generic_inst): Likewise.
5445         (mono_get_shared_generic_inst): Likewise.
5446         * reflection.c (mono_class_bind_generic_parameters): Likewise.
5447         (mono_reflection_bind_generic_method_parameters): Likewise.
5448         * metadata-internals.h: Likewise.
5449         * icall.c (free_generic_context): Kill.
5450         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
5451
5452         * reflection.c (reflection_methodbuilder_to_mono_method): Use
5453         mono_metadata_type_dup.
5454         * marshal.c (mono_mb_create_method): Likewise.
5455
5456         * metadata.c (mono_metadata_type_dup): Rename from
5457         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
5458         MonoImage.  Handle a few more cases, esp. when no mempool is given.
5459         * marshal.c, metadata-internals.h: Update to changes.
5460
5461 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
5462
5463         * class.c: fixed a small leak for array classes and removed warning.
5464
5465 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
5466
5467         * loader.c (mono_method_get_param_token): Make this work on generic methods.
5468         Return 0x8000000 for return parameters. Fixes #82161.
5469
5470 2007-07-21  Marek Habersack  <grendello@gmail.com>
5471
5472         * appdomain.c (get_shadow_assembly_location): append the current
5473         ticks value to the path. Avoids overwriting the same assemblies by
5474         several threads at the same time.
5475
5476 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
5477         and Raja R Harinath  <rharinath@novell.com>
5478
5479         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
5480         Simplify slightly.
5481         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
5482         property for testing if a method is a generic method definition.
5483
5484 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
5485
5486         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
5487
5488 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
5489
5490         * verify.c: used function from private branch, reverted to the one in class.h 
5491
5492 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
5493
5494         * verify.c: a typo slipped in and the code wont compile
5495
5496 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
5497
5498         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
5499         disabled box instruction as it is doing the wrong thing
5500         improved stack dump messages, now it is easier to debug type related issues
5501
5502
5503 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
5504
5505         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
5506
5507 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
5508
5509         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
5510         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
5511         grouped with class and valuetype. This change will simply 
5512         the code as it should be handled just like unmanaged pointers.
5513
5514 2007-07-19  Mark Probst  <mark.probst@gmail.com>
5515
5516         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
5517
5518 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
5519
5520         * verify.c: several stack merge issues fixed, reference comparisons now
5521         check the type size. strict type check now works correctly.
5522         added more uses of IS_MANAGED_POINTER macro.
5523         fixed issues pointed by running the test suite against .net.
5524         
5525
5526 2007-07-19  Mark Probst  <mark.probst@gmail.com>
5527
5528         * class.c, loader.c, class-internals.h: Removed the
5529         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
5530         defines.
5531
5532         * icall.c: Better error checking in some internal reflection
5533         methods.
5534
5535 2007-07-18  William Holmes  <billholmes54@gmail.com>
5536
5537         * filewatcher.c : removed unused variable 'filename' in 
5538           ves_icall_System_IO_FSW_SupportsFSW
5539
5540 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
5541
5542         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
5543         obsolete, removed.
5544
5545 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
5546
5547         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
5548         
5549         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
5550
5551 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
5552
5553         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
5554         Implement generics support.
5555         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
5556
5557         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
5558         type_args and method_args arguments.
5559         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
5560         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
5561         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
5562
5563 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
5564
5565         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
5566           It adds a rootimage parameter to mono_reflection_get_type_internal,
5567           adds new function mono_reflection_get_type_with_rootimage and use
5568           the rootimage to resolve the types instead of the current image
5569
5570 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5571
5572         * culture-info-table.h: Forgot to update after r78304.
5573
5574 2007-07-13  Raja R Harinath  <rharinath@novell.com>
5575
5576         * class.c (mono_class_is_open_constructed_type)
5577         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
5578
5579 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
5580
5581         * class.c (mono_bounded_array_class_get):  method fails if used with
5582         an incomplete TypeBuilder enum (no basetype field), fixed it by 
5583         avoiding calculating the size for such array as it cannot be instantiated.
5584         Fix bug #82015
5585
5586 2007-07-12  Raja R Harinath  <rharinath@novell.com>
5587
5588         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
5589         field.
5590         * metadata.c, reflection.c: Update to changes.
5591
5592 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
5593
5594         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
5595         mono_class_is_valid_enum, they are used to valide a enum when loading.
5596         * reflection.c: used new functions to throw TypeLoadException when and
5597         invalid enum is build with TypeBuilder. Fixes #82018
5598   
5599 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
5600
5601         * object.c: forgot commit of mono_class_setup_methods () to access
5602         iface->methods.
5603         * object-internals.h: added a few more handy fields to
5604         MonoIMTCheckItem.
5605
5606 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
5607
5608         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
5609         iface->methods.
5610
5611 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
5612
5613         * class-internals.h, object-internals.h, object.c: IMT-based
5614         interface invocation core from Massimiliano Mantione
5615         (massi@ximian.com) with a reworked arch-specific interface,
5616         bsearch implementation and a few bugfixes and memory savings by me.
5617
5618 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
5619
5620         * class.c (mono_class_create_from_typedef): mono would segfault if 
5621         an enum did not have a __value field. It now throws a TypeLoadException
5622         for such cases. Fix bug #82022
5623
5624 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
5625
5626         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
5627
5628 2007-07-09  Mark Probst  <mark.probst@gmail.com>
5629
5630         * class.c (mono_class_init): If a class is already inited but has
5631         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
5632
5633 2007-07-09  Mark Probst  <mark.probst@gmail.com>
5634
5635         * class.c: Properly handle the case of an unimplemented interface
5636         method.  Fixes: 81673.
5637
5638 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
5639
5640         * class-internals.h, object.c: cleanup patch from massi: use
5641         MonoVTable->interface_bitmap since the vtable interfaces offset array
5642         is going away.
5643
5644 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
5645
5646         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
5647         GetMDStreamVersion icall instead.
5648
5649 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
5650
5651         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
5652         not use mono_dl_build_path() with a full library name: makes
5653         fallbacks to libgaim and libfam work.
5654
5655 2007-07-06  William Holmes  <billholmes54@gmail.com>
5656
5657         * assembly.c: Added a continue statement in probe_for_partial_name when
5658          parse_assembly_directory_name fails.  Fixes : 82002
5659
5660 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
5661
5662         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
5663         and added a verification  for TYPEDBYREF.
5664         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
5665         make native int interchangeable with int32 and some small cleanup and formating.
5666         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
5667         handle byref of byref.
5668         * verify.c (push_local): handle byref of byref.
5669         * verify.c (do_binop): invalid mix of values is unverifiable
5670         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
5671         added visibility checks
5672         * verify.c (field related method): added visibility checks
5673         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
5674
5675 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
5676
5677         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
5678         string.
5679
5680 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
5681
5682         * profiler.c (mono_profiler_load): Fix an off-by-one error.
5683
5684         * marshal.c (emit_marshal_string): When returning a string from managed code,
5685         allways make a copy even for unicode strings. Fixes #81990.
5686
5687 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
5688
5689         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
5690         of byref generic inst types (bug #81997).
5691
5692 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
5693
5694         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
5695         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
5696
5697 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
5698
5699         * marshal.c (emit_marshal_string): Add support for unicode strings in
5700         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
5701
5702 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
5703
5704         * verify.c: field load/store are now verified, missing only access checks now
5705
5706 2007-06-28  Martin Baulig  <martin@ximian.com>
5707
5708         * mono-debug.c (mono_debug_debugger_version): New public variable.
5709
5710 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
5711
5712         * locales.c: When constructing DateTimeFormat or NumberFormat for
5713         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
5714         MonoCultureInfo contructed from the current locale is always
5715         read-only and has UseUserOverride set to true. All MonoCultureInfo
5716         instances returned for GetCultures have both IsReadOnly and
5717         UseUserOverride set to true. Fixes part of bug #81930.
5718
5719 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
5720
5721        * icall-def.h: Update System.__ComObject icalls
5722        * marshal.c: Avoid managed transition (and object creation)
5723        when looking up COM interface in RCW.
5724        * marshal.h: Ditto.
5725        
5726        Code is contributed under MIT/X11 license.
5727
5728 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
5729
5730         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
5731         to avoid crashes during assembly unloading.
5732
5733 2007-06-22  Raja R Harinath  <rharinath@novell.com>
5734
5735         Fix MethodInfo.IsGenericMethodDefinition
5736         * reflection.c (mono_reflection_bind_generic_method_parameters):
5737         Rearrange code to ensure we always uses a generic method definition.
5738         * class.c (mono_class_inflate_generic_method_full): Set
5739         'generic_container' field only for generic method definitions.
5740         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
5741         Use presense of 'generic_container' field as indication of being a
5742         generic method definition.
5743
5744 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
5745
5746         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5747
5748         * object-internals.h: Reflect changes in the layout of the managed Delegate
5749         class.
5750         
5751         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
5752         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
5753         runtime memory used by the dynamic method. Fixes #77146.
5754
5755 2007-06-21  Dick Porter  <dick@ximian.com>
5756
5757         * file-io.h: 
5758         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
5759         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
5760         81767.
5761
5762 2007-06-21  Raja R Harinath  <rharinath@novell.com>
5763
5764         * reflection.c (method_encode_methodspec): Add a tripwire.
5765         * class.c (inflate_generic_type): The fully open generic type is
5766         not the same as the generic type definition.
5767
5768 2007-06-21  Martin Baulig  <martin@ximian.com>
5769
5770         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
5771
5772         * mono-debug-debugger.h
5773         (MonoDebuggerBreakpointInfo): Removed.
5774         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
5775         (mono_debugger_remove_breakpoint): Likewise.
5776         (mono_debugger_breakpoint_callback): Likewise.
5777         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
5778
5779 2007-06-21  Raja R Harinath  <rharinath@novell.com>
5780
5781         * metadata.c (mono_metadata_lookup_generic_class): The fully open
5782         generic type is not the same as the generic type definition.
5783         * class.c (mono_generic_class_get_class): Likewise.
5784
5785 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
5786
5787         * icall.c: The second argument to 
5788         System.Reflection.MethodBase.GetMethodFromHandleInternalType
5789         is a MonoType not a MonoClass.
5790
5791 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
5792
5793         * verify.c: support for function pointers in the verifier
5794
5795 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
5796
5797         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
5798
5799 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
5800
5801         * assembly.c: removed Mono.Data.SqliteClient from the list of
5802         forward-compatible assemblies as it breaks the ABI (bug #81899).
5803
5804 2007-06-19  Raja R Harinath  <rharinath@novell.com>
5805
5806         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
5807         lookup/update with the loader lock.
5808         * reflection.c (mono_class_bind_generic_parameters): No need to
5809         protect mono_metadata_lookup_* with the loader lock.
5810         * class.c (inflate_generic_type): Likewise.
5811         
5812         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
5813         on a generic instantiated type.
5814
5815 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
5816
5817         *verify.c: produce meanfull error messages on verification error
5818         *verify.c: fixed some cases of verification errors reported as validation errors
5819         *pedump.c: fixed the error name array, now it shows validation errors properly
5820         *verify.h: fixed the contant that should be used for verification errors
5821
5822 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
5823
5824         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
5825         for bug #77596, 81858 and 80743 (generics data structures on domain
5826         unload).
5827
5828 2007-06-15  Raja R Harinath  <rharinath@novell.com>
5829
5830         Avoid allocating 'MonoGenericContext' on the heap.
5831         * class-internals (_MonoMethodInflated::context): Make field
5832         inline, not a pointer.
5833         * loader.c (method_from_methodspec): Allocate 'new_context' on the
5834         stack.  Use the context embedded within the inflated method as the
5835         hash key, rather than 'new_context'.
5836         * class.c (inflate_generic_context): Simplify.  Return a struct
5837         rather than allocating on the heap.
5838         (mono_class_inflate_generic_method_full): Update to changes.  Now,
5839         doesn't salt away a copy of the context -- simplifying the
5840         lifetime rules of a 'MonoGenericContext *'.
5841         (mono_method_get_context): Return pointer to embedded context.
5842         (setup_generic_array_ifaces): Allocate temporary context on stack.
5843         * reflection.c (inflate_mono_method): Likewise.
5844         (mono_reflection_bind_generic_method_parameters): Likewise.
5845         Use the context embedded within the inflated method as the hash key.
5846
5847         Avoid a source of allocation of 'MonoGenericContext'.
5848         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
5849         and 'cached_context' fields into embedded 'MonoGenericContext' field.
5850         * class.c: Update to changes.
5851         (mono_generic_class_get_context): Simplify drastically.  Now just
5852         returns a pointer to the field.
5853         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
5854         argument as a const pointer.
5855         (mono_metadata_generic_context_equal): Likewise.
5856         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
5857         Update to changes.
5858
5859 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
5860
5861         * verify.c improved the handling of brtrue/brfalse, factored out common code
5862
5863 2007-06-14  Raja R Harinath  <rharinath@novell.com>
5864
5865         Kill MonoGenericMethod.
5866         * class-internals.h (MonoGenericContext::method_inst): Rename from
5867         'gmethod' and convert to a MonoGenericInst.
5868         (MonoGenericMethod): Remove.
5869         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
5870         * loader.c (method_from_methodspec): Update to changes.  Use a
5871         MonoGenericContext as the key to the hashtable.
5872         * metadata.c (mono_metadata_generic_context_equal): Rename from 
5873         'mono_metadata_generic_method_equal' and take MonoGenericContext.
5874         (mono_metadata_generic_context_hash): Likewise from
5875         'mono_metadata_generic_method_hash'.  Change hash function.
5876         (mono_metadata_load_generic_params): Update to changes.
5877         (mono_get_shared_generic_method): Remove.
5878         * metadata-internals.h (mono_get_shared_generic_method): Remove.
5879         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
5880         (inflate_generic_context): Likewise.
5881         (mono_class_inflate_generic_method_full): Likewise.
5882         (setup_generic_array_ifaces): Likewise.
5883         (mono_class_create_from_typespec): Likewise.
5884         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
5885         (method_encode_methodspec): Update callsite.
5886         (reflection_methodbuilder_to_mono_method): Update to changes.
5887         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
5888         MonoGenericContext as the key to the hashtable.
5889         (inflate_mono_method): Update to changes.
5890
5891         * class-internals.h (MonoGenericMethod::container): Remove.
5892         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
5893
5894 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
5895
5896         * profiler-private.h, profiler.c, profiler.h: added API to profile
5897         exception events.
5898
5899 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
5900
5901         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
5902
5903 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
5904
5905         * verify.c: method invocation is now validated, now we verify parameter types on stack.
5906         Fixed overflow and underflow not aborting the verification process.
5907
5908 2007-06-13  Mark Probst  <mark.probst@gmail.com>
5909
5910         * class-internals.h (MonoStats): Added stats entries for dynamic
5911         code allocations.
5912
5913 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
5914
5915         * loader.c (mono_free_method): Free header->locals and header->clauses.
5916
5917         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
5918         dynamic case.
5919
5920         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
5921
5922         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
5923
5924 2007-06-12  Raja R Harinath  <rharinath@novell.com>
5925
5926         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
5927         the tables.
5928
5929 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
5930
5931         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
5932
5933 2007-06-11  Raja R Harinath  <harinath@gmail.com>
5934
5935         MonoGenericMethod on a diet
5936         * class-internals.h (_MonoMethodInflated::reflection_info): Move
5937         here ...
5938         (_MonoGenericMethod::reflection_info): ... from here.
5939         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
5940         Update to changes.
5941         * reflection.c (inflate_mono_method): Likewise.
5942         (mono_reflection_bind_generic_method_parameters): Likewise.
5943
5944 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
5945
5946         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
5947         *verify.c: factored long ldarg forms to share code with short forms
5948
5949 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
5950
5951         *verify.c: fixed code formating factored some duplicate code
5952         into a new function
5953
5954         *verify.h: fixed binary incompatibility introduced earlier
5955
5956         *pedump.c: fixed formating
5957
5958 2007-06-11  Raja R Harinath  <harinath@gmail.com>
5959
5960         Fix assertion when disassembling Mono.C5.dll
5961         * loader.c (method_from_methodspec): Avoid inflating a method
5962         twice with the same context.  If the methodref is inflated, use
5963         the declaring method instead.
5964
5965         * class.c (mono_class_from_generic_parameter): Fix case similar to
5966         bug #81830 handled below, but for method containers.
5967
5968 2007-06-10  Raja R Harinath  <harinath@gmail.com>
5969
5970         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
5971         get_shared_generic_class.  Directly inflate the instance.
5972         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
5973         (inflate_generic_class): Delete.
5974         (get_shared_generic_class): Delete.  Move setting of
5975         'cached_class' and 'cached_context' ...
5976         * metadata.c (mono_metadata_lookup_generic_class): ... here.
5977
5978         * metadata.c (mono_metadata_lookup_generic_class): Change
5979         signature to take the components of a MonoGenericClass rather than
5980         an allocated MonoGenericClass.  Change semantics to be intern-like.
5981         * reflection.c (mono_class_bind_generic_parameters): Update to
5982         changes.  Make locking region tighter.
5983         * class.c (inflate_generic_class): Update to changes.
5984         (get_shared_generic_class): Likewise.
5985         * metadata-internals.h: Likewise.
5986
5987         * reflection.c (mono_class_bind_generic_parameters): Take and
5988         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
5989         (mono_reflection_bind_generic_parameters): Use
5990         'mono_class_bind_generic_parameters' rather than duplicate the code.
5991         * class.c (mono_bounded_array_class_get): Update to changes.
5992         * object-internals.h: Likewise.
5993
5994         * reflection.c (mono_class_bind_generic_parameters): Only support
5995         parameterizing generic type definitions.  Remove support for other
5996         open types.
5997
5998 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
5999
6000         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
6001
6002         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
6003         in the dynamic case.
6004
6005 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
6006
6007         * threads.c: When cleaning up thread, reset the Background bit.
6008         Fixes bug #81720.
6009
6010 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
6011
6012        * metadata.c: Move variable declarations to top of scope.
6013        * verify.c: Move variable declarations to top of scope.
6014
6015        Code is contributed under MIT/X11 license.
6016
6017 2007-06-08  Raja R Harinath  <rharinath@novell.com>
6018
6019         * reflection.c (mono_class_bind_generic_parameters): Replace
6020         open-coded loop with mono_metadata_inflate_generic_inst.
6021
6022         * class.c (get_shared_generic_class): Don't call
6023         mono_get_shared_generic_inst.  Use the container's own
6024         'class_inst'.
6025
6026         * metadata.c (mono_metadata_load_generic_params): Move
6027         initialization of 'context' field here from ...
6028         * class.c (mono_class_create_from_typedef): ... here, and ...
6029         * loader.c (mono_get_method_from_token): ... here.
6030
6031         * class.c (get_shared_generic_class): Rename from
6032         mono_get_shared_generic_class and make static.
6033         (mono_get_shared_generic_inst): Move to metadata.c.
6034         * loader.c (mono_get_shared_generic_method): Likewise.
6035         * class-internals.h, metadata-internals.h: Update to changes.
6036
6037         Fix #81830
6038         * class.c (mono_class_from_generic_parameter): Don't assume a
6039         generic container owner exists.  Generic containers from monodis
6040         don't have any.
6041
6042 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
6043
6044         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
6045         * verify.h: new typedefs to returns the non-verifiable status
6046         * verify.c: initial implementation of generics, stack merging and object compatibility check
6047
6048 2007-06-06  Mark Probst  <mark.probst@gmail.com>
6049
6050         * class.c, image.c, class-internals.h (MonoImage): class_cache is
6051         a MonoInternalHashTable again (fixed bug in internal hash table
6052         code).
6053
6054 2007-06-06  Mark Probst  <mark.probst@gmail.com>
6055
6056         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
6057         MonoInternalHashTable again (fixed bug in internal hash table
6058         code).
6059
6060 2007-06-06  Mark Probst  <mark.probst@gmail.com>
6061
6062         * class.c, image.c, class-internals.h, domain.c,
6063         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
6064         changes.  Have to figure out what makes them break the SWF
6065         regression.
6066
6067 2007-06-04  Mark Probst  <mark.probst@gmail.com>
6068
6069         * class.c, image.c, class-internals.h (MonoImage): class_cache is
6070         a MonoInternalHashTable now.
6071
6072 2007-06-04  Mark Probst  <mark.probst@gmail.com>
6073
6074         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
6075         MonoInternalHashTable now.
6076
6077 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
6078
6079         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
6080         invoke_impl code.
6081
6082         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
6083
6084         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
6085         dependent trampoline.
6086
6087         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6088
6089         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
6090
6091 2007-05-29  Robert Jordan  <robertj@gmx.net>
6092
6093         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
6094
6095 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
6096
6097         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
6098
6099 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
6100
6101        * marshal.c: Fix interface lookup loops for
6102        cominterop_get_com_slot_for_method and 
6103        cominterop_get_method_interface. Only need to lookup
6104        if type is a class, else use interface type method is on.
6105
6106        Code is contributed under MIT/X11 license.
6107
6108 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
6109
6110         * reflection.c: HasSecurity can be present even if no specially 
6111         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
6112         SecurityAttribute). Fix CAS regression tests on buildbot.
6113
6114 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
6115
6116        * appdomain.c: Add configure checks for header files.
6117        * image.c: Add configure checks for header files.
6118        * file-io.c: Add configure checks for header files.
6119        * debug-mono-symfile.c: Add configure checks for header files.
6120        * threadpool.c: Add configure checks for header files.
6121        * console-io.c: Add configure checks for header files.
6122        * profiler.c: Add configure checks for header files.
6123        * rawbuffer.c: Add configure checks for header files.
6124        * icall.c: Add configure checks for header files.
6125        * rand.c: Add configure checks for header files.
6126        * socket-io.c: Add configure checks for header files.
6127
6128        Code is contributed under MIT/X11 license.
6129
6130 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
6131
6132         * reflection.c (mono_custom_attrs_from_builders): Remove the 
6133         assertion as it breaks the build.
6134         
6135         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
6136
6137         * reflection.c (lookup_custom_attr): Make a copy here too.
6138
6139         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
6140         dynamic images.
6141
6142         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
6143         images.
6144
6145         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
6146         info.
6147
6148 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
6149
6150         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
6151         (load_cattr_value): Ditto.
6152
6153 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
6154
6155         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
6156
6157 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
6158
6159         * threads.c: In "start_wrapper", set apartment_state to MTA if
6160         apartment_state is Unknown and we're running on 2.0 profile or
6161         higher.
6162         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
6163         to main method, then set apartment_state to Unknown on 1.0 profile,
6164         and MTA on 2.0 profile.
6165
6166 2007-05-16  Jb Evain  <jb@nurv.fr>
6167
6168         * class-internals.h (MonoDefaults): Add an attribute_class and
6169           customattribute_data_class.
6170         * domain.c (mono_init_internal): Populate them.
6171         * reflection.c: Use them to remove duplicates. Make a vew
6172         MonoClass variables `static'.
6173
6174 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
6175
6176         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
6177         step in implementing IMT, so that all isinst checks now can go
6178         through the bitmap.
6179         This was needed because vtables for TransparentProxy need to look
6180         like the vtable of the "target" class, so they need to point to
6181         its interface bitmap directly.
6182
6183         * object.c: inside "mono_class_create_runtime_vtable" and
6184         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
6185
6186 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
6187
6188         * object-internals.h
6189           culture-info.h : added territory field in MonoCulture and
6190           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
6191         * locales.c : fill territory field above too.
6192         * culture-info-table.h : regenerated.
6193
6194 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
6195
6196         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
6197         Fixes #81599.
6198
6199 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
6200
6201         * object.c: Always initialize apartment, even if 
6202         there is no custom attributes on entry point.
6203         
6204         Code is contributed under MIT/X11 license.
6205
6206 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
6207
6208         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
6209         * metadata.c: If no encoding is set, check for unicode
6210         on class.
6211         
6212         Code is contributed under MIT/X11 license.
6213
6214 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
6215
6216         * threads.c: Handle if mono_thread_current returns NULL 
6217         
6218         Code is contributed under MIT/X11 license.
6219
6220 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
6221
6222         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
6223         in start_wrapper. Added mono_thread_init_apartment_state and
6224         mono_thread_cleanup_apartment_state.
6225         * object.c: Initialize thread apartment state on main thread
6226         by checking for STAThreadAttribute on entry point.
6227         * object-internals.h: Add apartment_state field to MonoThread.
6228         * threads-types.h: Add unmanaged definition of 
6229         System.Threading.ApartmentState, MonoThreadApartmentState.
6230         
6231         Code is contributed under MIT/X11 license.
6232         
6233 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
6234
6235         * class.c: Fix windows build.
6236         * class-internals.h: Fix windows build.
6237         
6238         Code is contributed under MIT/X11 license.
6239
6240 2007-05-08  Robert Jordan  <robertj@gmx.net>
6241
6242         * process.c (CreateProcess_internal):
6243         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
6244         .CreateNoWindow was specified. Fixes #81496.
6245
6246 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
6247
6248         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
6249         step in implementing IMT, replaced it with two compact arrays
6250         (interfaces_packed and interface_offsets_packed) and a bitmap that
6251         is used for isinst checks (interface_bitmap).
6252
6253         * class.c: (compare_interface_ids): compare function to pass to
6254         bsearch when looking for an interface with a given id.
6255         (mono_class_interface_offset): reimplemented using bsearch on
6256         interfaces_packed, getting the offset from interface_offsets_packed.
6257         (print_implemented_interfaces): utility debugging function.
6258         (setup_interface_offsets): reworked to initialize interfaces_packed,
6259         interface_offsets_packed and interface_bitmap.
6260
6261         * object.c: replaced all accesses to "MonoClass.interface_offsets"
6262         with uses of interfaces_packed and interface_offsets_packed.
6263
6264 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
6265
6266         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
6267         mono_class_interface_offset prototype to wrap all accesses to
6268         "MonoClass.interface_offsets".
6269
6270         * class.c: Implemented mono_class_interface_offset, and wrapped all
6271         accesses to "MonoClass.interface_offsets".
6272
6273         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
6274         "MonoClass.interface_offsets".
6275
6276 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
6277
6278         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
6279         GetMethodFromHandle overloads (bug #78637).
6280
6281 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
6282
6283         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
6284         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
6285
6286 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
6287
6288         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
6289         #81498.
6290
6291         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
6292         gracefully.
6293         (mono_custom_attrs_from_index): Ditto.
6294
6295         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
6296         Fixes #81501.
6297
6298 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
6299
6300         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
6301         is now allocated from a mempool.
6302
6303 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
6304
6305         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
6306         caller holds threads_lock, leading to deadlocks. Fixes #81476.
6307
6308 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
6309
6310         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
6311         mono_loader_clear_error () too late. Fixes #81463.
6312
6313 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
6314
6315         * culture-info-table.h : regenerated.
6316
6317 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
6318
6319         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
6320         is missing.
6321
6322 2007-04-25  Dick Porter  <dick@ximian.com>
6323
6324         * Makefile.am: Put the mingw enforced-optimisation back into the
6325         PLATFORM_WIN32 section.
6326
6327 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
6328
6329         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
6330         patch.
6331
6332         * image.c (mono_image_load_module): New API function to load a module reference.
6333
6334         * image.c (load_modules): Load modules lazily. Fixes #80812.
6335
6336         * class.c (mono_class_from_typeref): Use mono_image_load_module.
6337         
6338         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
6339
6340         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
6341         to mono_image_load_module_dynamic.
6342
6343 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
6344
6345         * marshal.c: Fix calling convention for CCW on non-windows
6346         platforms. STDCALL on windows, CDECL everywhere else to work 
6347         with XPCOM and MainWin COM.
6348         
6349         Code is contributed under MIT/X11 license.
6350
6351 2007-04-23  Martin Baulig  <martin@ximian.com>
6352
6353         Fix #80969.
6354
6355         * loader.c
6356         (method_from_memberref): Added `gboolean *used_context' argument.
6357         (mono_get_method_from_token): Likewise.
6358         (mono_get_method_full): Don't insert the method in the cache when
6359         `used_context' is true.
6360
6361 2007-04-23  Raja R Harinath  <rharinath@novell.com>
6362
6363         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
6364
6365         * reflection.c (mono_reflection_bind_generic_parameters): Don't
6366         create new MonoTypes for returned types.
6367         * class.c (mono_generic_class_get_class): Export mono-internal.
6368         * class-internals.h: Update to changes.
6369
6370 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
6371
6372         * threadpool.c, threadpool.h, icall-def.h: patch from
6373         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
6374
6375 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
6376
6377         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
6378         
6379         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
6380
6381         * threads.c (mono_thread_get_stack_bounds): New helper function.
6382
6383         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
6384         Correctly compute stack bounds when attaching. Fixes #81394.
6385
6386 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
6387
6388         * reflection.c: fix handling of doubles in custom attributes
6389         for the arm-fpa format (bug #81368).
6390
6391 2007-04-18  Raja R Harinath  <rharinath@novell.com>
6392
6393         * reflection.c (assembly_add_win32_resources): Mildly relax an
6394         bounds check to let the end pointer point just past the end of the
6395         allocated buffer.  (may fix #81384)
6396
6397 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
6398
6399         * culture-info-table.h : regenerated.
6400
6401 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
6402
6403         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
6404         the thread is aborted early.
6405
6406 2007-04-05  Dick Porter  <dick@ximian.com>
6407
6408         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
6409         FindFirstFile()/FindNextFile() to find entries.  This lets the
6410         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
6411         81038.
6412
6413         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
6414         the parameters of
6415         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
6416
6417 2007-04-04  Martin Baulig  <martin@ximian.com>
6418
6419         * debug-helpers.c
6420         (mono_method_desc_full_match): Add support for nested classes.
6421
6422 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
6423
6424         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
6425
6426 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
6427
6428         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
6429         waiting for too many threads.
6430
6431 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6432
6433         * environment.c: Fix return value check on uname so we can get the 
6434         executing version on Solaris operating systems.
6435
6436 2007-03-28  Jb Evain  <jbevain@gmail.com>
6437
6438         * class.c (mono_type_get_name_recurse): Complete the
6439         fix for the creation of assembly qualified names for
6440         pointer types. Fixes #81208.
6441
6442 2007-03-27  Dick Porter  <dick@ximian.com>
6443
6444         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
6445         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
6446         changed.
6447
6448         * threads.c
6449         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
6450         the value of ReleaseMutex().
6451
6452 2007-03-27  Dick Porter  <dick@ximian.com>
6453
6454         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
6455         in little-endian order, not network endian, so must be converted
6456         to host endian here.  Fixes bug 80593.
6457
6458 2007-03-22  Jb Evain  <jbevain@gmail.com>
6459
6460         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
6461         qualified names for pointer types. Fixes #81208.
6462
6463 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
6464
6465         * marshal.c: Add support for PreserveSigAttribute. 
6466         
6467         Code is contributed under MIT/X11 license.
6468
6469 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
6470
6471         * process.c: Fix endianness issues. Fixes #81126.
6472
6473         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
6474         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
6475
6476         * image.c (mono_image_lookup_resource): Make this work on big-endian
6477         machines.Change API contract so the caller needs to free the return value.
6478         
6479         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
6480         API change.
6481         
6482 2007-03-14  Martin Baulig  <martin@ximian.com>
6483
6484         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
6485         mono_type_get_desc() as well.
6486
6487 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
6488
6489         * icall.c:  Fix environ access in VS.  
6490         
6491 2007-03-13  Alp Toker  <alp@atoker.com>
6492
6493         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
6494         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
6495         #63841.
6496
6497 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
6498
6499         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
6500         circular references among dynamic methods. Fixes #81091.
6501
6502         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
6503
6504 2007-03-09  Martin Baulig  <martin@ximian.com>
6505
6506         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
6507
6508 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
6509
6510         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
6511         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
6512         
6513         Code is contributed under MIT/X11 license.
6514         
6515 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
6516
6517         * loader.c: Reapply patch for bug #79424.
6518
6519 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
6520
6521         * metadata.c (mono_type_to_unmanaged): Only convert object to
6522         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
6523
6524 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
6525
6526         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
6527         (and incorrectly set) is_reference field from MonoGenericInst.
6528
6529 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
6530
6531         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
6532         a little earlier.
6533
6534         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
6535
6536         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
6537
6538 2007-03-05  Miguel de Icaza  <miguel@novell.com>
6539
6540         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
6541         FileOptions.1 value to mean "temporary", map that to
6542         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
6543
6544         Fixes 80688
6545
6546 2007-03-03  Marek Habersack  <mhabersack@novell.com>
6547
6548         * appdomain.c: implement MS .Net style shadow copying. Copies of
6549         the assemblies are made in a subdirectory of the dynamic base
6550         directory, the assembly names are preserved.
6551         Copy .mdb and .config files along with the assemblies being shadowed.
6552
6553 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
6554
6555         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
6556         (emit_marshal_handleref): Ditto.
6557
6558         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
6559         on Visual C++. Fixes #80671.
6560
6561 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
6562
6563         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
6564         for clone operations.
6565
6566 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
6567
6568         * marshal.c: Fix warnings.
6569
6570 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
6571
6572         * loader.c: allow case-insensitive matching of the dll name
6573         in dllmap handling when prefixed with "i:".
6574
6575 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
6576
6577         * threads.c: Fix #ifdef for dummy_apc function for VS.
6578
6579 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
6580
6581         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
6582
6583 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
6584         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
6585         giving precedence to the methods with a fully qualified name
6586         (InterfaceName.MethodName) when building the interface sections
6587         of the vtable.
6588
6589 2007-02-16  Dick Porter  <dick@ximian.com>
6590
6591         * threadpool.c (append_job): Fix fast-path array handling, so it's
6592         less likely the array will grow exponentially when the load is
6593         heavy.
6594
6595 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
6596
6597         * metadata-internals.h, loader.c: fix dllmap lookup order
6598         for non-function maps, too, and prepare for fallback code.
6599
6600 2007-02-12  Robert Jordan  <robertj@gmx.net>
6601
6602         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
6603         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
6604         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
6605         GlobalFree. Fixes a part of bug #77075.
6606
6607 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
6608
6609         * loader.c: implemented typedef parent in field memberref.
6610
6611 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
6612
6613         * marshal.c: Fix warnings and remember to call Release on
6614         IUnknown of RCW.
6615         
6616         Code is contributed under MIT/X11 license.
6617
6618 2007-02-10  Miguel de Icaza  <miguel@novell.com>
6619
6620         * class-internals.h: Add MonoHandleRef definition, and
6621         handleref_class to mono_defaults. 
6622
6623         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
6624         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
6625
6626         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
6627         (do nothing on this stage)
6628         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
6629         (emit_marshal_handleref): New method, used for argument handling
6630         of HandleRefs. 
6631
6632 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
6633
6634         * class.c (mono_class_setup_parent): Lazily init com types.
6635         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
6636         init com types.
6637         * object.c (mono_remote_class_vtable): Lazily init com types.
6638         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
6639         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
6640         * domain-internals.h: Expose mono_init_com_types.
6641         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
6642         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
6643         Add support for COM Callable Wrapper marshalling.
6644         * marshal.h: Add icall definitions.
6645         * gc.c: Handle freeing of CCWs in finalizer code.
6646         
6647         Code is contributed under MIT/X11 license.
6648
6649 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
6650
6651         * reflection.c: changed all the signature encoding code to use
6652         a variable-sized buffer.
6653
6654 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
6655
6656         * marshal.c: locking fixes: never take the loader lock
6657         or other runtime locks when holding the marshal lock
6658         (fixes bug#80664).
6659
6660 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
6661
6662         * marshal.c: make the delegate function pointer mapping
6663         work for the moving GC.
6664
6665 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
6666
6667         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
6668         for bug #80618.
6669
6670 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
6671
6672         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
6673         gmodule.
6674
6675 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
6676
6677         * threadpool.c: made the code moving-GC safe.
6678
6679 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
6680
6681         * assembly.c, boehm-gc.c, class-internals.h, class.c,
6682         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
6683         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
6684         warning cleanup.
6685         * reflection.c: warning cleanup, some threading and moving GC fixes.
6686
6687 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
6688
6689         * class.c, loader.c: create the needed Set/Get/Address array methods
6690         as well as the .ctors in mono_class_init (), fixes bug #80567.
6691
6692 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
6693
6694         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
6695         we doesn't decrease its alignment. Should fix the sparc build.
6696
6697 2007-01-24  Dick Porter  <dick@ximian.com>
6698
6699         * socket-io.c
6700         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
6701         Create the returned object if we need to ignore an unsupported
6702         socket option.  Fixes a segfault reported by Atsushi.
6703
6704 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
6705
6706         * class.c, object.c: restrict GC-tracked fields to
6707         UIntPtr fields used inside corlib, so we provide better
6708         type info to the GC and also allow broken packing as in
6709         bug #80580.
6710
6711 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
6712
6713         * sgen-gc.c: removed duplicated function.
6714
6715 2007-01-19  Miguel de Icaza  <miguel@novell.com>
6716
6717         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
6718         value that means that the value is not supported, but that we
6719         should not return a failure, but instead report this as a
6720         successful operation.
6721
6722 2007-01-19  Raja R Harinath  <rharinath@novell.com>
6723
6724         Fix tests/bug79956.2.il
6725         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
6726         (mono_generic_class_get_class): If the generic definition in an
6727         enum, copy over other fields related to it.
6728
6729 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
6730
6731         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
6732         genericinst enums (bug #79215).
6733
6734 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
6735         * class.c: Fix bug 80307.
6736
6737 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
6738
6739         * image.c: if the file table is not present, try to load
6740         all the modules, since we don't have info about them
6741         having or not metadata (bug #80517).
6742         * assembly.c: allow mono_assembly_load_references () to
6743         work for netmodules.
6744
6745 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
6746
6747         * image.c, metadata-internals.h, object.c: execute module
6748         cctors when running on the 2 runtime if present (bug #80487).
6749
6750 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
6751
6752         * icall.c: optimized InitializeArray() on bigendian.
6753
6754 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
6755
6756         * icall.c: fix for the broken ARM FPA double format.
6757
6758 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
6759
6760         * icall.c: handle endian issues for r4 and r8 types, too, in
6761         the InitializeArray() icall.
6762
6763 2007-01-15  Miguel de Icaza  <miguel@novell.com>
6764
6765         * loader.c (mono_loader_error_prepare_exception): Clear the error
6766         once we have extracted the information from it, do this before we
6767         call into the JIT's class loading mechanisms.
6768
6769         * object.c (mono_class_create_runtime_vtable): Do not clear the
6770         loader error before calling mono_class_get_exception_for_failure
6771         as the loader error is needed inside
6772         mono_class_get_exception_for_failure to throw the error (thinko).
6773
6774         Fixes #80521
6775         
6776 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
6777
6778         * reflection.c: align fields rva data so it's faster to load at
6779         runtime.
6780
6781 2007-01-12  Raja R Harinath  <rharinath@novell.com>
6782
6783         Prepare to simplify GenericMethod handling.
6784         * class-internals.h (mono_method_get_context): New accessor function.
6785         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
6786         rather than directly accessing '->context' field.
6787
6788         * class-internals.h (_MonoGenericParam.method): Move ...
6789         (_MonoGenericContainer): ... here.  Add into union with klass field.
6790         * class.c, icall.c, loader.c, metadata.c, reflection.c:
6791         Update to changes.
6792
6793 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
6794
6795         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
6796         the wrapper type enum and reduce relocations.
6797
6798 2007-01-12  Raja R Harinath  <rharinath@novell.com>
6799
6800         * reflection.c (inflate_mono_method): Reuse method instantiation
6801         from the generic method, if available.
6802
6803 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
6804
6805         * marshal.c (emit_marshal_variant): Fix conv_arg
6806         type in last commit, based on whether parameter is byref.
6807         
6808 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
6809
6810         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
6811         marshalling.
6812         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
6813         MONO_TYPE_OBJECT back for VARIANT support.
6814
6815 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
6816
6817         * marshal.c, marshal.h, icall-def.h: Implement 
6818         Marshal.ReAllocCoTaskMem.
6819
6820 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
6821
6822         * marshal.c: memory retention fixes: use the proper
6823         image cache for runtime_invoke method lookups.
6824
6825 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
6826
6827         * mempool.c: added code to help debug mempool allocations.
6828
6829 2007-01-11  Dick Porter  <dick@ximian.com>
6830
6831         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
6832         support (experimenting with faking it with IP_MTU_DISCOVER for
6833         systems that don't have IP_DONTFRAGMENT.)
6834         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
6835         icall.
6836
6837         * icall-def.h: new System.Net.Sockets.Disconnect icall.
6838
6839         * socket-io.h: Add new fields to MonoSocketAsyncResult
6840         corresponding to the new ones in Socket.cs.
6841
6842 2007-01-11  Raja R Harinath  <rharinath@novell.com>
6843
6844         Fix IronPython regression mentioned in #80249
6845         * metadata.c (do_mono_metadata_parse_generic_class): Clear
6846         'cached_context' field, since it may have been initialized as a
6847         side-effect of metadata parsing.
6848
6849         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
6850         (_MonoGenericClass.cached_class): Move here and rename from lone
6851         remaining field of ...
6852         (_MonoInflatedGenericClass): ... this.  Remove.
6853         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
6854         to changes.
6855
6856         Fix mcs/tests/test-128.cs regression.
6857         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
6858         2007-01-10 change below.
6859         [MONO_TYPE_OBJECT]: Recurse into array case.
6860
6861 2007-01-11  Raja R Harinath  <harinath@gmail.com>
6862
6863         * class-internals.h (mono_get_inflated_generic_class): Remove.
6864         * class.c (mono_get_inflated_generic_class): Remove.
6865         (mono_generic_class_get_class): Rename from
6866         mono_class_create_generic.
6867         (mono_class_from_mono_type) [GENERICINST]: Use it.
6868         * reflection.c, metadata.c: Update to changes.  Use
6869         'mono_class_from_mono_type'.
6870
6871 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
6872
6873         * reflection.c: use passed type when encoding an array element
6874         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
6875
6876 2007-01-09  Robert Jordan  <robertj@gmx.net>
6877
6878         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
6879         result arguments (someDelegate.EndInvoke (unrelatedAres)).
6880         Fixes bug #80392.
6881
6882 2007-01-09  Raja R Harinath  <rharinath@novell.com>
6883
6884         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
6885
6886         * object.c (set_value): Avoid aliasing between type->data.klass
6887         and type->data.generic_class.
6888
6889         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
6890
6891 2007-01-08  Raja R Harinath  <rharinath@novell.com>
6892
6893         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
6894         between type->data.klass and type->data.generic_class.
6895
6896 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
6897
6898         * marshal.c: In MS.NET, StringBuilder objects are not copied by
6899         value in out parameters.
6900
6901 2007-01-08  Raja R Harinath  <rharinath@novell.com>
6902
6903         Simplify invariant for MonoGenericClass::klass field.
6904         * class.c (mono_class_create_generic): Verify 'klass' is null.
6905         * metadata.c (do_mono_metadata_parse_generic_class): Don't
6906         initialize 'klass' field.
6907
6908 2007-01-05  Raja R Harinath  <rharinath@novell.com>
6909
6910         Ongoing work to avoid redundant data and simplify invariants.
6911         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
6912         'generic_class', and change type to a GenericInst.
6913         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
6914         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
6915
6916 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
6917
6918         * class.c : skip io-layer under PLATFORM_WIN32.
6919
6920 2007-01-03  Tor Lillqvist  <tml@novell.com>
6921
6922         Fix #80305: In a bundled executable, look in the bundled exe
6923         assembly to determine the runtime version. Add the possibility to
6924         bundle also the machine.config file.
6925         
6926         * assembly.c (mono_assembly_open_from_bundle): Make
6927         non-static. Allow being called even if we have no bundled
6928         assemblies, and return NULL right away in that case.
6929
6930         * domain-internals.h: Declare mono_assembly_open_from_bundle()
6931         here.
6932
6933         * domain.c (app_config_parse): Take an assembly exe file name as
6934         parameter instead of a config file name. Check for a bundled
6935         config file for that assembly by calling
6936         mono_config_string_for_assembly_file() (see below) before looking
6937         for one in the file system.
6938         (get_runtimes_from_exe): Corrsponding change to call of
6939         app_config_parse().
6940         (get_runtimes_from_exe): Check for bundled assembly exe file first
6941         by calling mono_assembly_open_from_bundle(). If no bundled
6942         assembly exe file is found, call mono_image_open() as before to
6943         look it up in the file system.
6944
6945         * mono-config.c: Add variable bundled_machinec_onfig.
6946         (mono_config_string_for_assembly_file): New function.
6947         (mono_config_for_assembly): Move code snippet that looks for a
6948         bundled assembly .config file into the above new function. Call
6949         it.
6950         (mono_register_machine_config, mono_get_machine_config): New
6951         functions to set and retrieve
6952
6953         * assembly.h: Declare mono_register_machine_config().
6954
6955         * mono-config.h: Declare mono_get_machine_config() and
6956         mono_config_string_for_assembly_file().
6957
6958         * icall.c: No declaration of environ necessary on Win32. It is
6959         declared (as a macro expanding to a function call) in stdlib.h.
6960         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
6961         New internal mono function. Returns the value of
6962         mono_get_machine_config() as a Mono string.
6963
6964         * icall-def.h: Add get_bundled_machine_config().
6965
6966 2007-01-04  Raja R Harinath  <rharinath@novell.com>
6967
6968         Remove redundant field
6969         * class-internals.h (_MonoGenericContext.container): Remove field.
6970         * loader.c (mono_method_get_signature_full): Don't parse a
6971         "container" for a signature parse when the signature is inflated
6972         immediately.
6973         (method_from_methodspec): Likewise, for a generic_inst.
6974         * class.c, metadata.c, reflection.c: Update to changes.
6975
6976 2006-01-04  Raja R Harinath  <rharinath@novell.com>
6977
6978         * class-internals.h (_MonoGenericClass): Rename 'context' field to
6979         'cached_context', and change semantics -- it starts off NULL, and
6980         is initialized on demand.
6981         * class.c (mono_generic_class_get_context): New accessor to
6982         replace 'context' field accesses.
6983         (mono_class_get_context): New helper.
6984         (*): Update to changes.
6985         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
6986
6987 2007-01-03  Miguel de Icaza  <miguel@novell.com>
6988
6989         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
6990         before the memcpy.   Fixes Marshal2 regression.
6991
6992 2007-01-02  Jb Evain  <jbevain@gmail.com>
6993
6994         * blob.h: add a MONO_TYPE_ENUM definition
6995         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
6996         fix the encoding of arrays of enums in custom attributes.
6997
6998         Fixes #79666.
6999
7000 2007-01-01  Miguel de Icaza  <miguel@novell.com>
7001
7002         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
7003         string is null terminated, but only cut the string short if it
7004         overflows the buffer.   
7005         
7006         (mono_string_to_byvalstr): Also fix this routine.   The code here
7007         was not properly terminating a string (it was only terminated
7008         because of the previous catch-all memset). 
7009
7010         I left the memset, because I do not know if applications expect
7011         the runtime to clear this region. 
7012
7013         Fixes #79944.
7014
7015         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
7016         Clear the error before returning to unmanaged code to prevent the
7017         runtime from being confused later on (fixes  80420).
7018         (ves_icall_type_from_name): Always call mono_loader_clear_error
7019         after parsing a type that could have failed.
7020         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
7021
7022         * loader.c (mono_loader_clear_error): Fix indentation.
7023
7024 2006-12-28  Martin Baulig  <martin@ximian.com>
7025
7026         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
7027
7028 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
7029
7030         * reflection.c: patch from Rolf Bjarne Kvinge to fix
7031         getting a token for an EnumBuilder.
7032
7033 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
7034
7035         * reflection.c: be more careful in case resource generation
7036         fails to create the data array.
7037
7038 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
7039
7040         * sgen-gc.c: write barrier for clone and fix unregister handles.
7041
7042 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
7043
7044         * reflection.c: some fixes needed in the generics code for the moving GC.
7045
7046 2006-12-22  Robert Jordan  <robertj@gmx.net>
7047
7048         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
7049         account. Fixes bug #80299.
7050
7051 2006-12-21  Raja R Harinath  <rharinath@novell.com>
7052
7053         Fix WaitHandle usage in delegates.
7054         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
7055         * object.c (mono_wait_handle_new): Use the property set method to
7056         initialize the handle.
7057         (mono_wait_handle_get_handle): New.
7058         * threadpool.c (mono_async_invoke): Use it.
7059         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
7060         Likewise.
7061         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
7062
7063 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
7064
7065         * marshal.c (emit_marshal): Call emit_marshal_variant and
7066         emit_marshal_com_interface when applicable.
7067         (emit_marshal_variant, emit_marshal_com_interface): Add
7068         methods for this case and remove if's from emit_marshal_object.
7069         
7070 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
7071
7072         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
7073
7074 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
7075
7076         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
7077         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
7078         and GlobalFree on Windows. Remove FIXME.
7079
7080 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
7081
7082         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
7083         implementation for managed objects.
7084
7085 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
7086
7087         * object.c: implemented code to be used for checking
7088         that no reference field overlaps with non-references.
7089
7090 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
7091
7092         * threadpool.c: fix queue code to be compatible with the
7093         moving GC.
7094
7095 2006-12-18  Miguel de Icaza  <miguel@novell.com>
7096
7097         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
7098         in structures by throwing ArgumentNullException.
7099
7100         (emit_marshal_safehandle): Also when they are null parameters.
7101
7102         (emit_marshal_safehandle): Add support for ref
7103         SafeHandles parameters
7104
7105 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
7106
7107         * profiler.c: updated to use the mono-dl API instead of
7108         gmodule.
7109
7110 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
7111
7112         * profiler.c: updated to use the mono-dl dynamic loading
7113         API instead of gmodule.
7114
7115 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
7116
7117         * profiler.c: use readlink, older versions of glib don't have
7118         g_file_read_link ().
7119
7120 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
7121
7122         * profiler.c: try to detect the path to mono if libc fails to provide
7123         a useful name (bug #80286).
7124
7125 2006-12-16  Raja R Harinath  <rharinath@novell.com>
7126
7127         Fix #80242
7128         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
7129         instance, use the generic type definition instead.
7130         (ves_icall_Type_GetNestedTypes): Likewise.
7131         * class.c (mono_class_create_generic): Always set the
7132         nested_classes of a generic instance to NULL, even if the generic
7133         type definition has nested types.
7134
7135 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
7136
7137         * marshal.c (mono_string_from_bstr): Revert previous Windows change
7138         and fix on Linux.
7139         
7140 2006-12-15  Miguel de Icaza  <miguel@novell.com>
7141
7142         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
7143         my arguments were in the wrong order.   I also fixed the Windows
7144         version which seems to have had the same issue.
7145
7146         (mono_free_bstr): On Unix, this is g_free.
7147         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
7148         conversions (for the tests in corlib to pass).
7149
7150 2006-12-14  Miguel de Icaza  <miguel@novell.com>
7151
7152         * marshal.c (emit_ptr_to_object_conv): For now, ignore
7153         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
7154         exception if a ref SafeHandle in a struct has changed).
7155         
7156         (emit_struct_conv): Do not perform layout checks for classes
7157         derived from SafeHandle, as those are specially handled. 
7158
7159         (emit_object_to_ptr_conv): Add support for
7160         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
7161
7162         (emit_marshal_safehandle): Implement conversion of return values
7163         of safehandles (MARSHAL_ACTION_CONV_RESULT).
7164         
7165         * threads.c: WaitHandle now is compiled with two different handles
7166         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
7167         for 2.0.
7168         
7169         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
7170         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
7171         these routines to cope with both kinds of fields.
7172
7173 2006-12-12  Miguel de Icaza  <miguel@novell.com>
7174
7175         * metadata.c (mono_type_to_unmanaged): Handle the case where
7176         type->data.klass is a SafeHandle, and in that case, return the
7177         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
7178         MONO_MARSHAL_CONV_SAFEHANDLE. 
7179
7180 2006-12-11  Miguel de Icaza  <miguel@novell.com>
7181
7182         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
7183         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
7184         calling emit_marshal_object.
7185
7186         (emit_marshal_safehandle): Implement marshalling of
7187         SafeHandle parameters (no ref support yet).
7188
7189         (MarshalAction): Document the defines as I implement
7190         them for SafeHandle.
7191
7192         (emit_marshal_object): indentation police.
7193
7194         * class-internals.h: Define MonoSafeHandle.
7195         Add safehandle_class to MonoDefaults type.
7196
7197         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
7198         list of classes to check for fields. 
7199
7200         * domain.c (mono_init_internal): Add SafeHandle to the list of
7201         mono_defaults loaded.
7202
7203 2006-12-15  Raja R Harinath  <rharinath@novell.com>
7204
7205         Fix #80253
7206         * reflection.c (mono_reflection_bind_generic_parameters): If the
7207         generic type definition is a type builder, ensure that it is fully
7208         initialized before instantiating it.  Kill some dead code.
7209
7210 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
7211
7212         * object.c: clear the loader_error () before loading
7213         more metadata stuff (bug #80258).
7214
7215 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
7216
7217         * icall.c, icall-defs.h: type modifiers icalls for
7218         parameters and properties.
7219
7220 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
7221
7222         * object.c, icall.c: fixed warnings.
7223
7224 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
7225
7226         * marshal.c: fixed a couple of leaks and coding style in a few places.
7227
7228 2006-12-08  Dick Porter  <dick@ximian.com>
7229
7230         * process.c: Cope with NULL ProcessStartInfo arguments on windows
7231         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
7232         80173.
7233
7234 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
7235
7236         * process.c: ProcessStartInfo may have only filename set and
7237         arguments can be NULL.
7238
7239 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
7240
7241         * icall.c: fix leak found by Robert Jordan.
7242
7243 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
7244
7245         * marshal.c, marshal.h: generate managed method to access an element
7246         of a multi-dimensional array.
7247
7248 2006-11-30  Paolo Molaro (lupus@ximian.com)
7249
7250         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
7251
7252 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
7253
7254         * icall.c: back out GetFields () fix until the serialization code is
7255         fixed to not depend on the incorrect behaviour.
7256
7257 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
7258
7259         * profiler.c: provide defaults if none are set.
7260
7261 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
7262
7263         * Makefile.am, attrdefs.h: new public header file with
7264         constants for attributes for use by embedders.
7265
7266 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
7267
7268         * icall.c: GetFields () fix for bug #80064.
7269
7270 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
7271
7272         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
7273         removed long unused icalls.
7274
7275 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
7276   
7277         * marshal.c: 
7278                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
7279                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
7280                 can be generated without a delegate class.
7281                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
7282         
7283         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
7284
7285 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7286
7287         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
7288         #80069.
7289
7290 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
7291
7292         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
7293         icall-def.h: added icalls needed by System.GC.
7294
7295 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
7296
7297         * loader.c: ensure the class in catch clauses is handled
7298         correctly for generics methods (fixes bug#79980).
7299
7300 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
7301
7302         * monitor.h, monitor.c: added mono_locks_dump () function
7303         to help debug deadlocks involving managed locks.
7304
7305 2006-11-13  Dick Porter  <dick@ximian.com>
7306
7307         * file-io.c (get_file_attributes): If the file is a symlink try
7308         and get the stat data for the target, but also add the
7309         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
7310         the specs for the windows symlink support, but will probably have
7311         to be reworked when I have test data from a vista machine.  Fixes
7312         bug 79887.
7313
7314 2006-11-13  Dick Porter  <dick@ximian.com>
7315
7316         * gc.c (mono_domain_finalize): 
7317         * marshal.c (mono_delegate_begin_invoke): 
7318         * threadpool.c (socket_io_init, mono_thread_pool_init)
7319         (mono_thread_pool_finish): 
7320         * monitor.c (mono_monitor_try_enter_internal): 
7321         * threads.c (mono_thread_resume, mono_thread_init)
7322         (mono_thread_suspend_all_other_threads)
7323         (mono_thread_execute_interruption): 
7324         * appdomain.c (mono_domain_unload): Check for NULL error returns
7325         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
7326         75733.
7327
7328 2006-11-11  Miguel de Icaza  <miguel@novell.com>
7329
7330         * process.c
7331         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
7332         Only close the handle if the value of the handle is not
7333         INVALID_HANDLE_VALUE.  This just makes the process a bit more
7334         robust.
7335
7336         Improvement for #75733, so that we do not run into this problem. 
7337
7338         
7339         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
7340         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
7341         internal variables.  Fixes #79462 
7342         
7343
7344 2006-11-09  Dick Porter  <dick@ximian.com>
7345
7346         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
7347         Use poll() not select().  Fixes bug 79397.
7348
7349 2006-11-09  Raja R Harinath  <rharinath@novell.com>
7350
7351         Fix #79872
7352         * assembly.c (mono_assembly_load_from_full): Check that the given
7353         image has an assembly manifest.
7354
7355 2006-11-09  Ankit Jain  <jankit@novell.com>
7356
7357         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
7358         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
7359         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
7360
7361 2006-11-07  Dick Porter  <dick@ximian.com>
7362
7363         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
7364         Put the old resolver behaviour back for pre-2.0 profiles.
7365
7366 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
7367
7368         * threadpool.c: precise GC and locking fixes.
7369
7370 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
7371
7372         * class.c: don't load types that have an explicit unaligned
7373         managed reference. Provide better info in the TypeLoad exception.
7374         Part of the fix for bug #79744.
7375         * object.c: use the correct check for class type load issues.
7376
7377 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
7378
7379         * class.c: enforce alignment of fields with managed references
7380         even when Pack=1 is forced by the user (bug #77788).
7381
7382 2006-11-03  Dick Porter  <dick@ximian.com>
7383
7384         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
7385         If the address reverse lookup fails, return it as the hostname
7386         anyway.  Fixes bug 79721.
7387
7388 2006-11-03  Dick Porter  <dick@ximian.com>
7389
7390         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
7391         Fix build on Windows.
7392
7393 2006-11-02  Dick Porter  <dick@ximian.com>
7394
7395         * icall-def.h: 
7396         * object-internals.h: 
7397         * exception.c (mono_get_exception_thread_interrupted): 
7398         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
7399         Fixes bug 74525.
7400
7401         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
7402         Check for pending Thread.Interrupt.
7403
7404 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
7405         * loader.c: Fixed bug 79684.
7406
7407 2006-10-27  Dick Porter  <dick@ximian.com>
7408
7409         * file-io.c (get_file_attributes): Force symlinks to directories
7410         to be returned as a regular file.  Fixes bug 79733.
7411 2006-10-26  Dick Porter  <dick@ximian.com>
7412
7413         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
7414         CreateFile to open a directory then we need to set the
7415         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
7416
7417 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
7418
7419         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
7420         friends.
7421
7422 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
7423
7424         * sgengc.c: small cleanup of timer code.
7425
7426 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
7427
7428         * sgen-gc.c: fix some warnings and start adding support for
7429         complete object removal on domain unload.
7430
7431 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
7432
7433         * assembly.c: build_assembly_name should not consider a version
7434         number without build or revision number invalid. Fixes bug #79715.
7435
7436 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
7437
7438         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
7439         call kernel32 function OutputDebugString directly.
7440         
7441         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
7442         
7443 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
7444
7445         * reflection.c: small cleanup, using a function to insert a MonoString
7446         in the string heap.
7447
7448 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
7449
7450         * reflection.c: moving GC fixes.
7451
7452 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
7453
7454         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
7455         all the objects with finalizers belonging to an unloading appdomain.
7456
7457 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
7458
7459         * sgen-gc.c: added ability to allocate even when the nursery is fully
7460         pinned and fixed a couple of bugs.
7461
7462 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
7463
7464         * threads.h: Revert the last change for now.
7465
7466         * threads.h (mono_thread_get_pending_exception): Rename this to
7467         mono_thread_get_undeniable_exception ().
7468
7469 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
7470
7471         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
7472         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
7473         when fname does not refer to valid assembly. This result in a more
7474         meaningful error message.
7475         * exception.c: added mono_get_exception_bad_image_format2 which 
7476         constructs a BadImageFormatException using the ctor taking a custom
7477         message and the file name. Passing in a NULL msg results in a default
7478         message.
7479         * exception.h: define mono_get_exception_bad_image_format2 function.
7480         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
7481         when file name pointed to an invalid IL image. Use 
7482         mono_get_exception_file_not_found2 to construct FileNotFoundException,
7483         as this results in a more meaningful error message.
7484
7485 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
7486
7487         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
7488         #79465.
7489
7490 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
7491
7492         * metadata.c (mono_type_size): Change the align parameter to guint32 for
7493         consistency with the other _size functions.
7494         (mono_type_stack_size): Ditto.
7495
7496         * class.c object.c icall.c: Fix warnings caused by the above change.
7497
7498         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
7499
7500         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
7501
7502         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
7503
7504 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
7505
7506         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
7507         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
7508         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
7509         threadpool.h, threads-types.h: mark more internal functions.
7510
7511 2006-10-11  Dick Porter  <dick@ximian.com>
7512
7513         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
7514         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
7515         reproduce the bug even before applying the fix.)
7516
7517 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
7518
7519         * reflection.c: allow retrieving attributes for arguments in generic
7520         methods (bug #79241).
7521
7522 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
7523
7524         * debug-mono-symfile.c: properly check fopen () result (found by
7525         coverity).
7526
7527 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
7528
7529         * reflection.c: make error message clearer and fixed two
7530         issuelets found by Coverity.
7531
7532 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
7533
7534         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
7535
7536 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
7537
7538         * object-internals.h, gc-internal.h, profiler-private.h:
7539         mark internal functions.
7540
7541 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
7542
7543         * reflection.c: put data in the text section.
7544         * icall.c: recognize more types in type_from_typename ().
7545         * process.c, marshal.c: added some GC FIXMEs.
7546
7547 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
7548
7549         * loader.c: check for NULL before initializing.
7550
7551 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
7552
7553         * gc.c (finalizer_thread): Use a non-alertable wait here.
7554
7555         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
7556         until the correct solution is found.
7557
7558 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
7559
7560         * reflection.c (mono_module_get_object): Avoid an assert when operating on
7561         modules with no metadata. Fixes #79596.
7562
7563         * image.c (load_metadata_ptrs): Put back the error message when
7564         the #- heap is encountered since the support is not complete yet.
7565
7566 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
7567
7568         * gc.c: do not allow the user to SuppressFinalize () a
7569         delegate because it would leak the trampoline if present.
7570
7571 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
7572
7573         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
7574         PropertyPtr table.
7575
7576 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
7577
7578         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
7579
7580         * metadata.c (mono_metadata_get_param_attrs): Ditto.
7581
7582         * row-indexes.h: Add definitions for *Ptr tables.
7583
7584         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
7585
7586         * metadata.c (mono_metadata_translate_token_index): New helper function to
7587         translate table indexes used in uncompressed metadata.
7588         (mono_metadata_decode_table_row): Ditto.
7589         (mono_metadata_decode_table_row_col): Ditto.
7590
7591         * metadata.c: Add table schema for *Ptr tables.
7592
7593         * class.c loader.c: Use the new helper function to access the affected metadata
7594         tables.
7595         
7596         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
7597         #38532.
7598         
7599 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
7600
7601         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
7602         sequences which can be unbounded in size. Fixes #79583.
7603
7604 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
7605
7606         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
7607         static initialization.
7608
7609         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
7610
7611         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
7612
7613         * domain.c (mono_domain_free): Free up type_init_exception_hash.
7614
7615         * object.c (mono_runtime_class_init): Implement correct semantics when a static
7616         ctor fails, i.e. throw the same exception on subsequent accesses.
7617         
7618 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
7619
7620         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
7621         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
7622         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
7623         Handle marshalling of interfaces and VARIANTs contained in structs.
7624         
7625         Code is contributed under MIT/X11 license.
7626         
7627 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
7628
7629         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
7630         
7631         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
7632         mempool.
7633
7634 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7635
7636         * console-io.c: ignore previous SIGINT handler.
7637
7638 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
7639
7640         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
7641         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
7642         #79460, #79461, #79485.
7643
7644         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
7645
7646         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
7647         #79217.
7648
7649 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
7650
7651         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
7652         could be generated from it.
7653
7654 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
7655
7656         * rand.c: fix read loop to correctly handle EINTR.
7657
7658 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
7659
7660         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
7661         internal calls are defined to keep methods closer to the declaring
7662         type and allow a significant reduction in runtime relocations and
7663         memory usage.
7664
7665 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
7666
7667         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
7668         exception message to have FileNotFoundException use the default
7669         assembly load error message. Fixes bug #79426.
7670         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
7671
7672 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7673
7674         * threadpool.c: (start_thread_or_queue) use the root domain when
7675         creating the thread instead of the async object one.
7676
7677 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
7678
7679         * class.c, object.c, class-internals.h, reflection.c:
7680         for arrays, store element_size inside MonoClass (speedup
7681         for array object creation).
7682
7683 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
7684
7685         * icall.c: fixed CodeBase to use the file name and not the module
7686         name (bug #79365).
7687
7688 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
7689
7690         * mono-debug.c, mono-debug.h: export find_method as
7691         mono_debug_find_method ().
7692
7693 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
7694
7695         * debug-helpers.c, class-internals.h: added a few functions useful
7696         when debugging under gdb.
7697
7698 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7699
7700         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
7701         characters that need special handling.
7702
7703 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
7704
7705         * mono-config.c: make the os/cpu specification more flexible,
7706         allowing lists and negation.
7707
7708 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
7709
7710         * marshal.c: COM Interop fixes. Handle case where method->klass.
7711         is interface. Handle BSTR/MonoString when null. Use CDECL as 
7712         calling convention on non-windows platforms. This is for
7713         compatibility with XPCOM and MainWin COM.
7714         
7715         Code is contributed under MIT/X11 license.
7716         
7717
7718 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
7719
7720         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
7721         correctly. Fixes #79217.
7722
7723         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
7724
7725 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
7726
7727         * mono-config.c: allow both an os and cpu attribute for dllmap
7728         and dllentry elemnets to enable a single config file to be used
7729         for multiple architectures.
7730
7731 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
7732
7733         * loader.c: MonoLoaderError was cleared too soon on load failure.
7734         Fixes bug #79424.
7735
7736 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
7737
7738         * icall.c: use the defining class vtable when accessing a
7739         static field, not a pobblibly derived class.
7740
7741 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
7742
7743         * icall.c string-icalls.c: Remove references to unicode.h.
7744
7745         * unicode.h unicode.c Makefile.am: Remove these unused source files.
7746
7747         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
7748
7749         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
7750         indicating the image where custom marshaller types should be looked up.
7751         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
7752         custom marshallers, instead of corlib. Fixes #79425.
7753
7754 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
7755
7756         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
7757
7758 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
7759
7760         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
7761         Implement Environment.ProcessorCount.
7762         
7763         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
7764         Implement Environment.ProcessorCount.
7765         
7766         * icall.c: 
7767         Add Environment.ProcessorCount icall.
7768         
7769         Patch by Jason McFall.
7770
7771 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7772
7773         * assembly.c: don't append .exe/.dll when the filename already contains
7774         one of those extensions.
7775
7776 2006-09-12  Martin Baulig  <martin@ximian.com>
7777
7778         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
7779         to array interfaces.
7780
7781 2006-09-11  Martin Baulig  <martin@ximian.com>
7782
7783         * reflection.c (mono_image_build_metadata): Create the
7784         MethodImpl's after emitting all types and methods, so we don't
7785         need another fixup pass for them.
7786
7787 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
7788
7789         * class.c (mono_class_from_name_case): Fix regression introduced by the last
7790         change.
7791
7792 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
7793
7794         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
7795         unload.
7796
7797 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
7798
7799         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
7800         args is not set. Fixes #78926.
7801
7802 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
7803
7804         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
7805
7806         * image.c (load_class_names): Move this to class.c, and rename it to 
7807         'mono_image_init_name_cache'.
7808         (load_modules): Fix a warning.
7809
7810         * class.c icall.c image.c: Initialize image->name_cache lazily.
7811
7812         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
7813         on its name using information in the AOT file.
7814
7815         * class.c (mono_class_from_name): Use the new hook function.
7816
7817 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
7818
7819         * reflection.c (mono_param_get_objects): Handle enum default parameter values
7820         correctly.
7821
7822         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
7823         Fixes #79289.
7824         
7825 2006-09-06  Martin Baulig  <martin@ximian.com>
7826
7827         * icall.c (mono_lookup_internal_call): Small fix.
7828
7829 2006-09-05  Raja R Harinath  <rharinath@novell.com>
7830
7831         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
7832         double g_free.
7833
7834 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
7835
7836         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
7837         when --debug is specified.
7838
7839 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
7840
7841         * class.c (setup_generic_array_ifaces): Fix a warning.
7842
7843 2006-09-04  Miguel de Icaza  <miguel@novell.com>
7844
7845         * Temporarily remove the patch to assemly.c that checks the
7846         assembly versions as it breaks our gacutil.
7847
7848 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
7849
7850         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
7851
7852         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
7853         a net 1.0 runtime.
7854
7855         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
7856         created using the default ctor. Fixes #79152.
7857         (mono_string_builder_to_utf16): Ditto.
7858
7859 2006-09-01  Martin Baulig  <martin@ximian.com>
7860
7861         Fix handling of the generic array interfaces.
7862
7863         * class-internals.h
7864         (MonoDefaults): Removed `generic_array_class' and added
7865         `generic_ilist' class.
7866
7867         * class.c
7868         (mono_bounded_array_class_get): Add the new generic array interfaces.
7869         (setup_generic_array_ifaces): New static method; create vtable
7870         entries for each method in the generic array interfaces.
7871
7872         * metadata.c
7873         (select_container): Allow "parent-less" generic methods.
7874
7875         * marshal.c
7876         (mono_marshal_get_generic_array_helper): New public method.
7877
7878         * icall.c
7879         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
7880         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
7881         moved the interncall into System.Array.
7882
7883 2006-09-01  Raja R Harinath  <rharinath@novell.com>
7884
7885         A few more cases of avoiding work on types with ->byref set.
7886         Has the real fix for #79238
7887         * icall.c (is_generic_parameter): New helper.
7888         (ves_icall_Type_GetGenericParameterPosition): Use it.
7889         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
7890         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
7891         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
7892         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
7893         reference types.
7894         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
7895         reference types.
7896         (ves_icall_Type_get_IsGenericInstance): Likewise.
7897         (ves_icall_Type_get_IsGenericType): Likewise.
7898
7899 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
7900
7901         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
7902         class if possible.
7903
7904         * mempool.h (mono_mempool_get_allocated): New helper function.
7905
7906         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
7907         change.
7908
7909         * mempool.c: Fix warnings and the calculation of stats.
7910
7911         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
7912
7913         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
7914
7915         * loader.c (mono_get_method_from_token): Update method_count stat.
7916
7917         * class-internals.h (MonoStats): Add some stats.
7918
7919 2006-08-31 Robert Jordan  <robertj@gmx.net>
7920
7921         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
7922         with managed variants.
7923         All code is contributed under the MIT/X11 license.
7924         
7925 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
7926
7927         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
7928         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
7929
7930         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
7931
7932         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
7933         with cycles in classes.
7934
7935         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
7936
7937         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
7938         missing a [MarshalAs] directive. Fixes #79203.
7939
7940         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
7941         klass->marshal_info. Fixes #79217.
7942
7943 2006-08-30  Martin Baulig  <martin@ximian.com>
7944
7945         Committing a patch from Joachim Ante <joe@otee.dk>:
7946         Add support for binary data symbol stores.
7947
7948         * debug-mono-symfile.c
7949         (mono_debug_open_mono_symbol_file): Renamed into
7950         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
7951         arguments.
7952
7953         * mono-debug.c
7954         (mono_debug_open_image): Added `raw_contents' and `size' args.
7955         (mono_debug_init_2_memory): New public function.
7956
7957 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
7958
7959         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
7960
7961 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7962
7963         * appdomain.c: implement support for ShadowCopyFiles.
7964
7965 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
7966
7967         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
7968         when value is NULL (and should remove CID #51).
7969
7970 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7971
7972         * image.c: moved 2 functions to ../utils.
7973
7974 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
7975
7976         * gc.c: cope with the target object of a GC handle being NULL
7977         (bug #78877).
7978
7979 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
7980
7981         * class.c: recursively check parent's explicit implementations
7982         of interface methods (fixes bug #79125).
7983
7984 2006-08-19  Miguel de Icaza  <miguel@novell.com>
7985
7986         * filewatcher.c: Avoid warnings when building, do not redefine
7987         constants that are defined.
7988
7989         Remove warnings.
7990
7991 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7992
7993         * image.c: don't fail when the link points to an absolute path.
7994
7995 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
7996
7997         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
7998         Fix CID #3.
7999
8000 2006-08-17  Miguel de Icaza  <miguel@novell.com>
8001
8002         * image.c (full_path): A new method used to obtain the actual path
8003         of an assembly even in the presence of symbolic links.  
8004
8005         This is necessary for the case where we are running a binary that
8006         has been GACed, but we are using the "published" path name
8007         ($prefix/mono/1.0/blah.exe) which happens to point to the real
8008         file in the GAC.
8009
8010         This was the source of the failure for the `xsp' command with the
8011         recent AppDomain changes, as far as the runtime was concerned,
8012         there were two different assemblies: $prefix/mono/1.0/blah.exe and
8013         $prefix/mono/gac/blah/version/blah.exe.
8014
8015         (do_mono_image_open): use full path
8016
8017 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
8018
8019         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
8020
8021 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
8022
8023         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
8024         domain_id is supplied. Fix CID #241 and corlib's unit tests.
8025
8026 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
8027
8028         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
8029         small structures. Fixes #78990.
8030
8031 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
8032
8033         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
8034
8035         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
8036
8037 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8038
8039         * appdomain.c:
8040         * marshal.c: don't load all the assemblies from a domain into newly
8041         created ones. The new domains might have different rules and load
8042         assemblies from different locations. Fixes bug #76757.
8043
8044         Patch by Lluis. Conflicts resolved by Brian Crowell.
8045
8046 2006-08-16  Alp Toker  <alp@atoker.com>
8047
8048         * socket-io.c: First half of the fix for #79084.
8049         Set sa_size to the length of the content, not that of the struct.
8050         Don't add NULL suffix to the content, this should be done in
8051         managed code if needed.
8052
8053 2006-08-14  Raja R Harinath  <rharinath@novell.com>
8054
8055         Fix part of #79012
8056         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
8057         mono_metadata_parse_type returns NULL.
8058
8059 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
8060
8061         * normalization-tables.h : new file for string normalization data.
8062         * locales.c, locales.h, icall.c :
8063           added load_normalization_resource() for string normalization,
8064           and icall as well.
8065         * Makefile.am : added normalization-tables.h to the sources.
8066
8067 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
8068
8069         * marshal.c: Add more helper functions to reduce code duplication and use them
8070         everywhere.
8071
8072 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
8073
8074         * marshal.c: Fix non-x86 stdcall warnings.
8075         
8076         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
8077         them everywhere.
8078
8079 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
8080
8081         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
8082         type check on multi-dimensional arrays. Fixes #79000.
8083
8084 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
8085
8086         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
8087         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
8088         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
8089         * class-internals.h: add is_com_object to class structure.
8090         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
8091         null checks to COM object marshalling. Fix .ctor call on RCW.
8092         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
8093         
8094         All code is contributed under the MIT/X11 license.
8095
8096 2006-08-09  Dick Porter  <dick@ximian.com>
8097
8098         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
8099         racing mono_monitor_allocator_lock() somewhere, so don't delete
8100         the critical section for now.  Found by running and exiting
8101         monodevelop.
8102
8103 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
8104
8105         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
8106         (ves_icall_System_ComObject_FindInterface): Ditto.
8107         (ves_icall_System_ComObject_CacheInterface): Ditto.
8108
8109         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
8110         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
8111
8112 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8113
8114         * threadpool.c: treat pipes from process asynchronous reads as sockets
8115         when reading from them, so we get select/poll or epoll to wait for
8116         data.
8117
8118 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
8119
8120         * loader.c: Fix a typo (CID #233) in the null check.
8121
8122 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
8123
8124         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
8125         Hopefully fixes #78949.
8126         
8127         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
8128         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
8129         bytes. Fixes #78972.
8130
8131 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8132
8133         * filewatcher.c: we need to set errno here.
8134
8135 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8136
8137         * filewatcher.c: let Win32Exception get the error value.
8138
8139 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8140
8141         * filewatcher.c: translate errno into win32 errors for Win32Exception
8142         to know what happened.
8143
8144 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
8145
8146         * threadpool.c: Fix more warnings.
8147
8148         * assembly.c (search_loaded): Fix warnings.
8149
8150         * threadpool.c (mono_thread_pool_finish): Fix warnings.
8151         (mono_async_invoke): Ditto.
8152
8153 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
8154
8155         * object.c (mono_remote_class_vtable): Need to create proxy vtable
8156         entries for __ComObject type in addition to ComImport types.
8157         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
8158         about hash table.
8159         
8160         All code is contributed under the MIT/X11 license.
8161
8162 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
8163
8164         * image.c: avoid tentative loading of modulerefs that contain
8165         no metadata (P/Invoke library names).
8166
8167 2006-07-28  Dick Porter  <dick@ximian.com>
8168
8169         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
8170         mono_loader_lock() somewhere, so don't delete the critical section
8171         for now.  Found by running and exiting monodevelop.
8172
8173 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8174
8175         * filewatcher.c: define the inotify syscalls when we're building on
8176         linux and have sys/syscall.h. The build system might not have support
8177         for inotify but the target system might have it.
8178
8179 2006-07-26  Miguel de Icaza  <miguel@novell.com>
8180
8181         * domain.c: Documentation updates.
8182
8183         * loader.c (mono_free_method): Do not release the method
8184         information if we are being profiled, as profilers will use this
8185         information at shut down to present some data to the user.
8186
8187         This is needed so that the profiler does not crash, as the
8188         profiler tends to keep MonoMethods around, and they might become
8189         invalid if we free these.
8190
8191         (mono_get_method_constrained): Return the original CIL stream
8192         method as well, so verification can be performed against it.
8193
8194 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8195
8196         * filewatcher.[ch]: support for inotify file system watcher.
8197         * icall.c: add new internal calls for the inotify file system watcher.
8198
8199 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8200
8201         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
8202         #78888.
8203
8204 2006-07-20  Dick Porter  <dick@ximian.com>
8205
8206         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
8207         warning.
8208
8209 2006-07-20  Dick Porter  <dick@ximian.com>
8210
8211         * threads.c (start_wrapper): Do the thread cleanup while we still
8212         hold a reference to its object.  Fixes bug 78123.
8213
8214 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
8215
8216         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
8217         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
8218           "managed-to-managed".
8219         * icall.c: Redirect string constructors that take sbyte* to
8220           ves_icall_System_String_ctor_RedirectToCreateString.
8221         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
8222           to CreateString () methods with matching signature.
8223         * reflection.c: Use original security informations for
8224           MONO_WRAPPER_MANAGED_TO_MANAGED.
8225         * security-manager.c: Use original security informations for
8226           MONO_WRAPPER_MANAGED_TO_MANAGED.
8227         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
8228           that is a placeholder and only its address should be used.
8229         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
8230           that is a placeholder and only its address should be used.
8231
8232 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
8233
8234         Begin implementing COM Interop.
8235         * appdomain.c: Increment corlib version.
8236         * class.c: Set ComImport classes' parent to __ComObject.
8237         * loader.c: Mark cominterop methods as such.
8238         * domain.c: Add __ComObject class to MonoDefaults structure.
8239         * image.c: Add 2 hashtables to the image for COM Interop related methods
8240         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
8241         using the mempool allocator
8242         
8243         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
8244         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
8245         declaration for mono_metadata_type_dup_mp.
8246         
8247         * debug-helpers.c: Added strings for two additional wrapper types
8248         * object.c: Create proxy objects for ComImport classes
8249         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
8250         and added __ComObject class to MonoDefaults structure.
8251         
8252         * object-internals.h: Finish MonoRealProxy definition, and add definition of
8253         MonoComInteropProxy and MonoComObject.
8254         
8255         * marshal.c: Added support for COM Interop
8256         (signature_cominterop): Converts managed signature to corresponding
8257         unmanaged COM signature.
8258         (cominterop_get_function_pointer): gets unmanaged function pointer via
8259         COM object vtable
8260         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
8261         (cominterop_get_method_interface): returns interface type that method is defined on
8262         (mono_mb_emit_cominterop_call): emits native call to function pointer
8263         gotten from vtable
8264         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
8265         that matches signature of unmanaged function.
8266         (cominterop_get_native_wrapper): wrapper around adjusted method call.
8267         (cominterop_get_invoke): forwards call from proxy to __ComObject
8268         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
8269         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
8270         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
8271         
8272         * marshal.h: Added Marshal icall declarations.
8273         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
8274         so we can access them in finalizer
8275         
8276 2006-07-14  Dick Porter  <dick@ximian.com>
8277
8278         * object.c (mono_type_initialization_cleanup): Fix a race
8279         condition by temporarily commenting out the critical section
8280         deletion.
8281
8282 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
8283
8284         * reflection.c (create_custom_attr): Fix some warnings.
8285         (create_custom_attr_data): Ditto.
8286         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
8287         types. Fixes #78855.
8288
8289 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
8290
8291         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
8292
8293         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
8294
8295 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
8296
8297         * reflection.c (resolve_object): Add support for DynamicMethod.
8298
8299         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
8300         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
8301
8302 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
8303
8304         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
8305         don't leak GPtrArray's pdata has we have no use (nor free) for it.
8306
8307 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
8308
8309         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
8310         Fixes #77888.
8311
8312 2006-06-30  Raja R Harinath  <rharinath@novell.com>
8313
8314         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
8315         slightly: remove a shadow local variable.
8316
8317 2006-06-29  Raja R Harinath  <rharinath@novell.com>
8318
8319         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
8320         definition that introduces the virtual function slot.
8321         Also fix Coverity #105.
8322
8323 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
8324
8325         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
8326         for dynamic assemblies. Fixes #78724.
8327
8328 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
8329
8330         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
8331         Fixes #78722.
8332
8333 2006-06-21  Martin Baulig  <martin@ximian.com>
8334
8335         * reflection.c
8336         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
8337         fixes #76484.
8338
8339 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
8340
8341         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
8342
8343 2006-06-20  Raja R Harinath  <rharinath@novell.com>
8344
8345         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
8346         nor TYPEREFs.
8347         * class.c (mono_class_create_from_typespec): Add 'context' argument.
8348         Inflate result if necessary.
8349         (mono_class_get_full): Remove old version.  Rename from
8350         'mono_class_get' and add 'context' argument.  Pass it to
8351         ..._create_from_typespec.
8352         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
8353         (mono_ldtoken): Revert change below.
8354
8355 2006-06-20  Martin Baulig  <martin@ximian.com>
8356
8357         * class.c (mono_ldtoken): Don't pass the generic context to
8358         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
8359
8360 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
8361
8362         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
8363         and later freeing it. Fixes #78638.
8364
8365 2006-06-15  Miguel de Icaza  <miguel@novell.com>
8366
8367         * icall.c (mono_class_get_throw): Revert over-zealous error
8368         throwing, the caller for mono_class_get_throw will cope with
8369         errors when classes are not properly initialized already.
8370
8371         The code still copes with loader exceptions though.
8372
8373         Fixes the regression in reftype1 and reftype3 from the CAS tests.
8374         
8375 2006-06-14  Miguel de Icaza  <miguel@novell.com>
8376
8377         Fixes the `make run1' version of RuntimeAbort (to be commited,
8378         source is in Bugzilla).
8379         
8380         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
8381         FALSE on class loading failure instead of returning true.
8382
8383         * class.c (mono_class_create_from_typedef): It is possible for
8384         mono_metadata_interfaces_from_typedef_full to fail if a class is
8385         not found, cope with this.
8386         
8387
8388 2006-06-14  Dick Porter  <dick@ximian.com>
8389
8390         * socket-io.c: 
8391         * process.c: Fix a bunch of signed/unsigned warnings from gcc
8392         4.1.1
8393
8394 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
8395
8396         * culture-info-table.h : oops, forgot to make it nsync with r61548.
8397
8398 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
8399
8400         * icall.c: Another fix for building mono in Visual Studio.
8401
8402 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
8403
8404         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
8405         
8406 2006-06-09  Martin Baulig  <martin@ximian.com>
8407
8408         * debug-mono-symfile.c: Put this back and really fix it this
8409         time. Sorry for all the trouble.
8410
8411 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
8412
8413         * icall.c (mono_class_get_throw): Fix a warning.
8414         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
8415         ReflectionTypeLoadException if needed. Fixes #78606.
8416
8417         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
8418         (mono_class_init): Ditto.
8419
8420         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
8421         ref_only exceptions.
8422         (mono_loader_clear_error): Make this work even if there is no error.
8423
8424 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
8425
8426         * object-internals.h marshal.c marshal.h icall.c: Implement method 
8427         Marshal.GetComSlotForMethodInfo using internal call.
8428
8429 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
8430
8431         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
8432         a function for signalling it.
8433
8434         * class.c (mono_class_from_typeref): Use the new kind of loader error when
8435         a referenced assembly is not found.
8436
8437         * loader.c (mono_loader_error_prepare_exception): Add support for 
8438         LOADER_ERROR_ASSEMBLY. Fix formatting.
8439
8440 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
8441
8442         * domain.c appdomain.c class-internals.h marshal.c: Add support 
8443         for VARIANT marshalling on windows and increment corlib version
8444         since Variant struct was added.
8445
8446 2006-06-03  Miguel de Icaza  <miguel@novell.com>
8447
8448         * debug-mono-symfile.c: Revert Martin's previous patch which broke
8449         stack trace line information:
8450
8451         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
8452         (Martin) when looking up B which is between A and C, return A not C.
8453
8454         Bug is #78573.
8455
8456         Thanks to Alexander Olk for tracking this down.
8457
8458 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
8459
8460         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
8461         
8462         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
8463         avoid clobbering its value.
8464         (mono_string_to_lpstr): Fix a warning on windows.
8465
8466 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
8467
8468         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
8469
8470         * reflection.c loader.c: Removed references to 'dummy' flag.
8471
8472         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
8473
8474         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
8475         it gets GC tracking.
8476
8477         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
8478         GC tracking.
8479         
8480         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
8481
8482         * marshal.c threadpool.c: Update callers of mono_async_result_new.
8483
8484         * appdomain.c: Bump corlib version.
8485
8486 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
8487
8488         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
8489         CEE_STIND_REF when working with object references.
8490
8491 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
8492
8493         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
8494         Fixes #78539.
8495
8496 2006-05-30  Miguel de Icaza  <miguel@novell.com>
8497
8498         * loader.c (method_from_memberref): Fix argument value for
8499         mono_loader_set_error_method_load (I was passing the MonoClass
8500         instead of the class name char *).
8501
8502 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
8503
8504         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
8505         CEE_STIND_REF when working with object references.
8506
8507 2006-05-30  Martin Baulig  <martin@ximian.com>
8508
8509         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
8510         mono_method_full_name() change and replace the ':' with a '.'
8511         here.
8512
8513 2006-05-30  Martin Baulig  <martin@ximian.com>
8514
8515         * debug-mono-symfile.c
8516         (mono_debug_symfile_lookup_location): Fix the algorithm:
8517         when looking up B which is between A and C, return A not C.
8518
8519 2006-05-29  Martin Baulig  <martin@ximian.com>
8520
8521         * mono-debug.h
8522         (MonoDebugMethodInfo): Make the typedef public.
8523         (MonoDebugSourceLocation): New public struct.
8524
8525         * mono-debug.c
8526         (mono_debug_source_location_from_address): Removed.
8527         (mono_debug_source_location_from_il_offset): Removed.
8528         (mono_debug_il_offset_from_address): Removed.
8529         (mono_debug_address_from_il_offset): Removed.
8530         (mono_debug_lookup_method): New public function.
8531         (mono_debug_lookup_source_location): New public function; replaces
8532         the old mono_debug_source_location_from_*() functions; see the
8533         inline documentation.
8534         (mono_debug_free_source_location): New public function.
8535         (mono_debug_print_stack_frame): New public function; see the
8536         inline documentation.
8537
8538         * debug-mono-symfile.c
8539         (mono_debug_find_source_location): Renamed into
8540         mono_debug_symfile_lookup_location(); only take a
8541         `MonoDebugMethodInfo *' and an `offset' argument; added inline
8542         documentation.
8543         (mono_debug_find_method): Renamed into
8544         mono_debug_symfile_lookup_method().
8545
8546 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
8547
8548         * assembly.c (mono_assembly_open_full): Dont overwrite the status
8549         returned by mono_image_open_full ().
8550
8551         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
8552         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
8553         #78517.
8554
8555         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
8556         #78518.
8557
8558 2006-05-27  Miguel de Icaza  <miguel@novell.com>
8559
8560         * class.c (mono_class_from_typeref): handle missing images
8561         earlier, deals with bug #78418.   Refactor code; 
8562
8563         Fix a warning introduced in my previous commit (some stale code
8564         from before I revisited my patch).
8565
8566         * class.c (mono_class_create_from_typedef): On failure, remove the
8567         class from the MonoImage->class_cache as the class is not
8568         initialized;   Fixes the leak pointed out by Paolo.
8569
8570 2006-05-25  Dick Porter  <dick@ximian.com>
8571
8572         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
8573         DeleteCriticalSections until I figure out which one may still be
8574         sometimes locked when mono_thread_cleanup is called.
8575
8576 2006-05-24  Dick Porter  <dick@ximian.com>
8577
8578         * threads.c (mono_thread_cleanup): Move the threading cleanup out
8579         of mono_thread_manage and back into its own function, so it can be
8580         called after the finalizer thread has finished.
8581
8582         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
8583
8584 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
8585
8586         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
8587         Fixes #78495.
8588
8589         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
8590         with non-blittable elements.
8591         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
8592
8593 2006-05-24  Martin Baulig  <martin@ximian.com>
8594
8595         * mono-debug-debugger.h (MonoDebuggerEvent): Added
8596         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
8597
8598         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
8599         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
8600         `mono_debugger_event_handler' to NULL.
8601
8602 2006-05-24  Martin Baulig  <martin@ximian.com>
8603
8604         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
8605
8606 2006-05-24  Martin Baulig  <martin@ximian.com>
8607
8608         * mono-debug-debugger.h
8609         (mono_debugger_create_notification_function): Added
8610         `MonoCodeManager *' argument.
8611
8612 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
8613
8614         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
8615
8616 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
8617
8618         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
8619         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
8620         implementation.
8621
8622 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
8623
8624         * icall.c: precise GC support: objects can't be stored in unmanaged
8625         memory anymore, even if they are kept alive by other references: since
8626         they can move the GC needs to be able to always find them.
8627
8628 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
8629
8630         * object.c: precise GC support for static fields. Support
8631         for moving GCs: write barriers and pinned allocation for interned
8632         strings.
8633
8634 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
8635
8636         * domain.c, domain-internals.h: precise GC support for the MonoDomain
8637         structure.
8638
8639 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
8640
8641         * class.c, gc.c: sgen and precise GC updates.
8642
8643 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
8644
8645         * marshal.h, marshal.c: added write barrier wrapper and precise type
8646         fixes.
8647
8648 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
8649
8650         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
8651         support.
8652
8653 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
8654
8655         * reflection.c: precise and sgen GC updates.
8656
8657 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
8658
8659         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
8660
8661 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
8662
8663         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
8664
8665 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
8666
8667         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
8668         MONO_TYPE_OBJECT. Fixes #78462.
8669
8670 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
8671
8672         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
8673         and blittable types.
8674
8675 2006-05-17  Miguel de Icaza  <miguel@novell.com>
8676
8677         * class.c (mono_class_get_exception_for_failure): Implement parts
8678         of a TODO: if the loader error is set (instead of the class
8679         error), we return a Loader exception that can be properly thrown
8680         elsewhere.
8681
8682         This was exposed by some Winforms 2.0 code that I tried to run
8683         (Atsushi pointed me to it).
8684
8685 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
8686
8687         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
8688         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
8689         
8690         * marshal.c (emit_marshal_vtype): Add limited support for 
8691         UnmanagedType.LPStruct. Fixes #78427.
8692
8693         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
8694         Applied a patch from kangaroo to fix #77523.
8695
8696 2006-05-17  Martin Baulig  <martin@ximian.com>
8697
8698         * threads.c
8699         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
8700         (debugger_thread_created): Removed.
8701         (debugger_thread_exited): Removed.
8702
8703 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
8704
8705         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8706
8707         * object-internals.h (MonoReflectionResource): Sync with managed version.
8708
8709 2006-05-12  Wade Berrier <wberrier@novell.com>
8710
8711         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
8712
8713 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
8714
8715         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
8716         functions try to allocate from the image mempool.
8717
8718 2006-05-12  Dick Porter  <dick@ximian.com>
8719
8720         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
8721
8722 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
8723
8724         * object.c: The FieldGetter and FieldSetter methods require the full
8725         name of the class, not only the name. Fixes bug #78277.
8726
8727 2006-05-11  Miguel de Icaza  <miguel@novell.com>
8728
8729         * loader.c (method_from_memberref): Do not pass the NULL klass to
8730         mono_loader_set_error_() methods.  Pass the non-NULL value
8731         (class). 
8732
8733 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
8734
8735         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
8736         (mono_assembly_close): Null out assembly->image->references after freeing it.
8737
8738         * image.c (mono_image_close): Free image->references.
8739         
8740         * reflection.c (mono_image_basic_init): Fix a small memory leak.
8741
8742 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
8743
8744         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
8745         before checking if it's NULL (g_assert).
8746
8747 2006-05-10  Martin Baulig  <martin@ximian.com>
8748
8749         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
8750         I thought I already killed that two months ago, but now it somehow reappeared.
8751
8752 2006-05-10  Martin Baulig  <martin@ximian.com>
8753
8754         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
8755
8756 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
8757
8758         * reflection.c: Allocate memory for dynamically created methods in the image
8759         mempools.
8760
8761 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
8762
8763         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
8764         don't use the ad pointer before checking if it's NULL (g_assert).
8765
8766 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
8767
8768         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
8769         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
8770
8771         * marshal.c: Allocate all signatures from mempools.
8772
8773         * marshal.c: Allocate some more signatures from mempools.
8774
8775 2006-05-09  Miguel de Icaza  <miguel@novell.com>
8776
8777         * object.c (mono_load_remote_field): The code used to provide a
8778         temporary variable for returning results if the user did not
8779         provide a result pointer.  But our temporary variable was allocted
8780         on the satck.
8781
8782         Fix calling code to always pass a result area.   Coverity ID 103.
8783
8784 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
8785
8786         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
8787         value, not the old. Fixes #78312.
8788         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
8789
8790         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
8791         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
8792         per-image cache.
8793
8794         * assembly.c (mono_assembly_close): Free image->references.
8795
8796         * assembly.c (mono_assembly_names_equal): Fix a warning.
8797         (mono_assemblies_cleanup): Cleanup more global data.
8798
8799         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
8800
8801         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
8802         ptr_cache and image->modules.
8803
8804         * image.c (mono_image_init): Allocate array_cache lazily.
8805         
8806 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8807
8808         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
8809         behavior was changed recently and has bad side effects.
8810
8811 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
8812
8813         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
8814         
8815         * assembly.c (mono_assembly_close): Remove a debug printf.
8816
8817         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
8818
8819         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
8820         to also allow for temporary references between mono_image_open ()/close ().
8821
8822         * domain.c (get_runtimes_from_exe): Add a FIXME.        
8823
8824 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
8825
8826         * marshal.c: Fix support for dynamic methods.
8827
8828         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
8829
8830         * marshal.c (mono_marshal_cleanup): New cleanup function.
8831
8832         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
8833         image mempools.
8834
8835         * class.c (mono_class_init): Fix leaking class->nested_classes.
8836
8837         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
8838
8839         * image.c (mono_image_init): Initialize the new cashes.
8840
8841         * image.c (mono_image_close): Destroy the new cashes.
8842
8843         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
8844
8845         * mempool.c (mono_mempool_strdup): New helper function.
8846
8847         * class-internals.h: Add prototype for mono_loader_unlock ().
8848
8849         * domain.c (mono_jit_info_table_find): Fix a warning.
8850         (mono_debugger_check_runtime_version): Ditto.
8851
8852         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
8853         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
8854         functions to these modules.
8855
8856         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
8857         metadata modules.
8858         
8859         * marshal.c (mono_free_bstr): Fix a warning.
8860
8861         * assembly.c (mono_assembly_open_full): Fix another small leak.
8862
8863         * object.c: Fix some unload leaks in the remoting code.
8864
8865         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
8866         function.
8867
8868         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
8869
8870         * reflection.c: Fix some unload leaks in dynamic assemblies.
8871
8872 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
8873
8874         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
8875         * marshal.h: Add BSTR support on Win32
8876         * icall.c: Add BSTR icalls
8877         * metadata.h: Add BSTR enums
8878
8879 2006-04-28  Miguel de Icaza  <miguel@novell.com>
8880
8881         Work to catch the crash from #76795 and turn it into an
8882         exception.   As I stubbed out pieces of the VisualBasic support,
8883         I found a number of places where the code was failing and I added
8884         checks to those places. 
8885         
8886         * metadata.c (do_mono_metadata_parse_generic_class): Make this
8887         function return a status code.  If we fail to parse the signature
8888         from mono_metadata_parse_generic_inst, return FALSE.
8889
8890         * loader.c (mono_get_method_from_token): If we fail to load the
8891         method (mono_class_get) return NULL.   
8892
8893         * (method_from_memberref): Return NULL if we are unable to parse
8894         the method signature
8895
8896         (mono_loader_error_prepare_exception): Since we now use the
8897         loader_error flag internally to stop processing, and obtaining
8898         exceptions that might be thrown will walk this code path the
8899         proper way of going from a MonoLoaderError into a
8900         MonoException was convoluted.   This new routine encapsulates the
8901         process of turning the error into an exception and *clearing* the
8902         error afterwards.
8903         
8904 2006-04-27  Miguel de Icaza  <miguel@novell.com>
8905
8906         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
8907         with missing assemblies), and to cope with:
8908
8909                 * Missing fieldref from a non-existing assembly.
8910                 * Missing methodref from a non-existing assembly.
8911
8912         The first batch of work to address *some* of the issues from 76661.
8913         
8914         * object.c (mono_class_create_runtime_vtable): If we fail to
8915         initialize the class raise the exception here. 
8916
8917         * metadata.c (mono_class_get_overrides_full): If any methods fail
8918         to load return the failure to the caller.
8919
8920         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
8921         flagging assemblies that failed to load.   
8922
8923         Do not crash if we are unable to load the assembly.
8924
8925         (mono_assembly_close): Do nothing with REFERENCE_MISSING
8926         assemblies. 
8927
8928         * loader.c (mono_loader_set_error_type_load): Change the
8929         convention to always pass unallocated strings, so we make our own
8930         copies (I know our own code had duplicated strings before, but
8931         this keeps the normal conventions).
8932         (method_from_memberref): Call mono_loader_set_error_method_load
8933         for all possible failures of loading the class. 
8934         Remove assert, turn into a loader error.
8935
8936         (mono_loader_error_to_exception): Move this routine from mini
8937         (mini_loader_error_to_exception) there was no need to have that in
8938         mini. 
8939
8940         * class.c (mono_class_from_typeref): If we were not able to load
8941         the assembly with mono_assembly_load_reference, call the
8942         mono_loader_set_error_type_load to register the problem.
8943
8944         (mono_class_setup_fields): If we fail to load the type from
8945         mono_metadata_parse_type_full, call mono_class_set_failure and
8946         break from the loop.
8947
8948         If class->exception_type is set, we do not layout the fields as
8949         that might crash the runtime, and instead return (from breaking
8950         from the previous loop).
8951
8952         (mono_class_setup_vtable): This now returns a boolean indicating
8953         whether the table was properly setup.   The decision is driven by
8954         mono_class_get_overrides_full which might run into non-existing
8955         methods. 
8956         
8957         (mono_class_init): Returns TRUE on success or FALSE if there was a
8958         problem in loading the type (incorrect assemblies, missing
8959         assemblies, methods, etc).
8960
8961         When we call mono_class_setup_fields we also check for a potential
8962         error inside this call (either a class exception or a general
8963         loader exception).
8964
8965         (mono_class_create_from_typedef): If the parent fails to load
8966         (calling mono_class_get_full) return NULL.
8967         
8968         ** Important **
8969
8970         calls to mono_metadata_parse_type_full should be checked
8971         everywhere and set the mono_class_set_failure
8972         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
8973
8974         The current patch checks the places where my manually constructed
8975         tests show the errors are showing up, but we should do it
8976         everywhere. 
8977
8978         ** Important2 **
8979
8980         mono_class_init return values should be tested everywhere, like
8981         the previous case this is something that we should audit
8982         everywhere and not only on the cases exposed by the tests I
8983         created. 
8984
8985 2006-04-26  Miguel de Icaza  <miguel@novell.com>
8986
8987         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
8988         boolean parameter and instead pass the information on `options'
8989         parameter (FileOptions).
8990
8991         * icall.c: Register the new signature for MonoIO.Open.
8992
8993         * debug-helpers.c (dis_one): Trying to understand how coverity
8994         works.  Fix Run 5, item 78.
8995
8996 2006-04-26  Dick Porter  <dick@ximian.com>
8997
8998         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
8999         dereference.
9000
9001 2006-04-25  Martin Baulig  <martin@ximian.com>
9002
9003         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
9004
9005         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
9006         debugger_thread_created().
9007         (debugger_gc_push_all_stacks): Don't handle the main thread in any
9008         special way.
9009         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
9010         (mono_debugger_finalize_threads): New function; undo the effects
9011         of mono_debugger_init_threads().
9012         (mono_debugger_create_all_threads): Removed.
9013
9014 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
9015
9016         * image.c (mono_image_close): Tidy up trace messages.
9017
9018         * assembly.c (mono_assembly_close): Ditto.
9019
9020         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
9021         no longer references an already freed assembly. Fixes #78168.
9022
9023 2006-04-21  Dick Porter  <dick@ximian.com>
9024
9025         * threads.c (mono_thread_detach): Fix reference counting when
9026         detaching threads.
9027
9028 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
9029
9030         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
9031         #78155.
9032
9033 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
9034
9035         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
9036         (mono_type_to_stind): Ditto.
9037
9038         * marshal.c: Use the new helper functions to simplify code.
9039
9040         * image.c (mono_image_close): Add some code for help debug assembly unloading
9041         problems.
9042
9043         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
9044         image mempool.
9045
9046         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
9047         assembly was already loaded in another appdomain. Fixes #78083.
9048
9049 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
9050
9051         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
9052         referenced assemblies.
9053         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
9054
9055         * domain.c (mono_domain_free): Add a trace message.
9056
9057         * appdomain.c (add_assemblies_to_domain): Ditto.        
9058
9059         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
9060         field.  
9061
9062 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
9063
9064         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
9065
9066 2006-04-12  Martin Baulig  <martin@ximian.com>
9067
9068         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
9069         `USE_INCLUDED_LIBGC'.   
9070
9071 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
9072
9073         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
9074         the patch contains ../ and a small directory name later. Hopefully fixes
9075         #78035.
9076
9077 2006-04-10  Martin Baulig  <martin@ximian.com>
9078
9079         Clean up the debugger's thread-handling code.
9080
9081         The debugger's thread-handling code has been moved from
9082         ../mini/debug-debugger.c to threads.c.  We now iterate directly
9083         over the `threads' hash, keep track of exiting threads and also
9084         use proper locking.
9085
9086         We can now debug XSP and XSP based applications with the debugger.
9087
9088         * object-internals.h (MonoThread): Added `gpointer end_stack'.
9089
9090         * threads.h
9091         (MonoThreadCallbacks): Removed; this was only used by the debugger.
9092         (mono_install_thread_callbacks): Likewise.      
9093
9094         * threads.c (mono_thread_callbacks): Removed.
9095         (debugger_thread_created, debugger_thread_exited): New static functions.
9096         (start_wrapper): Call debugger_thread_created().
9097         (thread_cleanup): Call debugger_thread_exited().
9098         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
9099         (mono_debugger_init_threads): New public function.
9100         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
9101         iterate directly over the `threads' hash and also use proper locking.
9102
9103         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
9104
9105         * mono-debug-debugger.h
9106         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
9107
9108 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
9109
9110         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
9111         argument type=array. Fixes #78057.
9112
9113 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
9114
9115         * culture-info-table.h : regenerated. Fixed bug #69652.
9116
9117 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
9118
9119         * loader.c metadata.c: Reapply a variant r59116.
9120         
9121         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
9122
9123         * class.c (mono_class_setup_interface_offsets): New internal function.
9124
9125         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
9126         interfaces too. Fixes #77398.
9127
9128         * reflection.c (encode_cattr_value): Add support for 
9129         parameter type=object, argument type=array.
9130         (load_cattr_value): Ditto. Fixes #77916.
9131
9132         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
9133         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
9134
9135         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
9136         a byval char array and CharSet is Ansi.
9137
9138         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
9139
9140 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
9141
9142         * metadata.c: Add some locking comments.
9143         
9144         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
9145         mempool.
9146         (mono_metadata_free_method_signature): Don't free the signature itself.
9147
9148         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
9149
9150         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
9151         reference the same MonoImage.
9152         (mono_assembly_load_from_full): Add an assert.
9153
9154 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
9155
9156         * image.c (mono_image_close): Don't put the image we are about to free into the
9157         loaded_images_guid_hash.
9158
9159         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
9160         to reduce code duplication.
9161
9162         * marshal.c: Register the native functions called by this module as icalls, to
9163         somewhat centralize the creation of MonoMethodSignature's.
9164
9165         * loader.c (mono_method_signature): Add a cache for method signatures.
9166
9167         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
9168         the parameter attributes of a method.
9169         (mono_metadata_parse_method_signature_full): Refactored the computation of
9170         parameter attributes into a separate function. Also avoid one allocation in
9171         most cases.
9172
9173         * assembly.c (mono_assembly_close): Ditto.
9174
9175         * image.c (mono_image_close): Log trace messages with INFO level.
9176
9177         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
9178
9179         * image.c reflection.c: Correct reference counting of image modules.
9180         
9181         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
9182         of this function from the image mempool.
9183         
9184         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
9185         to allow more cached types to be used.
9186
9187         * mono-debug.c (mono_debug_add_method): Appled patch from
9188         David S. Miller  <davem@sunset.davemloft.net>: Access 
9189         minfo->lexical_blocks[] entry elements using read32().
9190
9191 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
9192
9193         * loader.c (mono_free_method): No longer free the method header for non-dynamic
9194         methods as it is allocated from the mempool.
9195
9196         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
9197         image mempool.
9198
9199         * metadata-internals.h: Add comments describing the reference counting scheme
9200         used for MonoImage and MonoAssembly.
9201
9202         * image.c assembly.c reflection.c: Rework reference counting of images and 
9203         assemblies so they are freed when the runtime is shut down. Free some 
9204         additional memory structures when an image is unloaded.
9205         
9206 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
9207
9208         * class.c loader.c reflection.c: Allocate more data structures in
9209         the image mempool.
9210
9211 2006-03-31  Miguel de Icaza  <miguel@novell.com>
9212
9213         * icall.c
9214         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
9215         build on pre glib 2.4 systems.
9216
9217 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
9218
9219         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
9220
9221         * icall.c: Fix some warnings.
9222
9223 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
9224
9225         * culture-info-table.h : regenerated.
9226
9227 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
9228
9229         * threads.c, object-internals.h, verify.c: changed the culture caching
9230         code to use a normal MonoArray for storage so the GC can keep track of
9231         them easily. Fixed bits of the cache logic, too and simplified the
9232         code.
9233
9234 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
9235
9236         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
9237         thread for non-Boehm GCs.
9238
9239 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
9240
9241         * domain.c, object.c, domain-internals.h: reduce the amount of memory
9242         needed to keep track of the data for static fields.
9243
9244 2006-03-29  Raja R Harinath  <rharinath@novell.com>
9245
9246         Fix #75172
9247         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
9248         for interface classes.  Use 'num_methods' instead.
9249         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
9250         before using '->vtable_size' field.
9251
9252 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
9253
9254         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
9255         doesn't contain managed pointers, so use a normal hashtable.
9256
9257 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
9258
9259         * reflection.c, class-internals.h, domain.c: fixed handling of types
9260         used as values for objects in custom attributes (bug #77915):
9261
9262 2006-03-24  Martin Baulig  <martin@ximian.com>
9263
9264         * class.c (mono_class_setup_fields): Added support for generic
9265         instances; fixes #77580.
9266
9267 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9268
9269         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
9270
9271 2006-03-24  Dick Porter  <dick@ximian.com>
9272
9273         * file-io.c (get_file_attributes): More stat macro breakage.
9274         Fixes bug 77759.
9275
9276 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
9277
9278         * profiler.c: added the file=filename option in the default profiler
9279         to output the profile data to filename.
9280
9281 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9282
9283         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
9284         bug #77877.
9285
9286 2006-03-22  Martin Baulig  <martin@ximian.com>
9287
9288         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
9289         allocated `MonoClassField *' in `fb->handle'.
9290
9291 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
9292
9293         * class.c, image.c, metadata-internals.h: implemented new mechanism to
9294         allocate interface ID to save memory and allow better ID reuse on
9295         appdomain unload. setup_generic_vtable () removal from Martin.
9296
9297 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
9298
9299         * object.h, appdomain.c, domain.c, exception.c, icall.c,
9300         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
9301         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
9302         write barriers for reference stores with managed objects accessed with
9303         C structures in the runtime and in embedding programs.
9304
9305 2006-03-20  Raja R Harinath  <rharinath@novell.com>
9306
9307         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
9308         'interface_id' and 'max_interface_id' fields of MonoClasses
9309         representing open generic types.
9310
9311 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
9312
9313         * object.h, object.c, icall.c: added functions to deal with
9314         storing valuetypes that contain references in managed objects.
9315         * reflection.c, string-icalls.c, threads.c, marshal.c: small
9316         fixes and comments around uses of mono_array_addr ().
9317
9318 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
9319
9320         * object.h, icall.c, monitor.c: object.GetHashCode ()
9321         implementation that supports the moving garbage collector.
9322
9323 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
9324
9325         * icall.c, threads-types.h, threads.c: implemented finalizer for
9326         LocalDataStoreSlot.
9327
9328 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
9329
9330         * metadata.c (mono_type_size): Add a fixme.
9331         (mono_type_stack_size): Ditto.
9332
9333         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
9334         'type_forwarders' field.
9335
9336         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
9337         attribute from net 2.0.
9338
9339         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
9340         from class.c.
9341
9342         * class.c (mono_class_setup_fields): Fix a warning.
9343         
9344         * class.c (mono_class_from_name): Add support for assemblyref entries
9345         in the EXPORTEDTYPE table.
9346
9347         * reflection.c: Add support for handling type forwarders under net 2.0.
9348
9349         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
9350         
9351 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
9352
9353         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
9354         overwriting entries in ModuleBuild->types, also clean up the code
9355         a little. Fixes #77774.
9356
9357 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
9358
9359         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
9360         load friend assembly info when present.
9361
9362 2006-03-14  Raja R Harinath  <rharinath@novell.com>
9363
9364         Fix crasher on gtest-158.cs.
9365         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
9366         the return value if the MonoClass we want is yet in an
9367         inconsistent state.
9368         * class.c (mono_class_create_from_typedef): Add an comment
9369         explaining an order dependency between mono_class_setup_parent and
9370         mono_class_setup_mono_type.
9371
9372 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
9373
9374         * class.c: documentation updates and events bug fix.
9375
9376 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
9377
9378         * class.c: some cleanup, locking fixes.
9379
9380 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
9381
9382         * class.c: fix the generics code to setup nested
9383         type info to the instantiated type (bug #77770).
9384
9385 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
9386
9387         * marshal.c: fixed a few type correctness issues.
9388
9389 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
9390
9391         * loader.c: the Set/Get/Addrtess array methods should be public.
9392
9393 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
9394
9395         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
9396         
9397         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
9398         info->wrapper.
9399
9400 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
9401
9402         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
9403
9404         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
9405
9406         * mempool.c (mono_mempool_alloc): Speed this up a bit.
9407         (mono_mempool_alloc0): Ditto.
9408
9409 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9410
9411         * socket-io.c:
9412         (create_object_from_sockaddr): it was allocating 4 extra bytes
9413         for the AF_UNIX data. Fixes bug #77747.
9414
9415 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
9416
9417         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
9418
9419 2006-03-09  Dick Porter  <dick@ximian.com>
9420
9421         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
9422         Fixes bug 76966 again.
9423
9424 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
9425
9426         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
9427         names from r57532
9428         * appdomain.c: Bumped corlib version to 48 (due to r57532)
9429
9430 2006-03-07  Martin Baulig  <martin@ximian.com>
9431
9432         * object.c
9433         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
9434
9435 2006-03-07  Martin Baulig  <martin@ximian.com>
9436
9437         * class.c
9438         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
9439         regression introduced in r56970; see gtest-252.cs.
9440
9441         * loader.c (mono_get_method_constrained): Correctly handle generic
9442         methods; see gtest-253.cs.
9443
9444 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
9445
9446         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
9447
9448 2006-03-04  Martin Baulig  <martin@ximian.com>
9449
9450         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
9451         compute the parent type at runtime, just like we're already doing
9452         it for interfaces.
9453
9454         * reflection.c
9455         (mono_reflection_bind_generic_parameters): Don't compute the
9456         parent type anymore.
9457
9458         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
9459
9460 2006-03-04  Martin Baulig  <martin@ximian.com>
9461
9462         * mono-debug-debugger.h
9463         (mono_debugger_create_notification_function): Allocate memory at
9464         runtime and return a pointer to it.
9465
9466 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
9467
9468         * assembly.c: Fix windows build.
9469         
9470         * assembly.c: Fix build.
9471
9472         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
9473
9474         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
9475         
9476 2006-03-03  Dick Porter  <dick@ximian.com>
9477
9478         * process.c
9479         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
9480         Check parameters before dereferencing them.  Fixes Aaron's part of
9481         bug 77393.
9482
9483 2006-03-03  Raja R Harinath  <rharinath@novell.com>
9484
9485         Fix performance regression.
9486         * loader.c (find_method_in_class): Add 'from_class' argument.
9487         Rename 'klass' argument to 'in_class'.  The signature is compared
9488         against the method in 'in_class', and the corresponding method is
9489         returned from 'from_class'.
9490         (find_method): Walk both 'in_class' and 'from_class' in parallel.
9491         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
9492         type definition and generic instantiation in parallel.
9493         (mono_get_method_constrained): Update to changes.
9494
9495 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
9496
9497         * threads.c: make sure the domain is correct, too when doing
9498         mono_thread_attach ().
9499
9500 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
9501
9502         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
9503         windows. Fixes #77683.
9504
9505 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
9506
9507         * object.h, *: introduced specific way to set elements of an array
9508         of references to be used as write barrier. Still need to audit the
9509         uses of mono_array_addr.
9510
9511 2006-03-01  Miguel de Icaza  <miguel@novell.com>
9512
9513         * object-internals.h: New field to cache the assmebly name, patch
9514         from Tambet Ingo (tambet@ximian.com)
9515
9516 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
9517
9518         * decimal.h, class-internals.h, metadata-internals.h,
9519         file-io.h: mark a few function declarations as internal, to
9520         reduce the number of PLT entries.
9521
9522 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9523
9524         * file-io.c: fix typo in warning message.
9525
9526 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
9527
9528         * loader.c: on unix, lookup the "*A" version of a function
9529         if charset is auto as a second option before failing.
9530
9531 2006-02-28  Raja R Harinath  <rharinath@novell.com>
9532
9533         * class.h (mono_class_inflate_generic_method): Revert to two
9534         argument version.
9535         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
9536         (mono_class_inflate_generic_method_full): Add.
9537         * class.c (mono_class_inflate_generic_method_full): Rename from
9538         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
9539         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
9540         * loader.c, reflection.c: Update to changes.
9541
9542 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
9543
9544         * icall.c: const fixes and small improvements.
9545
9546 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9547
9548         * threadpool.c: for asynchronous connect(), enable the same workaround
9549         for BSD 6 as for the Mac. Fixes bug #77637.
9550
9551 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
9552
9553         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
9554         formatted classes. Fixes #77524.
9555
9556 2006-02-24  Raja R Harinath  <rharinath@novell.com>
9557
9558         * class.c (inflate_generic_type): Add a couple more
9559         micro-optimizations.
9560         (inflate_generic_context): Don't use the 'gmethod' from
9561         'inflate_with'.
9562         (mono_class_inflate_generic_method): If the method has generic
9563         parameters, but the passed-in context doesn't have a 'gmethod',
9564         create one.  Use the possibly simplified generic instantiation
9565         from the declaring class instead of the one passed in.
9566
9567 2006-02-24  Raja R Harinath  <harinath@gmail.com>
9568
9569         Make generic method signature and method header handling lazy.
9570         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
9571         (inflate_generic_header): Likewise.
9572         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
9573         parameter to avoid inflating types.
9574         (mono_get_inflated_method): Empty out.
9575         * class.h (mono_class_inflate_generic_method): Update to changes.
9576         * loader.c (mono_get_method_from_token): Don't parse signature for
9577         generic methods, nor methods of generic classes.
9578         (mono_method_signature): Rename from 'mono_method_signature'.
9579         Inflate signature on demand.
9580         (mono_method_get_header): Inflate method header on demand.
9581         * reflection.c: Update to changes.
9582
9583 2006-02-23  Raja R Harinath  <rharinath@novell.com>
9584
9585         * metadata.c (mono_metadata_inflate_generic_inst): If the
9586         instantiation is closed, don't bother expanding it in the new
9587         context.
9588         * class.c (inflate_generic_class): If the generic instantiation
9589         doesn't change after inflation, return the argument itself.
9590         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
9591         Add bounds checks.
9592         (inflate_generic_context): If neither the generic class nor the
9593         generic method instantiations change, return the original context.
9594         * reflection.c (mono_method_get_object): Do
9595         'mono_get_inflated_method' before accessing the ->klass field.
9596         (inflate_mono_method): Don't create a MonoGenericMethod unless
9597         necessary.
9598         (inflate_method): Don't pass a constructed type as the declaring
9599         type of a methodbuilder.
9600
9601 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
9602
9603         * object.c: fix memory overwrite.
9604
9605 2006-02-22  Dick Porter  <dick@ximian.com>
9606
9607         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
9608         it doesn't work any more.
9609         (mono_threads_request_thread_dump): Fix unused variable warnings.
9610
9611 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
9612
9613         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
9614         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
9615         the public header file.
9616
9617 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
9618
9619         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
9620
9621 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
9622
9623         * class-internals.h, object.c: reduce the size of MonoVTable
9624         and store the interface_offsets array at negative offsets.
9625
9626 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
9627
9628         * metadata.c: tweak table descriptors data structures to reduce
9629         size and runtime relocations.
9630
9631 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
9632
9633         * marshal.c: fix some types and opcodes to be type-safe
9634         in marshaling wrappers.
9635
9636 2006-02-21  Ankit Jain  <jankit@novell.com>
9637
9638         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
9639
9640 2006-02-21  Raja R Harinath  <rharinath@novell.com>
9641
9642         * metadata.c (get_constraints): Relax debugging checks for monodis.
9643
9644 2006-02-21  Ankit Jain  <jankit@novell.com>
9645
9646         * metadata.c (mono_metadata_load_generic_params): Move the code
9647         checking for ambiguous generic params from here to mono/dis/get.c
9648         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
9649
9650 2006-02-21  Raja R Harinath  <harinath@gmail.com>
9651
9652         Fix assertion triggered when compiling nemerle.
9653         * class.c (mono_get_shared_generic_inst): Rename from
9654         get_shared_inst and make non-static.
9655         * loader.c (mono_get_shared_generic_method): New.  Used to create
9656         the MonoGenericContext-equivalent of a MonoGenericContainer.
9657         (mono_get_method_from_token): Initialize the 'context' field of
9658         the created MonoGenericContainer.
9659         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
9660         * metadata.c (get_constraints): Add sanity check.
9661         * class-internals.h: Add new internal methods.
9662
9663         * reflection.c (verify_safe_for_managed_space): New sanity check.
9664         Currently checks that owner-less generic parameters aren't allowed
9665         in managed space.
9666         (mono_type_get_object): Use it.
9667         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
9668         that are now in mono_type_get_object.
9669         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
9670
9671 2006-02-19  Raja R Harinath  <harinath@gmail.com>
9672
9673         * metadata.c (mono_type_create_from_typespec): Rename from
9674         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
9675         argument and caching of types in the generic container.
9676         (unwrap_arrays, find_generic_param): Remove.
9677         * metadata-internals.h: Update.
9678         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
9679
9680 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
9681
9682         * class.c (mono_class_get_exception_for_failure): Fix a warning.
9683
9684         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
9685         return values. Fixes #77581.
9686
9687         * class.c (mono_fnptr_class_get): Switch name and name_space.
9688
9689         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
9690         classes and add support for [In, Out] attributes.
9691         (mono_marshal_free_asany): Ditto. Fixes #77524.
9692
9693 2006-02-18  Raja R Harinath  <harinath@gmail.com>
9694
9695         * class.c (mono_class_from_generic_parameter): Make more robust to
9696         incomplete MonoGenericContainers from monodis.
9697
9698 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
9699
9700         * class-internals.h: added some more exception types.
9701         * class.c, metadata.c: added a few checks to handle missing
9702         types.
9703
9704 2006-02-17  Raja R Harinath  <rharinath@novell.com>
9705
9706         Use owner-less generic-params some more.
9707         * class.c (my_mono_class_from_generic_parameter): Remove.
9708         (mono_class_from_generic_parameter): Handle null image,
9709         param->name and param->owner.
9710         (mono_class_from_mono_type): Update.
9711         (mono_class_create_from_typespec): Remove 'container' parameter.
9712         If that parameter is non-null, the result is always inflated by
9713         'mono_class_get_full' anyway.
9714         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
9715         parameter.
9716         (mono_class_get_full): Update.
9717
9718         * class.c (inflate_generic_type) [GENERICINST]: If the generic
9719         instance is not open, don't bother inflating.
9720         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
9721         parse metadata for inflated classes.
9722         (_mono_class_get): Change GenericContext* parameter to
9723         GenericContainer*.
9724         (mono_class_create_from_typespec): Likewise.  Simplify, and
9725         implement trivially.  All the cases are handled in
9726         mono_class_from_mono_type.  Don't inflate returned class.
9727         (mono_class_get_full): Delegate GENERICINST optimization to
9728         inflate_generic_type.
9729         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
9730
9731 2006-02-16  Dick Porter  <dick@ximian.com>
9732
9733         * socket-io.c (create_object_from_sockaddr): Fix typo.
9734         (create_sockaddr_from_object): Check array lengths before
9735         potentially accessing items off the end.
9736         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
9737         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
9738         (ves_icall_System_Net_Sockets_Socket_Send_internal)
9739         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
9740         length checks to avoid wraparound overflows.
9741         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
9742         contents of the array of sockets
9743         (hostent_to_IPHostEntry2)
9744         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
9745         Check return value of inet_ntop ().
9746         (addrinfo_to_IPHostEntry): Fix typo
9747
9748 2006-02-16  Raja R Harinath  <rharinath@novell.com>
9749
9750         Type metadata parsing doesn't use generic-instantiation information.
9751         * metadata.c (mono_metadata_parse_array_full): Change
9752         MonoGenericContext* parameter to MonoGenericContainer*.
9753         (mono_metadata_parse_type_full): Likewise.
9754         (mono_type_create_from_typespec_full): Likewise.
9755         (mono_metadata_parse_mh_full): Likewise.
9756         (mono_metadata_parse_generic_inst): Likewise.
9757         (do_mono_metadata_parse_generic_class): Likewise.
9758         (do_mono_metadata_parse_type): Likewise.
9759         * metadata-internals.h: Update to changes.
9760         * class.c (mono_class_find_enum_basetype): Likewise.
9761         (mono_class_setup_fields): Likewise.
9762         (mono_class_create_from_typespec): Likewise.
9763         * loader.c (method_from_methodspec): Likewise.
9764         (mono_get_method_from_token): Likewise.
9765         (mono_method_get_header): Likewise.
9766
9767 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
9768
9769         * marshal.c: handle additional GENERICINST case (patch from
9770         Thong Nguyen <tum@veridicus.com>).
9771         Fix a few cases where LDIND_I/STIND_I was used for references.
9772
9773 2006-02-16  Raja R Harinath  <rharinath@novell.com>
9774
9775         * reflection.c (mono_reflection_get_token): Remove unused variable.
9776
9777 2006-02-16  Martin Baulig  <martin@ximian.com>
9778
9779         * reflection.c (mono_reflection_get_token): Add support for fields
9780         in instantiated generic types.
9781
9782         * icall.c
9783         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
9784
9785 2006-02-15  Martin Baulig  <martin@ximian.com>
9786
9787         * icall.c
9788         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
9789         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
9790         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
9791         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
9792
9793 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
9794
9795         * class.c, metadata.c, metadata.h, object.c, icall.c,
9796         marshal.c: changed mono_type_get_underlying_type () to do
9797         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
9798         Fixed handling of instantiated generic valuetypes (bug #75479).
9799
9800 2006-02-15  Raja R Harinath  <rharinath@novell.com>
9801
9802         * metadata.c (mono_metadata_decode_signed_value): Simplify.
9803         Delegate to mono_metadata_decode_value, and work on the returned value.
9804
9805         * icall.c (ves_icall_MonoType_GetGenericArguments):
9806         Add consistency check here too.
9807         
9808 2006-02-15  Ankit Jain  <jankit@novell.com>
9809
9810         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
9811         char/short etc.
9812
9813 2006-02-15  Ankit Jain  <jankit@novell.com>
9814
9815         * metadata.c (mono_metadata_decode_signed_value): New function to decode
9816         signed values, used only for representing lower bounds of arrays.
9817         (mono_metadata_parse_array_full): Use new
9818         mono_metadata_decode_signed_value to decode lower bounds.
9819
9820 2006-02-14  Martin Baulig  <martin@ximian.com>
9821
9822         * reflection.c
9823         (mono_reflection_get_token): Support "MonoGenericMethod" and
9824         "MonoGenericCMethod" and allow generic instances / methods.
9825
9826 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
9827
9828         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
9829         to obtain the terminal size using an ioctl.
9830
9831         * object.c (mono_nullable_init): Revert this as nullable reference
9832         types are not valid.
9833         (mono_nullable_box): Ditto.
9834
9835 2006-02-09  Dick Porter  <dick@ximian.com>
9836
9837         * threads.c (mono_thread_detach): Drop a reference to the thread
9838         we're detaching.
9839
9840 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
9841
9842         * object.c (mono_nullable_init): Handle nullable reference types.
9843         (mono_nullable_box): Ditto. Fixes #77446.
9844
9845 2006-02-07  Martin Baulig  <martin@ximian.com>
9846
9847         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
9848
9849 2006-02-07  Ankit Jain  <jankit@novell.com>
9850
9851         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
9852         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
9853         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
9854         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
9855         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
9856         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
9857
9858 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
9859
9860         * class.c (mono_class_create_generic): Set type_token as well.
9861
9862         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
9863         compatible with MS.
9864
9865 2006-02-02  Martin Baulig  <martin@ximian.com>
9866
9867         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
9868         has never been used so far.
9869
9870 2006-02-02  Martin Baulig  <martin@ximian.com>
9871
9872         * mono-debug-debugger.h: Changed comment at the top of this file;
9873         the header is not installed, but it's safe to #include it from
9874         within the JIT.
9875
9876         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
9877         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
9878
9879 2006-02-02  Martin Baulig  <martin@ximian.com>
9880
9881         * mono-debug.h
9882         (MonoSymbolTable): Removed the `metadata_info' field.
9883
9884         * mono-debug.c
9885         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
9886
9887         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
9888         (mono_debugger_add_builtin_types): Removed.
9889         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
9890         (mono_debugger_create_notification_function): We now operate on a
9891         pre-allocated area; take a `gpointer' and return `void'.
9892
9893         * mono-debug-debugger.c
9894         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
9895         (mono_debugger_add_builtin_types): Removed.
9896
9897 2006-02-02  Martin Baulig  <martin@ximian.com>
9898
9899         * threads.c (mono_debugger_create_all_threads): New public method.
9900
9901 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
9902
9903         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
9904         breaks on several platforms.
9905
9906 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
9907
9908         * assembly.c: the VS.NET build doesn't supply default values for
9909         MONO_ASSEMBLIES and MONO_CFG_DIR.
9910
9911 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
9912
9913         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
9914         helper function.
9915
9916         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
9917
9918         * loader.c (method_from_memberref): Fix a warning.
9919
9920         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
9921
9922         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
9923         with explicit layout. Fixes #77433.
9924
9925 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
9926
9927         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
9928         max_interface_id is initialized before using it. Fixes #77398.
9929         (ves_icall_Type_GetInterfaces): Ditto.
9930
9931 2006-01-30  Raja R Harinath  <rharinath@novell.com>
9932
9933         * metadata.c (mono_metadata_parse_method_signature_full): Don't
9934         allocate memory for parameter attributes when parsing memberref
9935         signatures.
9936         * loader.c (mono_loader_set_error_method_load): Don't warn.
9937         (method_from_memberref): Ensure MissingMethodException gets thrown
9938         if method is not found.  Make warning more informative.
9939
9940 2006-01-29  Raja R Harinath  <harinath@gmail.com>
9941
9942         Fix #77397
9943         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
9944         return true if is byref.
9945         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
9946         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
9947         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
9948
9949 2006-01-27  Raja R Harinath  <rharinath@novell.com>
9950
9951         Fix tests/find-method.2.il
9952         * loader.c (find_method, find_method_in_class): Remove is_inflated
9953         argument.  Revert 2006-01-18 change.
9954         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
9955         is generic, search for method in its generic definition.
9956         * class.c (mono_class_setup_vtable_general): Print generic
9957         arguments of generic types in debugging printf.
9958
9959 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
9960
9961         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
9962
9963         * threads.c (mono_threads_request_thread_dump): New helper function.
9964
9965 2006-01-25  Raja R Harinath  <rharinath@novell.com>
9966
9967         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
9968
9969 2006-01-25  Ankit Jain  <jankit@novell.com>
9970
9971         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
9972         move definition to ..
9973         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
9974         
9975 2006-01-25  Ankit Jain  <jankit@novell.com>
9976             Raja R Harinath  <rharinath@novell.com>
9977
9978         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
9979         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
9980         as necessary.
9981
9982 2006-01-25  Martin Baulig  <martin@ximian.com>
9983
9984         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
9985         `MonoDebuggerThread' into debug-debugger.c.
9986
9987 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
9988
9989         * profiler.c: fix printing of data.
9990
9991 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
9992
9993         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
9994           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
9995
9996 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
9997
9998         * object.c: fix deadlock related to string interning.
9999
10000 2006-01-23  Martin Baulig  <martin@ximian.com>
10001
10002         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
10003
10004         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
10005
10006 2006-01-23  Martin Baulig  <martin@ximian.com>
10007
10008         * mono-debug.h: Moved the prototypes of some functions which are
10009         used by the JIT here from mono-debug-debugger.h.
10010
10011 2006-01-21  Martin Baulig  <martin@ximian.com>
10012
10013         * Makefile.am: Don't install mono-debug-debugger.h.
10014
10015 2006-01-21  Martin Baulig  <martin@ximian.com>
10016
10017         * mono-debug-debugger.h: Enforce the private status of this header
10018         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
10019         Moved some stuff from mono-debugger-jit-wrapper.h here.
10020
10021 2006-01-20  Raja R Harinath  <rharinath@novell.com>
10022
10023         * class.c (mono_class_from_typeref): Add a sanity test to help
10024         catch lack of assembly load/search hooks.
10025
10026 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
10027
10028         * marshal.c (emit_struct_conv): Relax the fields with same offset
10029         check even more. Fixes #77230.
10030
10031 2006-01-18  Martin Baulig  <martin@ximian.com>
10032
10033         * loader.c (find_method_in_class): Added `gboolean is_inflated'
10034         argument; if false, we compare the uninstantiated signatures.
10035         (method_from_memberref): Compare the uninstantiated signatures;
10036         fixes #76417.
10037
10038 2006-01-18  Robert Jordan  <robertj@gmx.net>
10039
10040         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
10041         Clear the weak link. Fixes bug #77170.
10042
10043         * gc.c (mono_gchandle_free):
10044         Reflect *-gc.c changes (tiny optimization).
10045
10046 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
10047
10048         * metadata.c (mono_metadata_signature_dup): Applied patch from
10049         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
10050         Fixes #77288.
10051
10052 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
10053
10054         * marshal.c (emit_struct_conv): Allow fields with the same offset when
10055         marshalling from native to managed code. Fixes #77230.
10056
10057 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10058
10059         * threadpool.c: fix problem (Mac only) when more than one asynchronous
10060         connect. Fixes bug #77020.
10061
10062 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
10063
10064         * class.c: fixed id assignement for nested interfaces (bug #77275).
10065         Added also better info for --print-vtable debugging.
10066
10067 2006-01-12  Martin Baulig  <martin@ximian.com>
10068
10069         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
10070         interfaces on-the-fly; fixes #76625.
10071
10072         * class-internals.h
10073         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
10074         don't need that anymore.
10075
10076 2006-01-12  Miguel de Icaza  <miguel@novell.com>
10077
10078         * socket-io.c
10079         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
10080         To avoid initing the nested_classes when not needed I turned the
10081         PeerCredData as a toplevel internal class, as it has to be shared
10082         anyways. 
10083
10084         Fixes the CASA issue.
10085
10086 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
10087
10088         * domain.c: Accessors for MonoJitInfo
10089
10090         * profiler-private.h: Add jitinfo to the end jit hook
10091
10092         * profiler.[ch]: Define new hooks, called after jitting which give
10093         the MonoJitInfo that was compiled
10094
10095 2006-01-10  Martin Baulig  <martin@ximian.com>
10096
10097         * class.c (mono_class_setup_events): Add support for generic
10098         classes; fixes #76440.
10099
10100 2006-01-06  Raja R Harinath  <rharinath@novell.com>
10101
10102         Fix #77160.
10103         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
10104         on passed-in method.
10105
10106 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
10107
10108         * object.c (mono_runtime_invoke_array): Add Nullable support.
10109
10110         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
10111
10112 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
10113
10114         * file-io.c: Don't consider sockets as directory and avoid an endless
10115         loop. Fix bug #76966.
10116
10117 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
10118
10119         * object.c (mono_nullable_init): New helper function.
10120         (mono_nullable_box): Ditto.
10121
10122         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
10123
10124         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
10125
10126         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
10127         
10128 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
10129
10130         * class.c (mono_class_is_assignable_from): Make T assignable to 
10131         Nullable<T>.
10132
10133 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
10134
10135         * appdomain.c: Bump corlib version to 46.
10136         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
10137         serialization purpose) and changed ves_icall_System_Reflection_
10138         Assembly_get_code_base signature to accept a boolean (to escape, or 
10139         not, the assembly code base).
10140
10141 2005-12-23  Dick Porter  <dick@ximian.com>
10142
10143         * icall.c: 
10144         * threads-types.h: 
10145         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
10146         CreateEvent icall now returns "created" boolean parameter.
10147
10148 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
10149
10150         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
10151         #76967.
10152
10153         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
10154         when attr_klass is an interface. Fixes #77045.
10155
10156 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
10157
10158         * marshal.c (emit_struct_conv): Fix previous patch.
10159         
10160         * marshal.c (emit_struct_conv): Add a check for fields with the same
10161         offset.
10162
10163 2005-12-20  Raja R Harinath  <rharinath@novell.com>
10164
10165         Fix regression in Mono.C5.
10166         * class.c (mono_class_create_generic): If 'klass' is an interface
10167         set up the interface offsets.
10168         (mono_class_is_assignable_from): Don't throw away generic arguments.
10169
10170 2005-12-19  Raja R Harinath  <rharinath@novell.com>
10171
10172         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
10173         type parameters.
10174
10175 2005-12-15  Raja R Harinath  <rharinath@novell.com>
10176
10177         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
10178         dead store.
10179         (do_mono_metadata_parse_generic_class): Don't pass the current
10180         generic context when parsing the type being instantiated: it
10181         cannot use it, anyway.
10182
10183         * loader.c (method_from_memberref): Don't inflate a signature if
10184         it doesn't contain any type parameters.
10185
10186 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
10187
10188         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
10189
10190 2005-12-14  Martin Baulig  <martin@ximian.com>
10191
10192         * class.c
10193         (mono_type_get_name_recurse): Don't return null for type
10194         parameters and open generic classes.
10195         (mono_class_setup_methods): Don't exclude generic instances.
10196         (mono_get_unique_iid): Use different IDs for different
10197         instantiations of the same generic type.
10198         (mono_class_setup_vtable): Only use setup_generic_vtable() for
10199         open generic instances; create a normal vtable for closed generic
10200         instances.
10201         (mono_class_setup_vtable_general): We're now also called for
10202         closed generic instances.
10203
10204         * reflection.c
10205         (mono_reflection_bind_generic_parameters): Correctly use
10206         mono_metadata_lookup_generic_inst() everywhere.
10207
10208 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
10209
10210         * object.c (mono_class_create_runtime_vtable): Call 
10211         mono_class_setup_vtable ().
10212
10213         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
10214         function.
10215         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
10216         #76959.
10217
10218         * loader.c (mono_loader_set_error_type_load): Print the type load
10219         warnings to the console so they are more visible to the user.
10220         (mono_loader_set_error_method_load): Ditto.
10221
10222         * reflection.c (ensure_runtime_vtable): Revert the last change as it
10223         is still broken.
10224         
10225         * reflection.c (ensure_runtime_vtable): Fix build.
10226
10227         * reflection.c (ensure_runtime_vtable): Disable an optimization which
10228         doesn't work in all cases.
10229
10230 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
10231
10232         * object.c (mono_array_new_full): Treat a single dimensional array
10233         with 0 lower bounds as an szarray. Fixes #76973.
10234
10235         * reflection.c (custom_attr_visible): Really fix this.
10236
10237 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
10238
10239         * reflection.c (custom_attr_visible): Allow nested public attributes
10240         as well.
10241
10242         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
10243         interface check.
10244
10245 2005-12-12  Raja R Harinath  <harinath@gmail.com>
10246
10247         * class.c (set_generic_param_owner): Delete.
10248         (mono_class_create_from_typedef): Don't set ->owner field of
10249         generic parameters to "param containers" of enclosing classes.
10250         * reflection.c (mono_reflection_initialize_generic_parameter):
10251         Likewise.
10252
10253 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
10254
10255         * reflection.c (custom_attr_visible): Fix build.
10256
10257 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
10258
10259         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
10260         private attributes.
10261         
10262         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
10263         handling of null parameter defaults.
10264
10265 2005-12-09  Raja R Harinath  <rharinath@novell.com>
10266
10267         * class.c (mono_class_from_generic_parameter): Don't set
10268         klass->generic_container.
10269         (my_mono_class_from_generic_parameter): Likewise.
10270
10271 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
10272
10273         * reflection.c (load_public_key): Fix a warning.
10274         (method_encode_code): Fix unaligned accesses.
10275
10276 2005-12-07  Martin Baulig  <martin@ximian.com>
10277
10278         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
10279
10280         * reflection.c
10281         (write_generic_param_entry): Encode our custom attrs.
10282
10283         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
10284
10285 2005-12-07  Martin Baulig  <martin@ximian.com>
10286
10287         * reflection.c (encode_new_constraint): Removed; we don't use the
10288         `NewConstraintAttribute' anymore.
10289
10290 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
10291
10292         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
10293         not fire a TypeResolve event when Assembly.GetType () is called.
10294
10295 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
10296
10297         Beginning of support for nullable types in the runtime. Parts of
10298         this patch are from Martin.
10299
10300         * appdomain.c (MONO_CORLIB_VERSION): Bump
10301
10302         * domain.c (mono_init_internal): get the nullable type
10303
10304         * class.c (mono_class_is_nullable): New method
10305         (mono_class_get_nullable_param): New mehod
10306         (mono_class_create_generic): In types T? set cast_class to T
10307
10308         * class-internals.h (MonoDefaults): new nullable default class
10309         (mono_class_get_nullable_param, mono_class_get_nullable_param):
10310         new methods.
10311
10312 2005-12-05  Raja R Harinath  <rharinath@novell.com>
10313
10314         * metadata.c (select_container): New.  Refactor code to select the
10315         appropriate GenericContainer given the type of generic parameter
10316         we are looking for.
10317         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
10318         not a MonoGenericContext.  Use select_container.  Update parameters.
10319         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
10320         and MONO_TYPE_MVAR.
10321         (unwrap_arrays): Remove duplicate tests.
10322         (find_generic_param): Rename from 'has_same_context'.  Now walks a
10323         generic instantiated class to find any arguments that are generic
10324         parameters.
10325         (mono_type_create_from_typespec_full): Use find_generic_param to
10326         avoid evicting some generic instantiations from the typespec
10327         cache.
10328
10329 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
10330
10331         * reflection.c: fixed writing of doubles on ARM FPA.
10332
10333 2005-12-02  Robert Jordan  <robertj@gmx.net>
10334
10335         * icall.c: Fixed EventInfo.ReflectedType (#76829).
10336
10337 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10338
10339         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
10340         least on SUSE 10 they are not the same (on debian, they are just the
10341         same thing).
10342
10343 2005-12-01  Raja R Harinath  <rharinath@novell.com>
10344
10345         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
10346         DeclaringType for VARs and MVARs.
10347         * class.c (set_generic_param_owner): Fix initialization of owner
10348         fields.
10349
10350 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
10351
10352         * icall.c: fixed Enum.ToObject() to correctly convert the values.
10353
10354 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10355
10356         * threadpool.c: workaround for a bug that shows up on the Mac:
10357         select()+connect() on a blocking socket is not like it should
10358         be, so we proceed to connect() in that case, wasting the I/O
10359         threadpool thread until connect succeedes. Fixes bug #75436.
10360
10361 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10362
10363         * threadpool.c: fix typo when setting file descriptor states.
10364
10365 2005-11-28  Raja R Harinath  <rharinath@novell.com>
10366
10367         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
10368         * metadata.c (mono_metadata_parse_method_signature_full): Don't
10369         create a temporary signature container.
10370         (mono_metadata_parse_generic_param): Update to changes.
10371         (mono_type_create_from_typespec_full): Update to changes.
10372         * loader.c (method_from_memberref): Don't use a
10373         MonoGenericContainer while parsing a memberref signature.
10374         (method_from_methodspec): Remove dead-store of the 'container'
10375         variable.  It's overwritten before use.
10376
10377         * metadata.c (mono_type_create_from_typespec_full): Make debugging
10378         checks tighter.
10379         (mono_metadata_parse_generic_param): Likewise.
10380         * loader.c (find_method_in_class): Does not need a
10381         MonoGenericContainer.  Use 'mono_method_signature' rather than
10382         'mono_method_signature_full'.
10383         (find_method, mono_get_method_constrained, method_from_memberref):
10384         Update to changes.
10385
10386         * metadata.c (mono_type_create_from_typespec_full): Ensure that
10387         owner-less generic-parameters are never evicted from the typespec
10388         cache.
10389
10390         * loader.c (method_from_memberref): Don't use the current context
10391         when parsing signatures.
10392         (method_from_methodspec, mono_get_method_from_token): Update to changes.
10393
10394         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
10395         side-effects in g_assert.
10396         * loader.c (mono_get_method_from_token): Resolve klass earlier so
10397         that we don't potentially lose information.
10398
10399 2005-11-26  Dick Porter  <dick@ximian.com>
10400
10401         * icall.c:
10402         * threads.c: icalls to implement basic (ie, not named)
10403         System.Threading.Semaphore.
10404
10405 2005-11-24  Dick Porter  <dick@ximian.com>
10406
10407         * process.c
10408         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
10409         Use GetProcessId() if it's available.
10410
10411 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
10412
10413         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
10414
10415 2005-11-23  Raja R Harinath  <rharinath@novell.com>
10416             Ankit Jain  <jankit@novell.com>
10417
10418         * loader.c (mono_get_method_from_token): Initialize 'method' field
10419         of all generic parameters before parsing the signature.  Remove
10420         code that "fixed"-up MVAR references.
10421
10422 2005-11-23  Ankit Jain  <jankit@novell.com>
10423
10424         * metadata.c (mono_metadata_has_generic_params):
10425         (mono_metadata_load_generic_param_constraints):
10426         (mono_metadata_load_generic_params): Move duplicate code ...
10427         (mono_metadata_get_generic_param_row): ... here. Returns the
10428         first row-id in GenericParam table for a given owner (token).
10429         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
10430         prototype.
10431
10432 2005-11-23  Raja R Harinath  <rharinath@novell.com>
10433             Ankit Jain  <jankit@novell.com>
10434
10435         * metadata.c (mono_metadata_class_equal): Pass signature_only when
10436         comparing VARs too.
10437         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
10438         type->data.generic_param only if the type is an MVAR.
10439         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
10440         leak owner-less VARs and MVARs into managed space.
10441
10442 2005-11-21  Martin Baulig  <martin@ximian.com>
10443
10444         * class-internals.h
10445         (MonoMethod): Moved the `generic_container' here from
10446         `MonoMethodNormal' since we now also need it for
10447         `MonoMethodPInvoke';
10448         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
10449         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
10450         an union containing both `MonoMethodNormal' and
10451         `MonoMethodPInvoke'.
10452
10453         * loader.c
10454         (mono_get_method_from_token): Allow implementing generic methods
10455         as interncalls.
10456
10457         * threads.c
10458         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
10459         icall.
10460
10461 2005-11-17  Dick Porter  <dick@ximian.com>
10462
10463         * icall.c: 
10464         * process.h: 
10465         * process.c: Split the Process Start_internal icall into
10466         ShellExecuteEx_internal and CreateProcess_internal, which are
10467         called depending on whether UseShellExecute is true.  Fixes bug
10468         76670.
10469
10470         * appdomain.c (MONO_CORLIB_VERSION): Incremented
10471
10472 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
10473
10474         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
10475         'msize' parameters, use the information in 'mspec' instead.
10476         (emit_object_to_ptr_conv): Ditto.
10477
10478         * marshal.c (emit_struct_conv): Handle explicit layout structs with
10479         fields out of order. Fixes #76733.
10480
10481 2005-11-17  Ankit Jain  <jankit@novell.com>
10482
10483         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
10484
10485 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
10486
10487         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
10488           bug #76575.
10489
10490 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
10491
10492         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
10493         for types with non-auto layout. Fixes #76717.
10494
10495 2005-11-16  Ankit Jain  <jankit@novell.com>
10496
10497         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
10498         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
10499         if generic_context is null.
10500           (mono_metadata_generic_param_equal): param->owner can be null.
10501           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
10502         null.
10503
10504 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
10505
10506         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
10507         the correct value.
10508
10509 2005-11-15  Martin Baulig  <martin@ximian.com>
10510
10511         * object.c (set_value): Use mono_class_from_mono_type() instead of
10512         the hack for generic instances; fixes #76136.
10513
10514 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
10515
10516         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
10517         fields.
10518
10519         * image.c (load_metadata_ptrs): Initialize the new fields.
10520
10521         * reflection.c (create_dynamic_mono_image): Ditto.
10522
10523         * reflection.c (build_compressed_metadata): Use the new fields.
10524
10525         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
10526         icall.
10527
10528         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
10529         icall.
10530         
10531 2005-11-15  Ankit Jain  <jankit@novell.com>
10532             Raja R Harinath  <harinath@gmail.com>
10533
10534         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
10535         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
10536         new per-generic_container cache if the cached MonoType's context matches
10537         the current context.
10538           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
10539         to the expected context.
10540           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
10541
10542 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10543
10544         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
10545         we changed the signature of an icall.
10546         * icall.c: Modify to mono_double_ParseImpl return true/false 
10547         depending on the success, instead of throwing the exception. This will
10548         help us in Double.TryParse methods.
10549         
10550 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
10551
10552         * marshal.c (emit_marshal_object): Throw an exception when
10553         marshalling 'object' instead of crashing. Fixes #76696.
10554
10555 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
10556
10557         * class-internals.h: Add prototype for mono_type_get_full_name ().
10558
10559 2005-11-11  Dick Porter  <dick@ximian.com>
10560
10561         * threads.c (mono_thread_manage): Make sure the main thread has
10562         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
10563
10564 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
10565
10566         * loader.c (mono_loader_set_error_type_load): Log a warning to the
10567         console about the missing type.
10568         (mono_loader_set_error_method_load): Ditto.
10569
10570 2005-11-09  Miguel de Icaza  <miguel@novell.com>
10571
10572         * mono-config.c (mono_get_config_dir): Set the system defaults if
10573         none is specified.
10574
10575         * assembly.c (mono_set_dirs): New API entry point to set the
10576         assembly and the config directory in one call
10577
10578 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
10579
10580         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
10581         the ftnptr was created from a delegate in a domain other than the
10582         current domain. Fixes #75377.
10583
10584         * exception.h exception.c: Add mono_get_exception_not_supported ().
10585
10586 2005-11-08  Martin Baulig  <martin@ximian.com>
10587
10588         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
10589
10590 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
10591
10592         * security-manager.h: Added definitions to deal with strongname key 
10593         pairs bigger (and smaller) than 1024 bits.
10594         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
10595         adjust wrt the public key length being used.
10596
10597 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
10598
10599         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
10600           Windows build (r51396-51397).
10601
10602 2005-11-03  Martin Baulig  <martin@ximian.com>
10603
10604         * class.c (mono_class_setup_vtable_general): Also add generic
10605         methods to the vtable; fixes #76581.
10606
10607 2005-11-01  Miguel de Icaza  <miguel@novell.com>
10608
10609         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
10610         sure that we lookup GetString method from the System.Text.Encoding
10611         class, not the derived class or we get an empty method.
10612
10613         Fixed class #76612.
10614
10615 2005-10-25  Miguel de Icaza  <miguel@novell.com>
10616
10617         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
10618         if it has been previously set (embedders). 
10619
10620         Make mono_set_rootdir available also on Unix.
10621
10622 005-10-24  Robert Jordan  <robertj@gmx.net>
10623
10624         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
10625
10626 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
10627
10628         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
10629         only calls which are made to native code use this flag.
10630
10631         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
10632
10633 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
10634
10635         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
10636         Add support for FieldBuilders.
10637
10638 2005-10-29  Martin Baulig  <martin@ximian.com>
10639
10640         * mono-debug.c
10641         (mono_debug_using_mono_debugger): New public method; returns
10642         whether we're running inside the debugger.
10643
10644 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
10645
10646         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
10647         for Method/Constructor/FieldBuilders.
10648
10649 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
10650
10651         * reflection.c (module_add_cattrs): Save custom attributes for global methods
10652         and fields as well.
10653
10654 2005-10-26  Martin Baulig  <martin@ximian.com>
10655
10656         * mono-debug-debugger.c
10657         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
10658
10659 2005-10-24  Raja R Harinath  <harinath@gmail.com>
10660
10661         * icall.c (base64_to_byte_array): Don't pass an out-of-range
10662         integer to isspace.
10663
10664 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
10665
10666         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
10667         when passing valuetypes byref. Fixes #76502.
10668
10669 2005-10-19  Jackson Harper  <jackson@ximian.com>
10670
10671         * profiler.c: Don't put a . in front of types that are not in a
10672         namespace.
10673
10674 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
10675
10676         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
10677
10678 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
10679
10680         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
10681         #76436.
10682         (mono_marshal_get_ldflda_wrapper): Fix a warning.
10683
10684 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10685
10686         * assembly.c metadata-internals.h icall.c: Define an additional
10687         parameter for mono_assembly_name_parse_full, so we can avoid creating
10688         S.R.AssemblyName.Version when no version info wasn't passed.
10689         
10690 2005-10-09  Miguel de Icaza  <miguel@novell.com>
10691
10692         * class.c (mono_type_get_full_name): Reimplement method that was
10693         removed. 
10694
10695         * image.c: Some docs
10696
10697 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
10698
10699         * profiler.c (output_newobj_profile): Fix printing of Total memory
10700         on x86.
10701
10702 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
10703
10704         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
10705
10706 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
10707
10708         * threads.c: remove debug output.
10709
10710 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
10711
10712         * threads.c (mono_thread_manage): Fix crashes if more than 64
10713         threads need to be aborted. Hopefully fixes #75899.
10714
10715         * assembly.c (mono_stringify_assembly_name): New helper function.
10716
10717         * class.c: Use mono_stringify_assembly_name instead of the similar
10718         static function.
10719
10720         * assembly.h assembly.c: Add support for calling a postload search 
10721         hook if an assembly cannot be loaded.
10722
10723         * appdomain.c: Register new search hooks which call the AssemblyResolve
10724         events in AppDomain. Fixes #75231
10725
10726 2005-10-07  Martin Baulig  <martin@ximian.com>
10727
10728         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
10729         methods without debug info.
10730
10731 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
10732
10733         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
10734         wrappers.
10735
10736 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10737
10738         * file-io.c: now that we return symlinks, use lstat and, when the file
10739         is a symbolic link, stat, to get the file attributes. Also avoid the
10740         conversion to/from utf16/external.
10741
10742 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
10743
10744         * class.c (mono_class_layout_fields): Compute klass->has_references
10745         correctly if an embedded valuetype is not yet initialized. Fixes
10746         #76331.
10747
10748 2005-10-04  Martin Baulig  <martin@ximian.com>
10749
10750         * metadata.c
10751         (mono_metadata_load_generic_param_constraints): New public
10752         function; splitted the constraints loading out from
10753         mono_metadata_load_generic_params().
10754
10755         * class.c (mono_class_create_from_typedef): Call
10756         mono_metadata_load_generic_param_constraints() after setting up
10757         the type and creating our parent; fixes #75329.
10758
10759 2005-10-04  Martin Baulig  <martin@ximian.com>
10760
10761         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
10762         non-dynamic parent classes.
10763
10764 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
10765
10766         * file-io.c : win32 build fix (ETXTBSY seems not found).
10767
10768 2005-10-04  Martin Baulig  <martin@ximian.com>
10769
10770         * reflection.c
10771         (mono_image_get_methodspec_token): Make the cache actually work;
10772         fixes #75974.
10773
10774 2005-10-04  Martin Baulig  <martin@ximian.com>
10775
10776         * class.c (mono_class_name_from_token): Removed the unneccessary
10777         `MonoGenericContext *' argument.
10778
10779 2005-10-04  Martin Baulig  <martin@ximian.com>
10780
10781         * loader.c
10782         (method_from_methodspec): Make the caching work again; fixes the
10783         performance regression from #76262.
10784
10785 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10786
10787         * file-io.c:
10788         * file-io.h:
10789         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
10790         GetFileSystemEntries that performs the same work but without going
10791         into io-layer, locking, etc.
10792
10793 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
10794
10795         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
10796         ThreadState_Stopped as well. Fixes #76047.
10797
10798 2005-09-29  Martin Baulig  <martin@ximian.com>
10799
10800         * class.c
10801         (inflate_generic_context): If the new context has a `gmethod', set
10802         its `container' that that gmethod's `container'.
10803
10804         * metadata.c
10805         (mono_metadata_parse_generic_param): Simplify things;
10806         `generic_container = generic_context->container;' is just fine.
10807
10808         * loader.c (method_from_methodspec): Code cleanups.
10809
10810 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
10811
10812         * decimal.c: fix warning (and let gcc generate correct
10813         code on ARM with optimizations).
10814
10815 2005-09-28  Martin Baulig  <martin@ximian.com>
10816
10817         * loader.c
10818         (method_from_memberref): Added `MonoGenericContext *class_context'
10819         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
10820         (method_from_methodspec): If we're a memberref, use the enclosing
10821         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
10822
10823 2005-09-28  Martin Baulig  <martin@ximian.com>
10824
10825         * object.c (mono_runtime_invoke_array): Added support for
10826         MONO_TYPE_GENERICINST; fixes #75917.
10827
10828 2005-09-27  Martin Baulig  <martin@ximian.com>
10829
10830         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
10831         `k->byval_arg.type' to determine the actual type.
10832
10833         * loader.c (method_from_methodspec): Removed some hacks.
10834
10835 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
10836
10837         * class-internals.h (mono_field_is_deleted): Do the test for
10838         rtspecialname before we check the actual name of the field. This
10839         prevents us from dereferencing a pointer into the string table,
10840         saving us from accessing a few pages
10841
10842         * *.c: Replace the use of {Enter,Leave}CriticalSection with
10843         macros. This will allow a deadlock debugger to easily be plugged
10844         in.
10845
10846 2005-09-27  Martin Baulig  <martin@ximian.com>
10847
10848         * loader.c (method_from_methodspec): Create a "signature"
10849         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
10850
10851 2005-09-27  Martin Baulig  <martin@ximian.com>
10852
10853         * class.c
10854         (inflate_generic_class): Correctly set the new context's
10855         container.
10856
10857         * loader.c
10858         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
10859         instead of a `MonoGenericContext *'.
10860         (mono_method_signature_full): Take a `MonoGenericContainer *'
10861         instead of a `MonoGenericContext *'.
10862
10863         * metadata.c
10864         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
10865         instead of a `MonoGenericContext *'.
10866         (mono_metadata_parse_method_signature_full): Likewise.
10867
10868 2005-09-26  Martin Baulig  <martin@ximian.com>
10869
10870         * class.c
10871         (mono_class_from_generic_parameter): Set `klass->generic_container'
10872         (mono_class_from_generic_parameter): Likewise.
10873         (mono_bounded_array_class_get): We inherit the generic container
10874         from the element class.
10875
10876         * loader.c
10877         (find_method, find_method_in_class): Take a `MonoGenericContext *'
10878         argument rather than computing it here.
10879         (method_from_memberref): Correctly set the generic context before
10880         parsing the signature.  Fixes #75681.
10881
10882 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
10883
10884         * object.c (mono_class_has_special_static_fields): Fix warnings.
10885
10886 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10887
10888         * assembly.c: Add parse_public_key function, to
10889         par the public keys. Also added mono_assembly_name_parse_full,
10890         to define it the parsed key should be freed or not.
10891         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
10892         to parse a long format assembly name.
10893         * metadata-internals.h: Keep mono_assembly_name_parse_full as
10894         private, since calling it to preserve the key requires
10895         freeing it manually.
10896         
10897 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
10898
10899         * locales.c : removed HAVE_ICU part.
10900
10901 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
10902
10903         * object.c (mono_class_create_runtime_vtable): Avoid calling 
10904         field_is_special_static if the klass has no special static fields.
10905
10906         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
10907         (MonoCachedClassInfo): Likewise.
10908
10909         * object.c (mono_class_has_special_static_fields): New helper function.
10910
10911 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
10912
10913         * class.c (mono_class_create_from_typedef): Don't call 
10914         interfaces_from_typedef_full for enums.
10915         (mono_class_create_from_typedef): Compute the base types of enums directly
10916         without calling mono_class_setup_fields ().
10917         (mono_class_find_enum_basetype): New helper function.
10918
10919         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
10920         one place inside the string heap.
10921         
10922 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
10923
10924         * class.c: locking fixes, code cleanups, some docs added.
10925         Allocate some data structures in the image mempool.
10926
10927 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
10928
10929         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
10930         the example code.
10931         
10932 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
10933
10934         * class-internals.h, class.c, reflection.c: reduce memory taken by
10935         MonoClass.
10936
10937 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
10938
10939         * metadata.c, metadata.h, loader.h: documentation updates, code and
10940         API cleanups.
10941
10942 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
10943
10944         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
10945         the example code.
10946
10947         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
10948         page faults caused by the runtime while reading metadata.
10949
10950 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10951
10952         * socket-io.c: the field names were changed 3 months ago and no one
10953         realized until bug #76077 got filed!
10954
10955 2005-09-20  Martin Baulig  <martin@ximian.com>
10956
10957         * icall.c (assembly_icalls): Removed some unused debugger icalls.
10958
10959 2005-09-20  Martin Baulig  <martin@ximian.com>
10960
10961         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
10962         write the rank into the class entry.
10963
10964 2005-09-20  Martin Baulig  <martin@ximian.com>
10965
10966         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
10967
10968 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
10969
10970         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10971
10972         * icall.c (custom_attrs_defined_internal): New icall.
10973
10974         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
10975         function.
10976         (mono_custom_attrs_construct_by_type): New helper function.
10977
10978 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
10979
10980         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
10981         terminate the resulting string. Fixes #76123.
10982
10983 2005-09-16  Martin Baulig  <martin@ximian.com>
10984
10985         * mono-debug.c
10986         (mono_debug_add_method): Ignore inflated methods for the moment.
10987
10988 2005-09-14  Martin Baulig  <martin@ximian.com>
10989
10990         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
10991
10992 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
10993
10994         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
10995         return a success/failure indication.
10996         (mono_metadata_interfaces_from_typedef_full): Ditto.
10997         (get_constraints): Ditto.
10998
10999 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
11000
11001         * marshal.c (emit_marshal_array): Fix handling of null arrays.
11002         
11003         * marshal.c (emit_marshal_array): Add support for returning string
11004         arrays from delegates. Fixes #76063.
11005
11006         * marshal.c: Use the emit_ldloc/stloc macros where possible.
11007
11008 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
11009
11010         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
11011         icall.
11012
11013 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
11014
11015         * reflection.c icall.c: Fix after mono_get_exception_type_load
11016         signature change.
11017
11018         * assembly.c (mono_assembly_get_assemblyref): New helper function.
11019         (mono_assembly_load_reference): Use the new helper.
11020
11021         * class-internals.h (MonoLoaderError): New structure containing 
11022         information about type loading errors.
11023
11024         * class-internals.h loader.c: Add APIs to store per-thread loader
11025         error information.
11026
11027         * loader.c class.c: Set the loader error if needed.
11028
11029         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
11030
11031 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
11032
11033         * decimal.c: fixed to handle the broken ARM fp format.
11034
11035 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
11036
11037         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
11038         broken.
11039
11040 2005-09-06  Martin Baulig  <martin@ximian.com>
11041
11042         * domain.c (supported_runtimes): Added v2.0.50727.
11043
11044 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
11045
11046         * culture-info.h: reduce the size of some structures.
11047
11048 2005-09-05  Martin Baulig  <martin@ximian.com>
11049
11050         Reflect latest API changes in the August CTP.
11051
11052         * icall.c
11053         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
11054         ("MonoType.HasGenericArguments"): Removed.
11055         ("MonoMethod.BindGenericParameters"): Renamed to
11056         "MakeGenericMethod".
11057         ("MethodBuilder.BindGenericParameters"): Renamed to
11058         "MakeGenericMethod".    
11059
11060 2005-09-05  Martin Baulig  <martin@ximian.com>
11061
11062         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
11063
11064 2005-09-05  Martin Baulig  <martin@ximian.com>
11065
11066         Applying a patch from Michal Moskal <malekith@nemerle.org>.
11067
11068         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
11069         generic_container is non-NULL.
11070
11071 2005-09-05  Martin Baulig  <martin@ximian.com>
11072
11073         Applying a patch from Michal Moskal <malekith@nemerle.org>.
11074
11075         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
11076
11077 2005-08-29  Michal Moskal  <malekith@nemerle.org>
11078
11079         * reflection.c (encode_locals,
11080         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
11081         for large generic types.
11082
11083 2005-09-05  Martin Baulig  <martin@ximian.com>
11084
11085         Applying a patch from Michal Moskal <malekith@nemerle.org>.
11086
11087         * class.c (mono_dup_array_type): New public method.
11088         (mono_metadata_signature_deep_dup): New public method.
11089         (dup_type): Correctly duplicate array and function types.
11090
11091 2005-09-05  Martin Baulig  <martin@ximian.com>
11092
11093         Applying a patch from Michal Moskal <malekith@nemerle.org>.
11094
11095         * reflection.c (get_default_param_value_blobs): Handle generic types
11096         and generic methods.
11097
11098 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
11099
11100         * class.c: Fixed error reporting (method/class were inversed) for 
11101         inheritance demands.
11102         * security-manager.c|h: Added the AppDomain when calling the managed
11103         System.Security.SecurityManager.InheritanceDemand method.
11104
11105 2005-09-01  Raja R Harinath  <rharinath@novell.com>
11106
11107         * reflection.c (encode_marshal_blob): 'marshaltype' and
11108         'marshaltyperef' are alternate sources for the custom marshaler
11109         name.
11110
11111 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
11112
11113         * class.c: fix creation of array classes with rank == 1
11114         (patch by Ankit Jain <jankit@novell.com>).
11115
11116 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
11117
11118         * object.c: fix check for creating the bound data for arrays vs
11119         szarrays.
11120
11121 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11122
11123         * object.c: configuration file name is now based on the executable name,
11124         not the image name. Fixes bug #75931.
11125
11126 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
11127
11128         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
11129         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
11130
11131 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
11132
11133         * rand.c: Use wincrypt.h instead of WinCrypt.h.
11134
11135 2005-08-24  Ankit Jain  <jankit@novell.com>
11136             Raja R Harinath  <rharinath@novell.com>
11137
11138         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
11139           called by it recursively.
11140           (mono_class_init): Remove special case in pending_init handling, since it's
11141           superseded by the fix to mono_class_from_typeref.
11142
11143 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
11144
11145         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
11146         BROKEN_THREAD_START stuff.
11147
11148 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
11149
11150         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
11151         trampoline.
11152
11153         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
11154         
11155         * object.c (mono_delegate_ctor): Replace the original function address with
11156         a delegate trampoline.
11157
11158 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
11159
11160         * icall.c: add boolean argument to base64_to_byte_array and 
11161         InternalFromBase64String to control whether a whitespace-only string
11162         is allowed (or should casue a FormatException to be thrown). We need
11163         this as the behavior has changed between MS.NET 1.x and 2.0, and we
11164         to match the MS behaviour in both profiles.
11165         * appdomain.c: Bump corlib version.
11166
11167 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11168
11169         This patch implements a big portion of publisher policy
11170         support, used to bind assembly versions and redirect
11171         one assembly from version A to version B.
11172
11173         * assembly.c:
11174         New GSList loaded_assembly_bindings, for storing the cached
11175         assembly bindings.
11176         (assembly_binding_maps_name): New static function for checking if a 
11177         assembly binding information maps an assembly name.
11178         (mono_assembly_binding_info_free): New function for freeing
11179         assembly binding information resources.
11180         (get_publisher_policy_info): New static function for retrieving 
11181         assembly binding information from a MonoImage.
11182         (compare_versions): New static function for comparing an assembly
11183         binding information data and the version of an assembly name.
11184         (check_policy_versions): New static function for checking if an
11185         assembly binding info mapping an assembly name is valid for it.
11186         (mono_assembly_load_publisher_policy): New static function for
11187         loading the 'policy.major.minor.MyAssembly' image for an assembly
11188         with an assembly name 'aname'.
11189         (mono_assembly_bind_version): New static function for updating
11190         assembly redirection.
11191         (mono_assembly_apply_binding): New static function for applying
11192         assembly binding.
11193         (search_binding_loaded): New static function for searching 
11194         loaded assembly binding infos in the cache domain.
11195         (mono_assembly_load_full): Don't apply assembly binding for
11196         reflection only assemblies.
11197
11198         * metadata-internals.h: Add MonoAssemblyBindingInfo,
11199         which contains information about assembly binding. Also
11200         declare signature for mono_config_parse_publisher_policy ()
11201         function, used to retrieve pub policy info.
11202         
11203         * mono-config.c:
11204         (publisher_policy_start): New static function used to parse publisher 
11205         policy config files.
11206         (publisher_policy_parser): New static MonoParseHandler containing 
11207         the functions used when parsing config files.
11208         (mono_config_parse_publisher_policy): New function for parsing
11209         publisher policy files.
11210         
11211 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
11212
11213         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
11214
11215         * marshal.c (mono_delegate_free_ftnptr): Ditto.
11216
11217         * object.c (mono_get_addr_from_ftnptr): New helper function.
11218
11219         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
11220
11221         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11222
11223 2005-08-19  Dick Porter  <dick@ximian.com>
11224
11225         * threads.c, threads.h, appdomain.c, appdomain.h,
11226         profiler-private.h, monitor.c, object.c, object-internals.h,
11227         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
11228         store the thread ID, so it can hold a 64 bit value if needed.
11229
11230 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
11231
11232         * reflection.c (mono_reflection_create_dynamic_method): Store the
11233         handle class into the method references as well so ldtoken works in
11234         dynamic methods.
11235
11236         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
11237         types.
11238
11239 2005-08-19  Ankit Jain <jankit@novell.com>
11240
11241         Fix #75847.
11242         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
11243           here rather than using the method signature of a arbitrary function
11244           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
11245           two arguments.
11246           Hack done with Harinath.
11247
11248 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11249
11250         * threadpool.c: disable printing stack traces when we get a exception
11251         in a threadpool thread. I need to do more testing to figure out which
11252         cases actually print this. Fixes bug #75828.
11253
11254 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11255
11256         * icall.c: there might be ignored whitespace after the last '='. This
11257         fixes length computation and bug #75840.
11258
11259 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
11260
11261         * assembly.c (mono_assembly_load_full): Consider .exe extension as
11262         well. Fixes #75809.
11263
11264         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
11265         #75784.
11266         
11267         * reflection.c (create_custom_attr_data): Ditto.
11268
11269 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
11270
11271         * locales.c, culture-info.h : removed RegionLCIDMap.
11272         * culture-info-tables.h : regenerated.
11273
11274 2005-08-16  Martin Baulig  <martin@ximian.com>
11275
11276         * class.c (mono_type_get_name_recurse): Small fix.
11277
11278 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
11279
11280         * locales.c : indentation fixie.
11281
11282 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
11283
11284         * object-internals.h,
11285           locales.h,
11286           locales.c,
11287           culture-info.h,
11288           icall.c : added RegionInfo table support.
11289         * culture-info-table.h : regenerated for region support.
11290
11291 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
11292
11293         * reflection.c (resolve_object): handle all kinds of MonoMethod
11294         including generic ones
11295
11296 2005-08-12  Ankit Jain <jankit@novell.com>
11297
11298         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
11299           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
11300
11301 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
11302
11303         * process.c: Don't close a thread handle when it's NULL. This is a
11304         workaround for bug #75733.
11305
11306 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
11307
11308         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
11309
11310 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
11311
11312         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
11313
11314 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11315
11316         * threadpool.c: if a work item in the thread pool has a callback that
11317         catches a exception, don't propagate it after invoking the callback.
11318         Fixes bug #75336.
11319
11320 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
11321
11322         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
11323
11324         * class-internals.h (MonoCachedClassInfo): Add some new fields.
11325
11326         * class.c (mono_class_init): Load field info lazily in the AOT case.    
11327
11328         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
11329
11330 2005-08-03  Ankit Jain  <jankit@novell.com>
11331
11332         Fix #75683.
11333         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
11334           PInvoke calling convention is 0.
11335
11336 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
11337
11338         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
11339         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
11340
11341 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
11342
11343         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
11344         to handle threads not started by the GC (patch by Michael Meeks
11345         <michael.meeks@novell.com>).
11346
11347 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
11348
11349         * reflection.c: Make buffer used in emitting types larger for some
11350         big generic types (patch by Michal Moskal).
11351
11352 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
11353
11354         * mono-debug.c: Fix some (not all) alignment problems.
11355
11356 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11357
11358         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
11359         Invoke mono_image_load_from_data_full passing the refonly
11360         parameter.
11361
11362         * assembly.c
11363         (mono_assembly_open_from_bundle): Add the refonly argument, 
11364         in order to pass it to other methods it calls to.
11365         (do_mono_assembly_open): Add the refonly argument, in order 
11366         to pass it to other methods it calls to.
11367         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
11368         the refonly parameter to it.
11369
11370         * image.c: Add loaded_images_refonly_hash and
11371         loaded_images_refonly_guid_hash to cache the reflection
11372         only loaded images.
11373         (mono_images_init): Initialize the hash tables used for
11374         caching the reflection only images.
11375         (load_modules): Invoke mono_image_open_full passing the refonly
11376         parameter to load the modules the correct way.
11377         (build_guid_table): Add the refonly argument, to re-build the 
11378         correct hash table.
11379         (do_mono_image_open): Added the refonly argument, in order to
11380         define it for the loaded image.
11381         (mono_image_loaded_full): New function, which receives an
11382         additional parameter to look for the image in the refonly or
11383         non-refonly section.
11384         (mono_image_loaded): Updated, using mono_image_loaded_full.
11385         (mono_image_loaded_by_guid_full): The same case that happens
11386         with mono_image_loaded_full.
11387         (mono_image_loaded_by_guid): Likewise.
11388         (register_image): Use the ref_only variable inside MonoImage
11389         to decide in which hash table store the current image.
11390         (mono_image_open_from_data_full): Rename
11391         mono_image_open_from_data to mono_image_open_from_data_full,
11392         adding the refonly argument, to define the ref_only variable 
11393         inside MonoImage.
11394         (mono_image_open_from_data): Return 
11395         mono_image_open_from_data_full.
11396         (mono_image_open_full): Rename mono_image_open to
11397         mono_image_open_full, receiving the new refonly argument,
11398         to pass it to inner methods.
11399         (mono_pe_file_open): Update this function, to open
11400         a MonoImage as a non-refonly image.
11401         (mono_image_close): Use the refonly variable inside
11402         MonoImage to remove the image from the correct caches.
11403
11404         * image.h: Add the signatures of mono_image_open_full,
11405         mono_image_open_from_data_full, mono_image_loaded_full,
11406         mono_image_loaded_by_guid_full.
11407
11408         * metadata-internals.h: Add the ref_only field to 
11409         MonoImage.
11410         
11411 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11412
11413         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
11414         Fix the last behavior, which used to load the assemblies and
11415         extract MonoReflectionAssemblyName information, instead of
11416         extract it from the metadata tables. Needed for Reflection
11417         Only assemblies.
11418         
11419 2005-07-29  Martin Baulig  <martin@ximian.com>
11420
11421         * mono-debug-debugger.c
11422         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
11423         not initialized.
11424
11425         * mono-debug.c
11426         (mono_debug_address_from_il_offset): Check whether we have
11427         debugging support before attempting to take the lock.
11428         (mono_debug_source_location_from_address): Likewise.
11429         (mono_debug_source_location_from_il_offset): Likewise.
11430         (mono_debug_il_offset_from_address): Likewise.
11431         (mono_debug_address_from_il_offset): Likewise.
11432
11433 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
11434
11435         * class.c (mono_class_from_name_case): Add support for dynamic images.
11436         Fixes #75650.
11437
11438         * object.c (mono_class_compute_gc_descriptor): Add a workaround
11439         for #75479.
11440
11441 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
11442         
11443         * reflection.c (mono_method_get_object): Fix warning.
11444
11445 2005-07-28  Martin Baulig  <martin@ximian.com>
11446
11447         * mono-debug.c
11448         (mono_debug_add_wrapper): Also write the wrapper type.
11449
11450 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
11451
11452         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
11453         
11454         * class.c (mono_class_init): Avoid reading nested classes if the AOT
11455         data indicates the class has none.
11456
11457 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
11458
11459         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
11460         loader lock with the debugger lock. Prevents deadlocks for beagle.
11461
11462         Beagle can now run on an smp box for a weekend without any
11463         issues. Woohoo!
11464
11465 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
11466
11467         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
11468         in a module. Fixes #75629.
11469
11470 2005-07-26  Martin Baulig  <martin@ximian.com>
11471
11472         * mono-debug.c (mono_debug_add_wrapper): New static method.
11473         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
11474         interncall or a wrapper.
11475
11476         * mono-debug.h (MonoDebugWrapperData): New public typedef.
11477         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
11478         (MONO_DEBUGGER_VERSION): Bump to 51.
11479
11480         * mono-debug-debugger.c
11481         (mono_debugger_add_type): Removed this empty function.
11482         (mono_debugger_add_method): Likewise.
11483
11484 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
11485
11486         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
11487         before accessing method->slot.
11488
11489 2005-07-21  Jb Evain  <jbevain@gmail.com>
11490
11491         * reflection.c (method_encode_clauses/class): Handle filters clauses.
11492         Fixes #75010.
11493
11494 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
11495
11496         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
11497         #75587.
11498
11499 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
11500
11501         * image.h image.c: Add mono_image_get_guid () API function.
11502
11503 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
11504
11505         There were issues when multiple threads tried to load
11506         assemblies. A deadlock was created between assemblies_mutex and
11507         mono_domain_assemblies_lock. This fixes the issue by making the
11508         assembly ref counting be lock free. See bug 75586.
11509         
11510         * image.c (mono_image_close): The add ref function here was using
11511         Interlocked operations while the unref was using a mutex and a
11512         --. I don't think this was ever a bug that would be exposed in a
11513         non-pendantic way (ie, by an embedder doing a ref on one thread
11514         and an unref on another), but for the sake of correctness, this is
11515         now Interlocked.
11516
11517         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
11518         (mono_assembly_load_reference): Call mono_assembly_addref rather
11519         than touching the refcount ourselves.
11520         (mono_assembly_close): Use InterlockedDecrement to unref the
11521         assembly. Don't acquire the lock unless it is actually needed.
11522
11523 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
11524
11525         * class.c (mono_class_layout_fields): Fix calculation of has_references
11526         for generic types.
11527
11528 2005-07-12  Martin Baulig  <martin@ximian.com>
11529
11530         Applying a patch from Michal Moskal <malekith@nemerle.org>.
11531
11532         * metadata.c
11533         (mono_type_hash): Provide better hashing for generic instances.
11534         (mono_generic_inst_hash): Improve hashing.
11535         (mono_generic_class_hash): Likewise.
11536
11537         * reflection.c (mymono_metadata_type_hash): Improve hashing for
11538         generic instances.
11539
11540 2005-07-12  Martin Baulig  <martin@ximian.com>
11541
11542         * reflection.c (mono_reflection_create_runtime_class): Remove the
11543         hack for generic type definitions and non-`Run' assemblies.
11544         (mono_reflection_bind_generic_parameters): Also use
11545         `klass->wastypebuilder' to check for TypeBuilders.
11546
11547 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
11548
11549         * class.c (mono_class_layout_fields): Fix calculation of has_references
11550         for generic types.
11551
11552         * class.c (inflate_generic_class): Fix a leak.
11553         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
11554         for generic types.
11555
11556 2005-07-11  Martin Baulig  <martin@ximian.com>
11557
11558         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
11559         on error.
11560
11561 2005-07-11  Martin Baulig  <martin@ximian.com>
11562
11563         * loader.c (find_method): Also lookup in
11564         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
11565
11566 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
11567
11568         * appdomain.c (mono_domain_unload): Don't free the error message
11569         before passing it to mono_get_exception_...
11570
11571         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
11572         
11573 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
11574
11575         * threads.c: try to better guess an available RT signal (bug #75387).
11576
11577 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
11578
11579         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
11580         and CACHE_OBJECT.
11581
11582 2005-07-07  Martin Baulig  <martin@ximian.com>
11583
11584         * class.c (mono_type_get_name_full): Return NULL for
11585         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
11586         fixes #75408.
11587
11588 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
11589
11590         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
11591         exit the appdomain as well being aborted.
11592
11593         * threadpool.c: Create all threadpool threads inside the root appdomain, and
11594         change back to the root domain after calling managed code. This enables
11595         appdomains using threadpools to be unloaded.
11596
11597 2005-07-07  Martin Baulig  <martin@ximian.com>
11598
11599         * class-internals.h
11600         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
11601         into `MonoDynamicGenericClass' since we only need it for dynamic
11602         types.
11603
11604         * reflection.c (mono_class_bind_generic_parameters): We don't need
11605         to compute the `parent' here.
11606
11607 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
11608
11609         * culture-info-table.h : regenerated.
11610
11611 2005-07-06  Martin Baulig  <martin@ximian.com>
11612
11613         * icall.c
11614         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
11615
11616         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
11617
11618 2005-07-06  Martin Baulig  <martin@ximian.com>
11619
11620         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
11621         we're doing a signature-only comparision; fixes #74945.
11622
11623 2005-07-06  Martin Baulig  <martin@ximian.com>
11624
11625         * class-internals.h (MonoGenericClass): Moved some things out into
11626         a new `MonoInflatedGenericClass' type.  
11627         (MonoInflatedGenericClass): New type; the `klass' of a
11628         `MonoGenericClass' is now computed lazyly in
11629         mono_get_inflated_generic_class().      
11630
11631         * class.c (mono_get_inflated_generic_class): New public function.
11632         (mono_class_inflate_generic_method): Removed the unused
11633         `MonoClass *' argument.
11634         (setup_generic_vtable): Don't call mono_get_inflated_method() on
11635         all the methods.
11636         (mono_class_create_generic): Make this static and merge it with
11637         mono_class_create_generic_2(); we're now called automatically from
11638         mono_get_inflated_generic_class().
11639
11640         * loader.c (mono_method_signature): Call
11641         mono_get_inflated_method() here.
11642
11643 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
11644
11645         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
11646         type of fields with RVA.
11647
11648         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
11649         for this pseudo class.
11650         (my_mono_class_from_generic_parameter): Likewise.
11651         (mono_class_init): Allow interfaces to have cctors.
11652
11653 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
11654
11655         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
11656         lazily for AOT methods.
11657
11658 2005-07-05  Martin Baulig  <martin@ximian.com>
11659
11660         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
11661         returns FALSE for a successful match, not TRUE.
11662
11663 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
11664
11665         * loader.c (mono_method_get_index): Optimize this a bit.
11666
11667 2005-07-04  Martin Baulig  <martin@ximian.com>
11668
11669         * class.c
11670         (class_compute_field_layout): Move the check for generic type
11671         definitions into mono_class_layout_fields().  Fixes #74684.
11672         (mono_class_from_generic_parameter): Correctly compute
11673         `klass->parent'; fixes #75457.
11674
11675         * reflection.c (register_assembly, register_module): Make sure
11676         `domain->rejobject_hash' is already created.
11677
11678 2005-07-02  Martin Baulig  <martin@ximian.com>
11679
11680         * class-internals.h
11681         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
11682         `MonoDynamicGenericClass'.      
11683
11684 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
11685
11686         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
11687         returned by a field getter is null, since null is a valid value.
11688
11689 2005-07-01  Martin Baulig  <martin@ximian.com>
11690
11691         * reflection.c (mono_reflection_generic_class_initialize): Update
11692         the `dgclass->fields [i].parent' to the correct class.
11693         (mono_image_get_fieldref_token): Use the declaring type, not the
11694         reflected type.
11695
11696 2005-07-01  Martin Baulig  <martin@ximian.com>
11697
11698         * loader.c (find_method): Also look in the interfaces; fixes #75429.
11699
11700 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
11701
11702         * threads.c (thread_cleanup): assert that thread != NULL
11703         (wait_for_tids_or_state_change): We were using the wrong variable
11704         when accessing wait->threads. `i' was always out of the bounds of
11705         the array.
11706
11707 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11708
11709         * loader.c: map user32 and kernel32 to libMonoSupportW
11710
11711 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
11712
11713         * appdomain.c (unload_thread_main): Mark this as WINAPI.
11714
11715 2005-06-28  Martin Baulig  <martin@ximian.com>
11716
11717         * loader.c (method_from_methodspec): Fix #75334.
11718
11719 2005-06-28  Martin Baulig  <martin@ximian.com>
11720
11721         Fix #74953 - Arrays now implement the generic IList<T> interface
11722         on the 2.0 platform.
11723
11724         * class-internals.h (MonoDefaults): Added `generic_array_class'.
11725
11726         * reflection.c (mono_class_bind_generic_parameters): New public
11727         function; similar to mono_reflection_bind_generic_parameters(),
11728         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
11729
11730         * domain.c (mono_init_internal): Try to initialize.
11731         `mono_defaults.generic_array_class' here; this'll only succeed if
11732         we're using the 2.0 corlib.
11733
11734         * icall.c
11735         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
11736         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
11737         (mono_lookup_internal_call): Added support for nested classes.
11738
11739         * loader.c
11740         (mono_get_method_from_token): Set `result->signature->pinvoke' if
11741         we're an interncall and have generic arguments.
11742
11743         * class.c
11744         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
11745         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
11746         instance of System.Array.InternalArray<T> for arrays, so they
11747         implement the generic IList<T> interface.
11748
11749 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
11750
11751         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
11752         (chastamar@yahoo.com). Fixes #75374.    
11753
11754 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
11755
11756         * culture-info-table.h: regenerated.
11757
11758 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11759
11760         * icall.c: handle spaces correctly for base64 strings.
11761
11762 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
11763
11764         * *.c: Kill some warnings.
11765
11766 2005-06-23  Duncan Mak  <duncan@novell.com>
11767
11768         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
11769         that this builds on Solaris 10 (x86).
11770
11771 2005-06-23  Martin Baulig  <martin@ximian.com>
11772
11773         * class.c
11774         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
11775         generic type definitions.
11776
11777 2005-06-23  Martin Baulig  <martin@ximian.com>
11778
11779         Fix #75331.
11780
11781         * metadata.c (mono_class_get_overrides): Renamed to
11782         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
11783         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
11784         pass it to mono_get_method_full().
11785
11786 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
11787
11788         * reflection.c (mono_reflection_create_runtime_class): take the
11789         mono_domain_lock in this method. Prevents deadlocks
11790
11791 2005-06-22  Martin Baulig  <martin@ximian.com>
11792
11793         * loader.c (method_from_methodspec): Fix #75330.
11794
11795 2005-06-22  Martin Baulig  <martin@ximian.com>
11796
11797         * reflection.c (type_get_qualified_name): Use
11798         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
11799         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
11800         argument; use it if we don't have an assembly name.
11801
11802 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
11803
11804         * object.c: In mono_message_init, set "copy out" flag for in
11805         parameters with the [Out] flag.
11806
11807 2005-06-21  Martin Baulig  <martin@ximian.com>
11808
11809         * class.c
11810         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
11811         and MONO_TYPE_PTR.
11812
11813 2005-06-21  Martin Baulig  <martin@ximian.com>
11814
11815         * class.c (mono_class_init): Don't initialize `class->fields' for
11816         generic instances since they're initialized again in
11817         compute_field_layout(). 
11818         (compute_field_layout): Set the field's `generic_info' here; fix
11819         #75320. 
11820
11821 2005-06-21  Martin Baulig  <martin@ximian.com>
11822
11823         * class-internals.h
11824         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
11825
11826         * metadata.c (mono_metadata_generic_method_equal): Also
11827         distinguish the `generic_class'; fixes #75334.
11828
11829 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11830
11831         * domain.c:
11832         * appdomain.c:
11833         * domain-internals.h:
11834         * reflection.c: 'domain_assemblies' field is now protected by its own
11835         lock. Don't call into managed code to run the AssemblyLoad event if we
11836         now there are no registered delegates for it.
11837
11838 2005-06-20  Martin Baulig  <martin@ximian.com>
11839
11840         * class.c (mono_class_is_assignable_from): Use a custom version of
11841         mono_class_has_parent() to make things work for generic instances;
11842         fix #75300.
11843
11844 2005-06-20  Martin Baulig  <martin@ximian.com>
11845
11846         * loader.c (method_from_methodspec): Apply a patch from
11847         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
11848
11849 2005-06-20  Martin Baulig  <martin@ximian.com>
11850
11851         * class.c (mono_class_init): Reverted Zoltan's last change; it
11852         breaks generics.
11853
11854 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
11855
11856         * threads.c (wait_for_tids_or_state_change): Add missing locking.
11857
11858 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11859
11860         * socket-io.c: fix the index in the socket array for writable/error
11861         sockets. Fixes bug #75306.
11862
11863 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
11864
11865         * class.c (mono_class_init): Allow interfaces to have static ctors.
11866
11867 2005-06-17  Martin Baulig  <martin@ximian.com>
11868
11869         * loader.c (method_from_methodspec): Use `context->container' when
11870         parsing the `gmethod->inst'.
11871
11872 2005-06-17  Martin Baulig  <martin@ximian.com>
11873
11874         * class.c (mono_type_get_name_recurse): Don't add the assembly
11875         name for type arguments.
11876
11877 2005-06-15  Martin Baulig  <martin@ximian.com>
11878
11879         * reflection.c (mono_image_get_inflated_method_token): Encode
11880         correct klass; fixes #75260.
11881
11882 2005-06-13 Michal Moskal <malekith@nemerle.org>
11883
11884         * icall.c: Make GetCorrespondingMethod/Constructor take
11885         MonoReflectionMethod method not MonoMethod. Removed
11886         MonoType.GetCorrespondingField, and make
11887         MonoGenericType.GetCorrespondingField take name not
11888         MonoClassField.
11889
11890 2005-06-13  Michal Moskal <malekith@nemerle.org>
11891
11892         * reflection.c (field_encode_signature, encode_locals):
11893          Make sizes of buffers for types larger (for big generic types).
11894          (create_generic_typespec,
11895          mono_reflection_sighelper_get_signature_local,
11896          mono_reflection_sighelper_get_signature_field):
11897          Add asserts for too small buffers.
11898
11899 2005-06-15  Martin Baulig  <martin@ximian.com>
11900
11901         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
11902         if our parent is not a dynamic type.
11903
11904 2005-06-15  Martin Baulig  <martin@ximian.com>
11905
11906         * class-internals.h (MonoTypeNameFormat): New enum.
11907
11908         * class.c
11909         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
11910         (mono_type_get_full_name): Removed.
11911         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
11912         argument instead of the boolean's.
11913
11914         * icall.c (ves_icall_System_MonoType_getFullName):
11915         Added `gboolean assembly_qualified'.    
11916
11917         * reflection.h
11918         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
11919
11920         * reflection.c (mono_reflection_parse_type): Parse the new type
11921         name format.
11922
11923 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11924
11925         * icall.c: no need to convert from utf16 to utf8 and then back again
11926         after the call to GetLogicalDrives.
11927
11928 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11929
11930         * icall.c: frombase64. Fix problems exposed by new tests.
11931
11932 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11933
11934         * icall.c: added internal calls for converting char [] and strings in
11935         base64 into byte [].
11936
11937 2005-06-10  Martin Baulig  <martin@ximian.com>
11938
11939         * class.c (mono_class_create_generic_2): Read the nested classes
11940         from the metadata rather than from `gklass->nested_classes' since
11941         `gklass' might not be initialized yet.
11942
11943 2005-06-09  Duncan Mak  <duncan@novell.com>
11944
11945         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
11946         all public headers. Fixes #74919.
11947
11948 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
11949
11950         * domain.c: The key for proxy_vtable_hash is now a pointer
11951         array. Added new GHashFunc and GCompareFunc functions for this.
11952
11953         * class.h: The list of interfaces in MonoRemoteClass is known in
11954         advance and can't grow (we create a new MonoRemoteClass if needed),
11955         so now the interface array can be allocated together with
11956         MonoRemoteClass.
11957         
11958         * object.c: Added a new method create_remote_class_key.
11959         Fixed mono_remote_class so it does not depend on
11960         mono_upgrade_remote_class.
11961         Removed extend_interface_array.
11962         Added new method clone_remote_class(), which makes a copy of a remote
11963         class and adds a new interface or class to it.
11964         mono_upgrade_remote_class() now creates a new remote class (or gets
11965         it from the cache) if an vtable upgrade is needed. In this way
11966         we make sure that other objects sharing the same remote class
11967         don't get the new vtable with unwanted interfaces.
11968         
11969         * object-internals.h:
11970         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
11971         
11972         * marshal.c: Track changes in mono_upgrade_remote_class().
11973
11974 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
11975         * icall.c: Add runtime methods for obtaining members of inflated
11976         class, which were created from supplied non-inflated members. It
11977         is used in internal Get{Method,Constructor,Field} methods in
11978         System.Type
11979
11980 2005-06-09  Martin Baulig  <martin@ximian.com>
11981
11982         * reflection.c
11983         (mono_reflection_bind_generic_method_parameters): Fix #75169.
11984
11985 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11986         * reflection.c (mono_image_basic_init): Define
11987         Version in MonoDynamicAssembly. 
11988         
11989 2005-06-08  Martin Baulig  <martin@ximian.com>
11990
11991         Fix #75136.
11992
11993         * loader.c
11994         (mono_method_signature_full): New public method; takes a
11995         `MonoGenericContext *'.
11996         (find_method): Use mono_method_signature_full() and pass the
11997         klass'es context to it.
11998
11999         * class.c (mono_class_is_inflated_method): Use
12000         mono_method_signature_full() and pass the context to it.
12001
12002 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
12003
12004         * object.c: add proper locking in mono_remote_class_vtable(),
12005         fixes possible memory corruption.
12006
12007 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
12008
12009         * marshal.c (mono_remoting_marshal_init): set
12010         initialized after initialization.
12011
12012 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12013
12014         * locales.c : hush.
12015
12016 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
12017
12018         * object.c (extend_interface_array): fix really silly
12019         memory corrupting / comparison bug.
12020
12021 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12022
12023         * reflection.c: Functions added to support the creation
12024         of CustomAttributeData, which includes Attribute data
12025         used by ReflectionOnly methods.
12026
12027         * reflection.h:  mono_reflection_get_custom_attrs_data and
12028          mono_custom_attrs_data_construct added (functions exposed).
12029
12030          * icall.c: Added mono_reflection_get_custom_attrs_data
12031          as icall.
12032         
12033 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
12034
12035         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
12036         lupus's request.
12037
12038 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
12039
12040         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
12041
12042         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
12043         dynamic DllImportAttribute.
12044
12045         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
12046         dynamic DllImportAttribute.
12047
12048         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
12049         Fixes #75162.
12050
12051 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12052
12053         * threads.c: avoid segfault when an unstarted thread is aborted.
12054
12055 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
12056
12057         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
12058         Returns the name and version of the runtime for reporting.
12059
12060 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12061
12062         * appdomain.c: bump corlib version.
12063         * object-internals.h: new field in MonoReflectionAssembly.
12064
12065 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12066
12067         * object-internals.h: Carlos forgot to add this field.
12068
12069 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12070
12071         * icall.c: Added create_version to create instances
12072         of Version of MonoReflectionAssemblyName. This change helps
12073         the AssemblyName tests to keep running fine.
12074         
12075 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
12076   
12077         * object.c (mono_method_return_message_restore): A somehow less
12078         intrusive fix for #75138.
12079
12080 2005-06-03  Raja R Harinath  <rharinath@novell.com>
12081
12082         * object.c (mono_method_return_message_restore): Fix computation
12083         of expected number of out args.
12084
12085 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
12086
12087         * reflection.c (mono_image_get_method_info): Fix the case when the
12088         charset is empty.
12089
12090 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
12091
12092         * object.c: Added missing null check in
12093           mono_method_return_message_restore.
12094
12095 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
12096
12097         * reflection.c (mono_image_get_method_info): Handle the case when
12098         dllentry is empty.
12099
12100 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
12101
12102         * object.c: When creating the vtable for a proxy, take into account
12103         all inherited interfaces, not only the ones registered in
12104         iclass->interfaces. This fixs bug #74996.
12105         Also, in mono_method_return_message_restore, verify that the array
12106         of out args has the expected lengh.
12107
12108 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12109
12110         * socket-io.c: update the timeout in Poll when the call is interrupte.
12111
12112 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12113
12114         * socket-io.c: support abort/suspend in Select_internal after last
12115         change.
12116
12117 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12118
12119         * threadpool.c: remove warning.
12120
12121 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12122
12123         * icall.c:
12124         * socket-io.[ch]: Select_internal uses poll() now when available, thus
12125         removing the 1024 limit from select(). Runtime part of the fix for
12126         bug #71203.
12127
12128 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12129
12130         * socket-io.c: when resolving the addresses for the same
12131         host returned by gethostname(), get the local IPs from the interface
12132         list. Loopback addresses are discarded if the are interfaces up with
12133         non-loopback ones. Fixes bug #63265.
12134
12135 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
12136
12137         * appdomain.c, verify.c, object-internals.h, reflection.c:
12138         bumped corlib number to 36, and added new extra_flags field
12139         to ReflectionMethodBuilder and friends.  Fixes #75060.
12140
12141 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
12142
12143         * gc.c: register a new weak link only if the object is non-null
12144         (fixes bug#75047).
12145
12146 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12147
12148         * culture-info.h : short time pattern too.
12149
12150 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12151
12152         * culture-info.h : expand long time pattern string length.
12153
12154 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
12155
12156         * culture-info-table.h : update (more French date format; #72788).
12157
12158 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
12159
12160         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
12161         the method is static. Fixes #75029.
12162
12163 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
12164
12165         * reflection.c: Update the table_idx field of method builders after
12166         saving the module, since it can change. This is a workaround for
12167         bug #74914. 
12168
12169 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
12170
12171         * culture-info-table.h : update (additional French date format).
12172
12173 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
12174
12175         * icall.c (ves_icall_type_Equals): Revert last change.
12176         
12177         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
12178
12179         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
12180
12181 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
12182
12183         * class-internals.h: Added executioncontext_class field to 
12184         MonoDefaults structure.
12185         * domain.c: Cache System.Threading.ExecutionContext class in 
12186         mono_defaults.
12187         * object.c: Capture the ExecutionContext for asynchroneous calls in
12188          mono_async_result_new.
12189         * object-internals.h: Added execution_context and original_context 
12190         fields to MonoAsyncResult. Added execution_context to MonoThread.
12191         * security-manager.c|.h: Added mono_get_context_capture_method to 
12192         return the capture method (if required by the security manager or by
12193         the framework version used).
12194         * threadpool.c: Apply capture (if present) ExecutionContext in 
12195         mono_async_invoke and revert to original context after it completes.
12196
12197 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
12198
12199         * culture-info-table.h : updated (real hacky solution for zh-CHT).
12200
12201 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
12202
12203         * culture-info-table.h : zh-CHT related workaround.
12204
12205 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
12206
12207         * marshal.c (emit_marshal_custom): Add some error checking and call the
12208         methods in the ICustomMarshaler interface. Fixes #74875.
12209         
12210         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
12211         native->managed wrappers.
12212
12213 2005-05-12  Martin Baulig  <martin@ximian.com>
12214
12215         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
12216         here and use the loader lock.
12217
12218         * mono-debug.c: Properly lock when the debugger is not attached.
12219         (mono_debug_init): Release the initial lock if we're not running
12220         in the debugger.
12221
12222 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
12223
12224         * marshal.c (emit_marshal_custom): Pass through NULL values without
12225         calling the custom marshalling routines.
12226
12227         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
12228         conversion in structures. Fixes #74882.
12229
12230 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
12231
12232         * culture-info-table.h : zh-* cultures were missing.
12233
12234 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
12235
12236         * threads.c: Added a new event background_change_event which is signaled
12237         when a thread changes its background mode.
12238         Moved here several checks previously done in managed code. The checks
12239         require the thread lock, and using the thread lock in managed code
12240         can result in deadlocks.
12241         Merged Start_internal and Thread_internal into a single method. Now 
12242         Thread_internal does all work of creating and starting a thread.
12243         Added icalls for setting and getting the state of the object. Moved from
12244         managed code to avoid locking there.
12245         Added wait_for_tids_or_state_change() which is called instad of
12246         wait_for_tids when waiting for non-backround threads to end. This method
12247         will return if one of the threads ends or the background_change_event
12248         is signaled.
12249         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
12250         the background mode. This method signals the background_change_event
12251         event.
12252         * icall.c:
12253         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
12254         removed Start_internal.
12255         
12256 2005-05-11  Martin Baulig  <martin@ximian.com>
12257
12258         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
12259         to order of some fields to get proper alignment on 64-bit machines.
12260
12261 2005-05-11  Martin Baulig  <martin@ximian.com>
12262
12263         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
12264         changes as they're broken and completely fuck up the debugger.
12265
12266         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
12267
12268 2005-05-10  Martin Baulig  <martin@ximian.com>
12269
12270         * reflection.c (mono_reflection_generic_class_initialize): Don't
12271         call mono_class_setup_parent() here.
12272
12273 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12274
12275         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
12276         send/receive timeout use an integer in milliseconds. We were using a
12277         struct timeval.
12278
12279 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12280
12281         * locales.c:
12282         (internal_get_cultures): reserve the first slot of the array for the
12283         InvariantCulture, which will be filled in managed code.
12284
12285 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
12286
12287         * reflection.c (mono_image_fill_module_table): Initialize the
12288         GENERATION field as well.
12289
12290 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12291
12292         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
12293         Monitor.Enter on the object.
12294
12295 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
12296
12297         * threads.c: Enable the wait for running threads when exiting.
12298         * icall.c: Suspend all threads before exiting.
12299
12300 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
12301
12302         * assembly.c (mono_assembly_load_reference): Fix warning.
12303
12304 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12305
12306         * threadpool.c: changed the default number of threads per cpu. From now
12307         on, the default will be 20 + (5 * number of cpus) instead of 50.
12308
12309 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
12310
12311         * loader.c (mono_method_get_signature_full): Add locking here.
12312
12313 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
12314
12315         * appdomain.c: Moved methods for parsing and freeing assembly
12316         names to assembly.c.
12317         * assembly.c, domain-internals.h: Created public methods for parsing
12318         assembly names. Fixed mono_assembly_load_with_partial_name:
12319         it now finds the best match, taking into account the version,
12320         token and culture specified in the partial name. Also return
12321         the latest version if no version information is specified.
12322
12323 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
12324
12325         * threadpool.c: replace check for SocketAsyncCall class.
12326
12327 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12328
12329         * threadpool-internals.h:
12330         * Makefile.am: added threadpool-internals.h
12331
12332         * threadpool.c: call mono_unhandled_exception on exceptions not handled
12333         that happen in threadpool threads (tested on MS).
12334         (mono_thread_pool_remove_socket): new function that dispatch any pending
12335         AIO call on a socket that is closing. By now only epoll really needs it,
12336         as select/poll wake up when the socket closes.
12337
12338
12339         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
12340
12341 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
12342
12343         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
12344
12345 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
12346
12347         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
12348
12349 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
12350
12351         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
12352         has an abort request, convert it into a suspend request.
12353
12354 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
12355
12356         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
12357         warning for the usage of `UnmanagedFunctionPointerAttribute' which
12358         is not supported yet.
12359
12360 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12361
12362         * image.c: register assemblies loaded from data (bundles) in the loaded
12363         assemblies hash. Fixes bug #74772.
12364
12365 2005-04-29  Martin Baulig  <martin@ximian.com>
12366
12367         * class.c (mono_type_get_name_recurse): Update to the new naming
12368         schema from the latest .NET 2.x beta2.
12369         (mono_class_setup_vtable_general): If we're a generic instance,
12370         copy the vtable from our generic type definition and inflate all
12371         the methods in it.
12372
12373         * loader.c (find_method): Update to the new naming schema from the
12374         latest .NET 2.x beta2.
12375
12376 2005-04-29  Raja R Harinath  <harinath@gmail.com>
12377
12378         * class.c (mono_class_init): Add a mono_loader_unlock to the
12379         #74734 fix.
12380
12381 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
12382
12383         * icall.c (ves_icall_System_Environment_Exit): Remove the 
12384         suspend_all_other_threads () call for the time being, since it can hang.
12385
12386         * threads.c (mono_thread_manage): Similarly, disable the waiting for
12387         the background threads to exit, since it can also hang.
12388
12389         * class.c (mono_class_init): Applied patch from Ankit Jain 
12390         (radical@gmail.com). Avoid pending init errors when a field refers
12391         to a nested class using a typeref. Fixes #74734.
12392
12393         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
12394         this for dynamic modules.
12395
12396 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12397
12398         * threads.c: don't wait for threads that are in the process of aborting
12399         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
12400         and waiting for background threads to finish. This makes xsp and
12401         mod-mono-server exit without random length delays and/or hangs.
12402
12403 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12404
12405         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
12406
12407 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
12408
12409         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
12410         dynamic types to prevent infinite loops. Fixes #74727.
12411
12412         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
12413         ..._is_assignable_to.
12414
12415 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
12416
12417         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
12418
12419 2005-04-25  Martin Baulig  <martin@ximian.com>
12420
12421         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
12422
12423         * domain.c
12424         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
12425
12426         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
12427
12428         * reflection.c (build_compressed_metadata): Set metadata header
12429         version to 2.0.
12430
12431 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
12432
12433         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
12434         number into an integral and a decimal part. Fixes #70473.
12435
12436         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
12437
12438 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
12439
12440         * culture-info-table.h : reflected the latest locale-builder output.
12441
12442 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12443
12444         * threadpool.c: check for SuspendRequested too when deciding if
12445         mono_thread_interruption_checkpoint should be called.
12446
12447 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12448
12449         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
12450         * threads.c: remove interruption_mutex and use Interlocked instead. When
12451         suspending all the threads, wait for all the suspended events at once.
12452         If we're shutting down and get an APC that is going to be queued,
12453         call mono_thread_execute_interruption immediately, as the thread might
12454         be sleeping on a pthread condition or mutex.
12455
12456         * icall.c: call mono_runtime_set_shutting_down before suspending the
12457         threads.
12458
12459         Fixes bug #74693. And now xsp is happier when exiting.
12460
12461 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
12462
12463         * loader.c (mono_stack_walk): Fix #74690.
12464
12465 2005-04-22  Martin Baulig  <martin@ximian.com>
12466
12467         * mono-debug.h (MonoDebugMethodJitInfo): Added
12468         `MonoDebugMethodJitInfo *jit'.
12469
12470         * mono-debug.c (mono_debug_read_method): Cache the
12471         MonoDebugMethodJitInfo in `address->jit'.
12472         (mono_debug_free_method_jit_info): New public method.
12473
12474 2005-04-22  Martin Baulig  <martin@ximian.com>
12475
12476         * class.c (mono_class_is_assignable_from): Disallow
12477         type parameter -> interface.
12478
12479 2005-04-21  Dick Porter  <dick@ximian.com>
12480
12481         * threads.c (mono_thread_create): Turn an assertion into an error.
12482
12483 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
12484
12485         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
12486         
12487         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
12488         Fix some gcc 4.0 warnings.
12489
12490 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
12491
12492         * file-io.c: fix alt dir separator char on unix systems
12493         and cleanup (fixes bug #71214).
12494
12495 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
12496
12497         * marshal.c: Use CALLVIRT instead of CALL when dispatching
12498         a call to a remote domain, since the method may be an
12499         interface method in the client domain. This fixes bug #74192.
12500
12501 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12502
12503         * threadpool.c: recv/send are now performed before going back to managed
12504         code to save one transition.
12505
12506 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12507
12508         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
12509
12510         * metadata/threadpool.c: removed hack to workaround the bug above.
12511
12512         Fixes bug #74618.
12513
12514 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
12515
12516         * reflection.c reflection.h: Fix handling of parameter defaults in
12517         dynamic methods. Also fixes handling of parameter attributes.
12518         Fixes #74609.
12519
12520         * mono-debug.c (mono_debug_close_image): Fix warning.
12521
12522 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12523
12524         * socket-io.h: replaced old unused field with new 'blocking'.
12525         * threadpool.c: restore socket blocking state on windows(tm).
12526
12527 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
12528
12529         * icall.c: don't return the codebase in the AssemblyName[] returned by
12530         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
12531         * object-internals.h: Removed FIXME (fields were presents) and fixed
12532         versioncompat declaration.
12533
12534 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12535
12536         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
12537         not closed, so don't cleanup when it happens.
12538
12539 2005-04-13  Chris Toshok  <toshok@ximian.com>
12540
12541         * mono-debug-debugger.h: change prototype for
12542         mono_debugger_lookup_type.
12543
12544         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
12545         this function, although it should probably be named
12546         mono_debugger_init_type.
12547
12548 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12549
12550         * threadpool.c: fix non-AIO case.
12551
12552 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
12553
12554         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
12555         the built-in profiler to measure just JIT compilation times.
12556
12557 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12558
12559         * threadpool.c: the epollfd might be closed by another thread at
12560         any time, so ignore EBADF at treat it as a "we're closing" sign.
12561
12562 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12563
12564         * threadpool.c: release the semaphores with a count equals to the number
12565         of working threads in both IO and regular pools. Fixed typo that messed
12566         up the count of IO pool threads. Don't initialize the pipe handles if
12567         we're using epoll.
12568
12569 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12570
12571         * threadpool.c: some systems don't like a NULL when deleting the socket
12572         from epoll.
12573
12574 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12575
12576         * threadpool.c: fix semaphore allocation.
12577
12578 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12579
12580         * threadpool.c: added epoll() based implementation for asynchronous IO
12581         that is used instead of the default poll() when available.
12582         It can be disabled by setting MONO_DISABLE_AIO.
12583
12584 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12585
12586         * threadpool.c: windows needs 'closesocket' and instead of returning
12587         0 when the stream is closed while in select, it returns -1. Fixes bug
12588         #74573.
12589
12590 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
12591
12592         * class.c (class_compute_field_layout): Fix the regression caused by
12593         the previous try.
12594
12595 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12596
12597         * threadpool.c: separate pool for socket async. IO.
12598         * threadpool.h: mono_max_worker_threads is not a global any more.
12599
12600 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
12601
12602         * class.c (class_compute_field_layout): Fix #74549.
12603
12604 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12605
12606         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
12607         use 2 connected sockets instead.
12608
12609 2005-04-08  Miguel de Icaza  <miguel@novell.com>
12610
12611         * mono-config.c: Add new entry point for mkbundle
12612         mono_config_parse_memory. 
12613
12614 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12615
12616         * threadpool.c: removed another unused function.
12617
12618 2005-04-08  Ankit Jain  <radical@corewars.org>
12619
12620         * reflection.c (get_default_param_value_blobs): Add 'types'
12621         parameter to get the types encoded in the constant table.
12622         (mono_param_get_objects): Use the type from the constant table,
12623         not the type of the parameter, when creating default values.
12624         Handle null default values correctly.
12625
12626 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12627
12628         * file-io.c:
12629         * file-io.h:
12630         * threadpool.c:
12631         * threadpool.h:
12632         * icall.c:
12633         * socket-io.c: removed dead code for async IO.
12634
12635 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12636
12637         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
12638
12639         * threadpool.c: intercept socket async. calls and pass them to a thread
12640         that is polling and dispatching the job items to the threadpool as
12641         socket become ready. Fixes bugs #71217, #71933.
12642
12643         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
12644         between char and short/ushort arrays.
12645
12646         * socket-io.c: remove dead code.
12647
12648 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
12649
12650         * locales.c,
12651           icall.c : removed InternalToUpper_Comp() and
12652           InternalToLower_Comp().
12653
12654 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
12655
12656         * char-conversions.h : The tables were incorrectly generated. Should
12657           be generated against invariant culture.
12658
12659 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
12660
12661         * object.c (mono_runtime_invoke_array): Fix return value when 
12662         passing pre-created valuetype objects to ctors.
12663
12664         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
12665         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
12666         Fixes #74338.
12667
12668 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
12669
12670         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
12671         only used with --security and hides the wrong corlib version error.
12672
12673 2005-03-30  Joshua Tauberer  <tauberer@for.net>
12674
12675         * class.c: Changed mono_class_name_from_token so that types
12676         outside of a namespace don't have an initial period.  Improved
12677         the g_warning message used in _mono_class_get when loading
12678         fails.
12679         * assembly.c: In mono_assembly_load_reference, when an assembly
12680         can't be found, "No such file or directory" is misleading and
12681         unhelpful because a few paths were checked for the presence of
12682         the assembly.  When that happens (ENOENT), display a nicer
12683         message indicating the directories that were searched.  In all
12684         cases, the warning is made easier to read for non-hackers.
12685
12686 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
12687
12688         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
12689         project/solution.
12690         * appdomain.h|domain.c: Removed inline from functions.
12691         * appdomain.c: Reduced warnings when compiling on windows.
12692         * icall.c: Fixed output_debug declaration to gunichar2*.
12693         * mono-config.c: Reduced warnings when compiling on windows.
12694         * rand.c: Added missing "windows.h". Added missing return value.
12695         * rawbuffer.c: Added missing winsock2.h for windows.
12696         * sysmath.h: Added mono-compiler.h header to allow/ease 
12697         compilation with non-GCC compilers.
12698         * threads.c: Fixed declarations to compile with VS.NET C compiler.
12699         Removed cast warnings.
12700
12701         Adapted from the work of J Lothian (for VC6).
12702
12703 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
12704
12705         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
12706         from default_path.
12707
12708 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
12709
12710         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
12711         the 2.0 profile.
12712
12713 2005-03-27  Raja R Harinath  <harinath@gmail.com>
12714
12715         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
12716         has to be in $(exec_prefix).  $(prefix) is for arch-independent
12717         stuff, and it would probably use $(prefix)/share rather than
12718         $(prefix)/lib.
12719
12720 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12721
12722         * console-io.c: added 2 includes that might be missing.
12723
12724 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
12725
12726         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
12727         profile.
12728
12729         * reflection.c (create_custom_attr): Allocate the params array using
12730         alloca so it gets GC tracking.
12731
12732 2005-03-23  Chris Toshok  <toshok@ximian.com>
12733
12734         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
12735         out some spew.
12736
12737 2005-03-24  Raja R Harinath  <rharinath@novell.com>
12738
12739         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
12740         changes to pick up any changes in prefix, etc.
12741
12742 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
12743
12744         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
12745         
12746         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
12747         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
12748
12749 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
12750
12751         * class-internals.h object-internals.h class.c reflection.c: Extend the
12752         mono_lookup_dynamic_token () function to return the class of the
12753         token as well. 
12754
12755         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
12756         well. Fixes #73848.
12757
12758 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
12759
12760         * security-manager.c: Skip inheritance checks for intra-corlib
12761         class inheritance and method overrides. This skips a lot of checks
12762         and (anyway) permissions cannot work until corlib is loaded.
12763
12764 2005-03-23  Martin Baulig  <martin@ximian.com>
12765
12766         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
12767         MONO_TYPE_GENERICINST.  
12768
12769 2005-03-23  Martin Baulig  <martin@ximian.com>
12770
12771         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
12772
12773 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
12774
12775         * class.c: added locking comments to some functions.
12776         Cache the interface offsets arrays (saves about 20 KB
12777         of runtime memory in a typical app).
12778         Reduce the time overhead in mono_class_setup_supertypes ().
12779
12780 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
12781
12782         * icall.c: speedup and fix leaks in GetMethodsByName and
12783         GetPropertiesByName.
12784
12785 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
12786
12787         * reflection.c: some locking fixes.
12788
12789 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
12790
12791         * metadata.c: added missing break in case statement.
12792
12793 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
12794
12795         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
12796         typedbyref return values. Fixes #73941.
12797
12798 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
12799
12800         * security-manager.c|h: Added demandunmanaged method and 
12801         suppressunmanagedcodesecurity class to MonoSecurityManager.
12802         Renamed aptc class to allowpartiallytrustedcallers.
12803
12804 2005-03-17  Martin Baulig  <martin@ximian.com>
12805
12806         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
12807
12808 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12809
12810         * file-io.c: disabled file async. IO using aio_*. It uses the
12811         threadpool now. Workaround for bug #73718.
12812
12813 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
12814
12815         * assembly.h, mono-config.c: added code to deal with bundled configs
12816         for bundled assemblies.
12817
12818 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
12819
12820         * *.c, private.h: cleanup, removing old private.h header file.
12821
12822 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
12823
12824         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
12825         and throw_on_unmappable_char attributes.
12826
12827 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
12828
12829         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
12830         _ProcessName_internal.
12831
12832 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
12833
12834         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
12835         #73631.
12836
12837         * icall.c threads.c threads-types.h: Remove slothash icalls as they
12838         are no longer used.
12839
12840 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
12841
12842         * object.c (compute_class_bitmap): Add support for generics. Fixes
12843         #73527.
12844
12845 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
12846
12847         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
12848
12849 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12850
12851         * filewatcher.c: commented out the code for windows watcher, as we don't
12852         use it (we use the managed implementation instead).
12853
12854 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
12855
12856         * object-internals.h (MonoThread): Remove 'unused1' field.
12857
12858         * appdomain.c: Bump corlib version.
12859
12860         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
12861
12862         * reflection.c (mono_reflection_create_runtime_class): Remove the
12863         AssemblyBuilder.Save optimization since it causes too many problems.
12864
12865 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
12866
12867         * exception.c|h: Added mono_get_exception_reflection_type_load to
12868         create a ReflectionTypeLoadException object.
12869         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
12870         to return NULL is a InheritanceDemand fails during reflection. Updated
12871         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
12872         ReflectionTypeLoadException if an InheritanceDemand fails during 
12873         reflection. Added icall mapping for GetLinkDemandSecurity.
12874         * security-manager.c|h: Added ves_icall_System_Security_
12875         SecurityManager_GetLinkDemandSecurity internal call to return the
12876         class and methods permissions set for a LinkDemand. Removed unused
12877         fields in MonoSecurityManager.
12878
12879 2005-03-10  Martin Baulig  <martin@ximian.com>
12880
12881         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
12882         it's a generic instance.
12883
12884 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
12885
12886         * reflection.c (mono_get_object_from_blob): Applied patch from
12887         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
12888
12889         * class.c (mono_class_is_assignable_from): Another try at fixing 
12890         #73469 without breaking anything.
12891
12892 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
12893
12894         * class.c: (mono_class_is_assignable_from): Revert the last changes
12895         since they don't work with generics.
12896         
12897         * class.c (mono_class_is_assignable_from): Fix build bustage.
12898
12899         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
12900         the managed IsAssignableFrom method. Fixes #73469.
12901
12902         * reflection.c (mono_reflection_call_is_assignable_from): New helper
12903         function.
12904
12905 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
12906
12907         * object.c (mono_load_remote_field_new): Fix returning uninitialized
12908         memory when the remoting callback does not sets the out arguments.
12909         Fixes #73007.
12910
12911         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
12912         by mistake.
12913
12914         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
12915
12916         * object-internals.h (MonoStackFrame): Sync with managed object layout.
12917
12918         * appdomain.c: Bump corlib version.
12919
12920 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
12921
12922         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
12923         function.
12924
12925         * threads.c (mono_thread_attach): Detect threads which are not started
12926         by the GC pthread wrappers.
12927
12928 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
12929
12930         * icall.c: Added new icall for RNG.
12931         * rand.c|h: Added new icall to open the RNG. This allows to share a 
12932         single handle on Linux to access /dev/urandom and fix #73183.
12933
12934 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
12935
12936         * object.c: setting the new vtable in a transparent proxy object must
12937         not change the GC descriptor.
12938
12939 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
12940
12941         * object.c: fixed compilation without GCJ support.
12942         * reflection.c: for runtime-created types ensure klass->has_references
12943         is correct (bug #73215).
12944
12945 2005-03-02  Martin Baulig  <martin@ximian.com>
12946
12947         * class.c (mono_class_is_assignable_from): Make this work if
12948         `oklass' is a generic instance; fixes #72831.
12949
12950 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
12951
12952         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
12953         with hasthis set.
12954         
12955         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
12956
12957         * marshal.c: Reorganize native->managed marshalling code to also use
12958         the emit_marshal_... functions.
12959
12960 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
12961
12962         * object.c: typed allocs have issues with bitmap sizes > 30,
12963         so check for max_set >= 30.
12964
12965 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
12966
12967         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
12968         managed code. Fixes #73012.
12969
12970         * metadata.h (MonoMarshalSpec): Add elem_mult field.
12971
12972         * metadata.c reflection.c: Load/Emit elem_mult as well.
12973         
12974         * metadata.h (MonoMarshalSpec): Add comment.
12975
12976         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
12977
12978         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
12979         num_elem to -1 if not given.
12980
12981         * object-internals.h (MonoReflectionMarshal): Add has_size field.
12982
12983         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
12984         given values.
12985
12986 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
12987
12988         * null-gc.c (mono_gc_free_fixed): Was not compilable.
12989
12990 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
12991
12992         * reflection.c (encode_marshal_blob): Encode param_num field as well.
12993
12994         * object-internals.h (MonoReflectionMarshal): Add param_num field.
12995
12996 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
12997
12998         * object.c: generalized the reference bitmap creation
12999         and added hooks for the new GC.
13000         * class-internals.c: removed the gc_bitmap field from MonoClass.
13001
13002 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
13003
13004         * domain.c: help the compiler to produce better code
13005         in mono_jit_info_table_find ().
13006
13007 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
13008
13009         * object.c: make all allocations look typed.
13010
13011 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
13012
13013         * socket-io.c: load Mono.Posix if it's not loaded already
13014         (fixes bug#73033).
13015
13016 2005-02-24  Martin Baulig  <martin@ximian.com>
13017
13018         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
13019         * reflection.c (dup_type): Likewise.
13020
13021 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
13022
13023         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
13024         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
13025
13026 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
13027
13028         * domain.c, threads.c, object-internals.h: make the critical thread
13029         local vars use the fast access mode (even when we're compiled in
13030         a lib). Provide accessors to be used by the jit during codegen.
13031
13032 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13033
13034         * appdomain.c: Changed hook functios behavior to include
13035         support for the reflection only assemblies. Some icalls were changed
13036         to support the mentioned assemblies too. Signatures of static methods
13037         try_assembly_resolve and real_load now have an additional parameter:
13038         refonly.
13039
13040         * assembly.c: General changes to mono_assembly_ methods to support
13041         reflection only api. Functions mono_assembly_open, mono_assembly_load,
13042         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
13043         suffix, to support an additional gbool parameter to specify whether
13044         the assembli is reflection only or not. Created some new hook functions 
13045         to add support for reflection only assemblies. Signatures of static 
13046         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
13047         have now an additional parameter: refonly.
13048
13049         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
13050         indicating whether the assembly is reflection only or not.
13051
13052         * exception.c: Add mono_get_exception_invalid_operation.
13053
13054         * icall.c: Throw an InvalidOperationException when trying to invoke
13055         a property/method/event, or trying to set/get the value of a field.
13056         Also add an icall to retrieve the ref_only flag to the
13057         MonoReflectionAssembly.
13058
13059 2005-02-23  Chris Toshok  <toshok@ximian.com>
13060
13061         Part of fix for #72827.
13062         * mono-debug.c (mono_debug_add_method): add lexical block data to
13063         the info we write.  Kind of a hack at the moment - we copy the
13064         lexical block info from the MonoDebugMethodInfo to the
13065         MonoDebugMethodJitInfo here, before writing it.
13066         (mono_debug_read_method): read the lexical block info.
13067
13068         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
13069
13070         * debug-mono-symfile.h: add lexical block support.
13071
13072         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
13073         support.
13074
13075 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
13076
13077         * loader.c (mono_lookup_pinvoke_call): Fix warning.
13078
13079         * object.c (mono_runtime_free_method): Call mono_free_method () and
13080         put the TODOs there.
13081
13082         * loader.c (mono_free_method): Free up most memory allocated for 
13083         dynamic methods.
13084
13085 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
13086
13087         * reflection.c: properly flag a Type argument to a
13088         named custom attr value (bug #72248).
13089
13090 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
13091
13092         * reflection.c: reduce code duplication in named custom
13093         attribute encoding.
13094
13095 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
13096
13097         * reflection.c: properly encode custom attrs of type object
13098         (bug #72649).
13099
13100 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
13101
13102         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
13103
13104 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
13105
13106         * socket-io.c: load System.dll if it's not loaded already
13107         (bug #72850 and #70477).
13108
13109 2005-02-21  Martin Baulig  <martin@ximian.com>
13110
13111         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
13112         generic instances.
13113
13114 2005-02-21  Martin Baulig  <martin@ximian.com>
13115
13116         * reflection.c (mono_image_build_metadata): We also need to
13117         "fixup" the MethodImpl table after we computed the final method
13118         indices.  Call fixup_methodimpl() to do that.
13119         (fixup_methodimpl): New private method.
13120
13121 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
13122
13123         * assembly.c: special case mscorlib.dll (bug#72536),
13124         patch from Carlos Alberto Cortez.
13125
13126 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
13127
13128         * threads-types.h threads.c: Fix build bustage.
13129
13130         * threads.c: Use a union for long<->double conversions.
13131
13132         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
13133         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
13134
13135         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
13136         containing the checkpoint call with NOT_TAKEN.
13137         
13138         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
13139         checkpoint before pushing the arguments, so they won't have to be
13140         spilled to stack.
13141
13142 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
13143
13144         * domain.c, assembly.c, domain-internals.h: make some data
13145         const and relocation-free.
13146
13147 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
13148
13149         * object.c, appdomain.c, class-internals.h: introduce the
13150         MonoClassRuntimeInfo structure to hold the info needed to
13151         use a class at runtime. Made mono_class_vtable() lock-free
13152         for all the appdomains.
13153
13154 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
13155
13156         * metadata-internals.h, image.c: introduce a per-image mempool to
13157         be used for memory that has the same lifetime as the image.
13158
13159 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
13160
13161         * domain.c: In mono_init_internal(), instead of selecting the first
13162         runtime version supported by an executable, get a list of all
13163         supported versions and select the one for which an mscorlib exists
13164         (since even if the runtime supports a given version, it doesn't mean
13165         that the framework for that version is installed).
13166         Modified get_runtimes_from_exe to support this behavior.
13167         In supported_runtimes, added information about additional system
13168         assembly versions.
13169         
13170         * assembly.c: Added support for more than one system assembly version
13171         per runtime version. Updated the assembly list.
13172         In mono_assembly_remap_version, removed the initial version check,
13173         since we don't know to which version we need to compare until we
13174         get the version set on which the assembly is based.
13175         Moved the code for loading corlib into the new method
13176         mono_assembly_load_corlib(), so it can be used by the initialization
13177         code.
13178         
13179         * domain-internals.h: Updated data structures and added declaration
13180         for mono_assembly_load_corlib.
13181
13182 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
13183
13184         * reflection.c (resolve_object): Fix the creation of the signature in 
13185         the SignatureHelper case.
13186
13187         * assembly.c (mono_assembly_remap_version): Fix binary search.
13188         
13189 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
13190  
13191         * class.c: Added inheritance check when a method is overloaded (from a
13192         virtual method or when implementing an interface) and when a class is
13193         inherited. Added functions to set a failure for a class and to 
13194         retreive the exception from a failure.
13195         * class-internals.h: Added fields to MonoClass to keep the exception
13196         information status for inheritance (or other exceptions) to be thrown
13197         later (i.e. not at load time).
13198         * object.c: Throw the inheritance SecurityException when a type is to 
13199         be created with either class or method inheritance violations.
13200         * reflection.c|h: Fix when getting declsec from a class. Removed 
13201         unrequired code for class. Improved sanity in parameter naming.
13202         * security-manager.c|h: Added functions to check for class and method
13203         inheritance.
13204
13205 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
13206
13207         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
13208         and has_finalize in dynamic types as well.
13209
13210 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
13211
13212         * culture-info-table.h : fixed currency format for en-GB (and so on).
13213
13214 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
13215
13216         * gc.c: ensure the GC handles never have 0 as a value.
13217
13218 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
13219
13220         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
13221         a pointer to a struct to unmanaged code. Fixes #72625.
13222
13223 2005-02-16  Martin Baulig  <martin@ximian.com>
13224
13225         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
13226
13227 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
13228
13229         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
13230
13231 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
13232
13233         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
13234
13235         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
13236         UnmanagedFunctionPointerAttribute, use it for determining calling convention
13237         etc. Fixes #71471.
13238
13239         * reflection.c (mono_custom_attrs_get_attr): New helper function.
13240
13241         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
13242
13243 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
13244
13245         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
13246         changes to make the current context a field in MonoThread.
13247
13248 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
13249
13250         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
13251         the last change.
13252         
13253         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
13254         extracted from mono_marshal_get_native_wrapper.
13255
13256         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
13257         to create wrappers around native functions.
13258
13259         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
13260         delegates for arbitrary function pointers. Fixes #71472.
13261
13262 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
13263
13264         * threads.c: cleaned up the code a little.
13265
13266 2005-02-15  Martin Baulig  <martin@ximian.com>
13267
13268         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
13269         the data table.
13270
13271         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
13272         allocate larger chunks if needed.
13273
13274 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
13275
13276         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
13277         in by mistake.
13278
13279 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
13280
13281         * domain.c: keep the domains in an array and ensure the domain ids
13282         are kept small, so they can be used as indexes to domain-specific data
13283         with a small memory overhead.
13284
13285 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
13286
13287         * icall.c: Handle byref types in Type icalls. Fixes #72544.
13288
13289 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
13290
13291         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
13292
13293 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
13294
13295         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
13296
13297         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
13298         values.
13299
13300         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
13301         
13302 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
13303
13304         * domain-internals.h: add the hashtable here.
13305
13306         * class-internals.h: Remove `info' from MonoMethod
13307
13308         * domain.c: Add a new hashtable, jit_trampoline_hash
13309
13310 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
13311
13312         * object.c: don't set the value of static fields
13313         (fixes bug#72494).
13314
13315 2005-02-11  Martin Baulig  <martin@ximian.com>
13316
13317         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
13318         (mono_debug_add_method): Silently ignore the method if it's too big.
13319         (mono_debug_add_type): Likewise.
13320
13321 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
13322
13323         * threads.c, appdomain.c: remove #ifdefs from the code.
13324
13325 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
13326
13327         * metadata-internals.h: Added flags to MonoAssembly to cache the most
13328         common security informations. This allows us to stay in unmanaged code
13329         when doing LinkDemand and it's special cases (except for the first 
13330         time for initialization). The flags a very much used with --security.
13331         * reflection.c|h: Added code to get declarative security attributes 
13332         for LinkDemand and InheritanceDemand. This required to refactor the
13333         existing code for Demand.
13334         * security-manager.c|h: Added new method fields for the special cases
13335         of LinkDemand.
13336
13337 2005-02-10  Martin Baulig  <martin@ximian.com>
13338
13339         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
13340         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
13341
13342 2005-02-10  Martin Baulig  <martin@ximian.com>
13343
13344         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
13345         debugging code; this is almost a complete rewrite.
13346
13347         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
13348
13349 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
13350
13351         * domain.c, object.h: expose mono_string_equal () and 
13352         mono_string_hash ().
13353         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
13354         it's implemented in managed code.
13355
13356 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
13357
13358         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
13359         lo leak objects between appdomains.
13360
13361 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
13362
13363         * assembly.c: old compilers compilation fix from 
13364         robertj@gmx.net (Robert Jordan).
13365
13366 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
13367
13368         * class-internals.h: Little reminder for the future.
13369
13370         * debug-helpers.c: Fix up wrapper_type_names
13371
13372 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
13373
13374         * image.c, metadata-internals.h: when loading an image from a file,
13375         mmap all of it and use the same codepaths as when using a
13376         in-memory image: the code is simpler and we use less memory
13377         (both writable and readonly).
13378
13379 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
13380
13381         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
13382         API to alloc runtime data structures that need to be tracked by the
13383         GC and contain pointers.
13384         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
13385         make the code more readable and eventually use a different GC.
13386
13387 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
13388
13389         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
13390         for out arguments.
13391         
13392 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
13393
13394         * object.c: In release_type_locks(), don't release the cctor lock
13395         if it has already been released. This fixes a crash in the
13396         thread5 test.
13397
13398 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
13399
13400         * gc.c, marshal.c, icall.c: register a delegate for finalization
13401         only when the native function pointer has been allocated for it.
13402
13403 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
13404
13405         * object.c: cleaned up some code, allocate objects that are
13406         pointer free with the atomic malloc variant. Allocate memory
13407         for static data from the mempool if it's pointer-free.
13408         Allocate the bounds array at the end of the array data, when needed.
13409         * object-internals.h, object.h: move a private function in a private
13410         header.
13411         * class.c: handle missing case in tracking references in fields.
13412
13413 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
13414
13415         * class.c, class-internals.h: keep track if a type has
13416         reference fields in either the instance or static fields.
13417
13418 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
13419
13420         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
13421         and renamed to MonoRuntimeInfo. Added fields to store the expected
13422         framework assembly version. Changed mono_get_framework_version and
13423         mono_get_runtime_version for a single mono_get_runtime_info method.
13424         
13425         * assembly.c: Added method to remap system assembly versions to the
13426         current executing runtime version. Removed old mapping code.
13427         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
13428         
13429         * icall.c, reflection.c: Track api changes.
13430
13431 2005-02-06  Miguel de Icaza  <miguel@novell.com>
13432
13433         * loader.c (method_from_memberref): Improve error reporting,
13434         produce the class name instead of the typeref/typedef index. 
13435
13436 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
13437
13438         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
13439
13440 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
13441
13442         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
13443         stdcall and charset name mangling.  Reorganize the code and add
13444         some tracing stuff.
13445
13446 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
13447
13448         * monodiet.c: More iters!
13449
13450         * marshal.c: Iter usage.
13451
13452         * icall.c: Iter usage.
13453
13454         * object.c: Use iters.
13455
13456         * debug-helpers.c: More iters
13457
13458 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
13459
13460         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
13461         under win32.
13462
13463 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
13464
13465         * mono-debug-debugger.c: use iters
13466
13467         * class.c, class-internals.h: mono_class_setup_events is static
13468         now
13469
13470         * All callers: use iters
13471
13472 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
13473
13474         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
13475         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
13476
13477 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
13478
13479         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
13480
13481         * marshal.h: Add prototypes for ldfld/stfld_remote.
13482
13483         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
13484         this is called during startup.
13485         
13486 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
13487
13488         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
13489         MonoThreadsSync struct private in monitor.c. Changed the way
13490         MonoThreadsSync is allocated so it's faster and there is no
13491         need to keep track of it with a finalizer and it uses less memory.
13492         This also finally allows us to allocate mono objects as ptrfree when
13493         there are no reference fields.
13494
13495 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
13496
13497         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
13498         disappearing link to the GC interface and use them to simplify
13499         the gchandles code.
13500
13501 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
13502
13503         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
13504         stfld_remote which call mono_load/store_field_new. This allows methods
13505         calling ldfld/stfld wrappers to be AOTed.
13506
13507         * console-io.c: Include sys/filio.h under solaris.
13508         
13509         * console-io.c: Include curses.h if needed correctly.
13510
13511 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
13512         
13513         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
13514         method->klass as well.
13515
13516         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
13517
13518         * class.c (mono_class_init): Switch on lazy initialization of 
13519         methods.
13520
13521         * class.c (mono_class_get_finalizer): Handle the case when the 
13522         finalizer is inherited.
13523
13524 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13525
13526         * console-io.c: <curses.h> is needed by term.h on solaris.
13527
13528 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
13529
13530         * icall.c, class-internals.h, monodiet.c, class.c: Remove
13531         mono_class_setup_properties where possible. Remove this ftn from
13532         the header file, and make it static.
13533
13534 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
13535
13536         * loader.c: Add missing setup_... call.
13537
13538         * class.c: Add missing setup_... calls.
13539
13540         * class.c (mono_class_init): Switch on lazy initialization of 
13541         the generic vtable.
13542         
13543         * class.c (mono_class_init): Fix generics broken by the recent changes.
13544
13545         * monodiet.c (handle_type): Add missing setup_... calls.
13546
13547         * class.c: Back out garbage in previous patch.
13548         
13549         * class.c: Add missing setup_... calls.
13550
13551         * class.c (mono_class_get_method_from_name_flags): Avoid calling
13552         mono_class_setup_methods () if possible.
13553
13554         * class-internals.h (MonoClass): Add 'has_cctor' flag.
13555
13556         * class-internals.h (MonoCachedClassInfo): New structure.
13557
13558         * class.c: Initialize properties and events fields of MonoClass lazily.
13559
13560         * class.c: Add infrastructure for lazily initializing the methods and
13561         vtable fields of MonoClass. Not yet used.
13562
13563         * class.c (mono_class_get_finalizer): New helper function.
13564
13565         * class.c: Add infrastructure for loading some class related data from
13566         an AOT file.
13567
13568         * object.c: Add infrastructure for initializing the vtable from data
13569         in the AOT file.
13570
13571         * gc.c (run_finalize): Use mono_class_get_finalizer ().
13572
13573         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
13574         appropriate initialization function before accessing parts of the
13575         MonoClass structure.
13576
13577         * marshal.c: Fix warnings.
13578         
13579         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
13580
13581         * mono-debug-debugger.c (get_exception_message): Use 
13582         mono_class_get_method_from_name_flags ().
13583
13584 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
13585
13586         * reflection.c, appdomain.c: Replace a few manual searches that
13587         Zoltan missed. (Paolo approved this part of my initial patch).
13588
13589 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
13590
13591         * profiler.c: disable recording statistical events at report time.
13592
13593 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
13594
13595         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
13596         to byteswap arrays of enum values, too (bug #72080).
13597
13598 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
13599
13600         * appdomain.c (set_domain_search_path): Allow this to be called if
13601         domain->setup is not yet set.
13602
13603         * loader.c (mono_method_get_index): New helper function.
13604
13605         * loader.c reflection.c: Use mono_method_get_index ().
13606
13607         * class.c (mono_class_get_method_from_name_flags): New helper method.
13608
13609         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
13610         this.
13611
13612         * class.c (mono_class_get_cctor): New helper method.
13613
13614         * string-icalls.c object.c class.c marshal.c reflection.c: Use
13615         mono_class_get_method () to look up methods.
13616
13617 2005-02-01  Miguel de Icaza  <miguel@novell.com>
13618
13619         * console-io.c: Fix the build, this should work on Windows.
13620
13621 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
13622
13623         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
13624         be set to null to keep things valid
13625
13626 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13627
13628         * icall.c: added Console 2.0 icalls.
13629         * Makefile.am: added console-io.[ch]
13630         * console-io.[ch]: internal calls for Console 2.0 API.
13631
13632 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
13633
13634         * class.c: make sure we consider all the interfaces
13635         when calculating max_interface_id (bug found by
13636         Jeroen Frijters running ikvm).
13637
13638 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
13639
13640         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
13641         valuetype fields to null.
13642
13643         * object.c (set_value): Ditto. Fixes #71669.    
13644
13645 2005-01-31  Martin Baulig  <martin@ximian.com>
13646
13647         * metadata.c (mono_metadata_has_generic_params): New public
13648         function; checks whether something is a generic method.
13649
13650 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
13651
13652         * appdomain.c: fix infinite recursion when adding assemblies.
13653
13654 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
13655
13656         * object.c: Fix small typo to return all items for Environment.
13657         GetCommandLineArgs.
13658
13659 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
13660
13661         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
13662         reflection.c: more domain and assembly-unload related fixes
13663         and memory leaks plugs.
13664
13665 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
13666
13667         * 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.
13668
13669 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
13670
13671         * loader.c (mono_method_signature): Make this method lazy
13672         (mono_get_method_from_token): Don't computate the signature here.
13673
13674         Doing this saves quite a bit of memory. I got 90 kb on starting up
13675         monodoc. It should also save some disk reads on startup.
13676
13677         * *: MonoMethod->signature might be NULL now. You *MUST* use
13678         mono_method_signature.
13679
13680 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
13681
13682         * object.c (mono_runtime_get_main_args): Return an array from the
13683         current domain here. Fixes #71938.
13684
13685 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
13686
13687         * monitor.c: formatting changes to comply with the
13688         mono coding style and remove #ifdefs from the code.
13689
13690 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
13691
13692         * metadata.c, private.h: remove some unneeded data
13693         and use a more compact representation for table schemas.
13694
13695 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
13696
13697         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
13698         to get a better distribution in hash tables.
13699         * *.c: use mono_aligned_addr_hash() where appropriate.
13700         * assembly.c: make var static.
13701
13702 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
13703
13704         * domain-internals.h: Put MonoJitInfo on a diet.
13705
13706         * domain.c: Fix a warning.
13707
13708 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
13709
13710         * gc.c: rework the gc handles code to reuse handles
13711         when freed.
13712
13713 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
13714
13715         * domain.c: fixed long standing bug in mono_string_equal() which
13716         was brought to light with the ldstr changes.
13717
13718 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
13719
13720         * reflection.c: Remove warning by adding missing include for marshal.h
13721
13722 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
13723
13724         * domain.c, object.c: change the ldstr_table to hold
13725         MonoString* as keys: makes the runtime isinterned lookup
13726         faster and simplifies memory management.
13727
13728 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
13729  
13730         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
13731         possible to add imperative security checks before calling the icall.
13732         * reflection.c: Return security attributes on the original MonoMethod
13733         (and not the wrapped one). This fix permissions on icalls.
13734
13735 2005-01-25  Dick Porter  <dick@ximian.com>
13736
13737         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
13738         the check for mktime() support actually test the mktime() return
13739         value.  "Fixes" bug 71682, though the output is still different to
13740         MS.
13741
13742 2005-01-25  Martin Baulig  <martin@ximian.com>
13743
13744         * class.c (mono_class_is_assignable_from): Make this work for
13745         generic instances.
13746
13747 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
13748
13749         * marshal.c (mono_string_utf8_to_builder)
13750         (mono_string_builder_to_utf16): We might not have ownership of the
13751         string. In thise case, we need to create a new buffer.
13752
13753         * object-internals.h (mono_stringbuilder_capacity): sb->str might
13754         be null, in which case, use the default capacity.
13755
13756 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
13757
13758         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
13759         GC events to the profiler.
13760
13761 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
13762
13763         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
13764         if you don't want the GC to run.
13765
13766 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
13767
13768         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
13769         start providing a GC API and keeping different implementations in
13770         their own file.
13771         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
13772
13773 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
13774
13775         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
13776         mmap rather than allocating a huge buffer.
13777         (mono_debug_close_mono_symbol_file): Free the buffer allocated
13778         above.
13779
13780 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
13781
13782         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
13783         and CheckExecutionRights.
13784         * reflection.c|h: Keep the index of the declarative security to be 
13785         used, instead of the pointer, when AOT compiler is used. Also add 
13786         class initialization when requesting demands.
13787         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
13788         CheckExecutionRights. Both properties are now FALSE by default, and
13789         unmodifiable, unless the --security option is used.
13790
13791 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
13792
13793         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
13794         reflection.c: properly refcount images and assemblies, many leaks fixed.
13795
13796 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13797
13798         * threadpool.c: increase the timeout for threads in the thread pool to
13799         10s.  Fixes bug #67159.
13800
13801 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
13802
13803         * class-internals.h: Sun's compiler insists on explicit
13804         signed on bit fields to handle then correctly.
13805
13806 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
13807
13808         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
13809         Make the size of the array fit only the number of invalid path
13810         chars that we have.
13811
13812         * class.c (_mono_class_get): Improve the error reporting when a
13813         class referenced is not found, to assist debugging. 
13814
13815 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
13816
13817         * threads.c: fix off-by-one error.
13818         * domain.c: free data allocated in the domain.
13819
13820 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
13821
13822         * reflection.c (mono_method_body_get_object): Fill out exception info
13823         as well.
13824
13825         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
13826         structure.
13827         
13828 2005-01-19  Martin Baulig  <martin@ximian.com>
13829
13830         * loader.c (mono_get_method_constrained): Make this work again.
13831
13832 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
13833
13834         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
13835         guint16 to match the managed side.
13836
13837         * reflection.c (mono_reflection_body_get_object): Fill out local
13838         variables array.
13839
13840         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
13841         as well.
13842
13843         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
13844         'local_var_sig_token'.
13845
13846 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
13847
13848         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
13849         System.Drawing.
13850
13851         * reflection.c (mono_method_body_get_object): Handle abstract and
13852         runtime methods.
13853
13854 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
13855
13856         * marshal.c, loader.c, class-internals.h, reflection.c:
13857         store the emthod data for a wrapper in an array instead of a list.
13858
13859 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
13860
13861         * marshal.c: change the code to allocate memory more
13862         conservatively for method wrappers.
13863
13864 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
13865
13866         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
13867         fields from MonoClass to the marshal info structure where they belong.
13868
13869 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
13870
13871         * class.c, object.c, class-internals.h, marshal.c: rearrange
13872         some fields and tweak some types to lower memory usage.
13873
13874 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
13875
13876         * threads.c (signal_thread_state_change): Handle the case when the
13877         target thread is the current thread.
13878
13879         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
13880
13881         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
13882         emit_ptr_to_object_conv. 
13883
13884         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
13885         marshalling. Fixes #71352.
13886
13887 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
13888
13889         * metadata.h, blob.h: move table enum to blob.h so it can be included
13890         in any header.
13891         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
13892         cut the size of MonoImage/MonoDynamicImage.
13893
13894 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
13895
13896         * profiler.c (mono_profiler_install_simple): Fix default arguments.
13897
13898 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
13899
13900         * reflection.c, reflection.h, icall.c: add a function to check
13901         if an attribute type is defined for a metadata object.
13902
13903 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
13904
13905         * object-internals.h: Added some needed fields from StringBuilder class.
13906         * marshal.c: Set the maxCapacity when creating a StringBuilder.
13907
13908 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
13909
13910         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
13911         threads before shutting down the runtime.
13912
13913         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
13914
13915 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
13916
13917         * object-internal.h, threads.c: implement stacksize and 
13918         parameterized thread start functionality (requires
13919         matching corlib). Marked broken code for later removal.
13920
13921 2005-01-12  Martin Baulig  <martin@ximian.com>
13922
13923         * class-internals.h (MonoGenericClass): Moved the `initialized'
13924         flag to MonoDynamicGenericClass, removed `init_pending'.
13925         (MonoGenericInst): Added `is_reference' flag.
13926
13927 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
13928
13929         * reflection.c (mono_image_create_pefile): Only set the pe_offset
13930         inside the MSDOS header. Fixes #71201.
13931
13932         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
13933         gc thread.
13934         (mono_domain_finalize): Ditto.
13935
13936 2005-01-12  Martin Baulig  <martin@ximian.com>
13937
13938         * class.c (mono_get_shared_generic_class): Use the cache for
13939         non-dynamic generic classes.
13940
13941         * class-internals.h (mono_class_create_generic_2): Removed
13942         function prototype, this function is now static inside class.c.
13943
13944         * class.c (mono_class_create_generic_2): Made this static, only
13945         call it from mono_class_init() and mono_class_setup_parent().
13946         (collect_implemented_interfaces_aux): Call mono_class_init() on
13947         the interfaces we collect.
13948         (mono_class_setup_vtable): Call mono_class_init (class->parent).
13949
13950 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
13951
13952         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
13953         it a real thread handle.
13954
13955         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
13956         MonoJitExceptionInfo, since each catch clause needs its own variable.
13957         
13958 2005-01-11  Dick Porter  <dick@ximian.com>
13959
13960         * image.c (mono_pe_file_open): New variant on mono_image_open()
13961         that does not set up the CLI metadata; used for FileVersionInfo so
13962         it can get the data for windows binaries too.
13963         
13964         * process.c (process_read_string_block): Don't read off the end of
13965         the StringTable block.
13966
13967         These both fix bug 70766.
13968
13969 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
13970
13971         * gc.c: set some fields to NULL at GC cleanup time.
13972         * threads.c: if we quit the main thread, call exit ().
13973
13974 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
13975
13976         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
13977
13978 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
13979
13980         * threads.h, threads.c, object.c: added accessor and settor for
13981         main_thread. Handle it specially when exiting from it: wait
13982         for other foreground threads to exit.
13983
13984 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
13985
13986         * process.c, verify.c: remove some bloat.
13987
13988 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
13989
13990         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
13991         the calling convention to cdecl under win32.
13992
13993 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
13994
13995         * object.c (mono_object_get_size): New function to get the size of
13996         an object instance.
13997
13998         * profiler.c (simple_allocation): Use above.
13999
14000 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
14001
14002         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
14003         ves_icall_System_AppDomain_getRootDomain (as it's not required to
14004         get an appdomain by it's id and we can't assume the root's id is 0).
14005         * domain-internals.h: Change the function prototype to match.
14006         * icall.c: Change the icall table for AppDomain.
14007
14008 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
14009
14010         * locales.c (string_invariant_compare_char): Only compute
14011         GUnicodeTypes in the case where we need them.  Test for ordinality
14012         first and return if so.
14013
14014         From the commit:
14015
14016                 /*
14017                  * FIXME: here we must use the information from c1type and c2type
14018                  * to find out the proper collation, even on the InvariantCulture, the
14019                  * sorting is not done by computing the unicode values, but their
14020                  * actual sort order.
14021                  */
14022
14023 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14024
14025         * loader.c: for P/Invoke methods, allow the "Internal" shared
14026         library name to refer to the calling process symbol namespace.
14027
14028 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
14029
14030         * Makefile.am: Add the security manager to the build.
14031         * security-manager.c|h: New. Initialization of the security manager.
14032
14033 2005-01-07  Dick Porter  <dick@ximian.com>
14034
14035         * threads.c: 
14036         * monitor.c: Update thread state during Monitor and WaitHandle
14037         waits.  Fixes bug 71031.
14038
14039 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
14040
14041         * reflection.c (property_encode_signature): Correctly handle when the
14042         property has no methods.
14043
14044 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
14045
14046         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
14047         
14048         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
14049         fields from mb, not rmb. Fixes #71017.
14050
14051         * marshal.c (emit_ptr_to_str_conv): Add support for 
14052         ByValTStr -> string conversion. Fixes #71015.
14053
14054         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
14055
14056         * mempool.c (mono_mempool_contains_addr): New helper function.
14057
14058 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
14059
14060         * metadata.c (mono_metadata_compute_size): Fix size calculation of
14061         HasSematics encoded fields.
14062         
14063         * metadata.c (mono_type_to_unmanaged): Improve error message for 
14064         invalid string marshalling.
14065
14066         * metadata.c: Fix warnings.
14067         
14068 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
14069
14070         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
14071         profiler support.
14072
14073 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
14074
14075         * domain.c object.c domain-internals.h: Revert part of r38077 since the
14076         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
14077         tests.
14078
14079 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
14080
14081         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
14082         so methods containing these can be AOTed.
14083
14084 2005-01-03  Martin Baulig  <martin@ximian.com>
14085
14086         * loader.c (find_method): Removed the hack for generic instances.
14087         (method_from_memberref): If our parent is a generic instance, pass
14088         its generic type definition to find_method() and then inflate the
14089         method.
14090         (mono_get_method_constrained): Pass the generic type definition to
14091         find_method() and inflate the method later.
14092
14093         * class-internals.h (MonoStats): Added `generic_class_count'.
14094
14095         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
14096         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
14097
14098         * reflection.c (mono_custom_attrs_from_params): Don't ignore
14099         generic type definitions.
14100
14101 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
14102
14103         * loader.c icall.c: Fix warnings.
14104
14105 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
14106
14107         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
14108         blittable types. Fixes #70864.
14109
14110 2004-12-29  Martin Baulig  <martin@ximian.com>
14111
14112         * icall.c
14113         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
14114
14115         * reflection.c (mono_method_get_object): Create a
14116         "System.Reflection.MonoGenericMethod" for inflated methods; don't
14117         call mono_get_inflated_method().
14118
14119         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
14120
14121 2004-12-27  Martin Baulig  <martin@ximian.com>
14122
14123         * class-internals.h (MonoMethod): Added `is_inflated' flag.
14124         (MonoMethodInflated): Added `inflated' field.
14125
14126         * class.c (mono_class_inflate_generic_method): Don't really
14127         inflate the method here; just set the `is_inflated' flag in the
14128         MonoMethod.
14129         (mono_class_get_inflated_method): Actually inflate the method here
14130         if it's not already inflated; we use the MonoMethodInflated's new
14131         `inflated' field as a cache.
14132
14133 2004-12-26  Martin Baulig  <martin@ximian.com>
14134
14135         * class.c
14136         (inflate_generic_class): Moved some code out of inflate_generic_type().
14137         (mono_class_inflate_generic_method): If we're already inflated,
14138         inflate the context and use the declaring method; ie. make sure
14139         the declaring method of an inflated method is always the generic
14140         method definition.
14141         (mono_class_create_from_typedef): Create
14142         `class->generic_container->context->gclass'.
14143
14144 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
14145
14146         * metadata-internals.h, marshal.c, reflection.c: More
14147         MonoGHashTable->GHashTable.
14148
14149         * domain-internals.h, class.c: Change MonoGHashTable's into
14150         GHashTables for some cases where no gc stuff is used
14151
14152         All users: update apis
14153
14154 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
14155
14156         * metadata.c (builtin_types): Make this `const'. Makes this get
14157         put into the shareable section.
14158         (mono_metadata_init): Casts to make gcc happy.
14159
14160 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
14161
14162         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
14163
14164 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
14165
14166         * icall.c: Added an internal call to retrieve the position and length
14167         of assembly-level declarative security attributes (RequestMinimum, 
14168         RequestOptional and RequestRefuse). This is used by the Assembly class
14169         to re-create the corresponding permission sets.
14170
14171 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
14172
14173         * marshal.c: fix the stelemref wrapper to be type correct
14174         (and faster).
14175
14176 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
14177
14178         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
14179         to do key & 0x7fffffff. Hashtable already does this. It just
14180         results in longer code.
14181
14182 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
14183
14184         * appdomain.c: Bump corlib version.
14185         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
14186         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
14187         * reflection.c|h: Add functions to get declarative security infos
14188         (blob position and length) for assemblies, classes and methods.
14189
14190 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
14191
14192         * reflection.c: sort the constant table (bug #70693).
14193
14194 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
14195
14196         * object-internals.h, threads.c, domain.c: add accessors for
14197         the MonoThread and MonoDomain tls keys.
14198
14199 2004-12-18  Martin Baulig  <martin@ximian.com>
14200
14201         * class.c (inflate_generic_type): If we're inflating a generic
14202         instance, set `ngclass->context->container = context->container';
14203         ie. the container we inflated into.
14204
14205         * metadata.c (mono_metadata_parse_generic_param): Reflect above
14206         inflate_generic_type() changes.
14207
14208 2004-12-17  Martin Baulig  <martin@ximian.com>
14209
14210         * class-internals.h
14211         (MonoGenericClass): Replaced `MonoType *generic_type' with
14212         `MonoClass *generic_class'.  Removed `dynamic_info'; if
14213         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
14214         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
14215
14216 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
14217
14218         * exception.c (mono_exception_from_token): New helper function.
14219
14220 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
14221
14222         * assembly.c (mono_assembly_load_with_partial_name): Call 
14223         mono_assembly_loaded before invoking the preload hooks. Fixes
14224         #70564.
14225
14226         * object-internals.h (MonoThread): Change culture_info and 
14227         ui_culture_info into an array.
14228
14229         * threads.c: Cache culture info objects from more than one appdomain.
14230
14231         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
14232         current UI culture.
14233
14234 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
14235
14236         * threads.h threads.c appdomain.c: Clear the culture_info field of
14237         all threads during unloading if they point to an object in the dying
14238         appdomain.
14239
14240 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
14241
14242         * culture-info.h (TextInfoEntry): New struct
14243         * object-internals.h: sync with managed
14244         * locales.c: fill the `text_info_data' field
14245         * culture-info-tables.h: update
14246
14247 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
14248
14249         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
14250         collector.
14251
14252 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
14253
14254         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
14255         (ves_icall_ModuleBuilder_getMethodToken): Ditto
14256
14257 2004-12-12  Martin Baulig  <martin@ximian.com>
14258
14259         * mono-debug-debugger.c (write_type): If we're an enum and the
14260         builtin types have already been initialized, call mono_class_init().
14261
14262 2004-12-11  Martin Baulig  <martin@ximian.com>
14263
14264         * metadata.c (mono_metadata_load_generic_params): Added
14265         `MonoGenericContainer *parent_container' argument; automatically
14266         compute `container->is_method'; pass the correct owner to
14267         get_constraints().      
14268
14269         * reflection.c (compare_genericparam): Sort the GenericParam table
14270         according to increasing owners. 
14271
14272 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
14273
14274         * profiler.c: allow disabling the default profiler.
14275
14276 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
14277
14278         * decimal.c, icall.c: allow disabling System.Decimal support.
14279
14280 2004-12-09  Marek Safar <marek.safar@seznam.cz>
14281
14282         * reflection.c: Add support for null attribute arguments.
14283
14284 2004-12-09  Martin Baulig  <martin@ximian.com>
14285
14286         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
14287         names to get rid of compiler warnings.
14288
14289 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
14290
14291         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
14292         mono_marshal_load_type_info (). Fixes #69625.
14293         (mono_marshal_get_ptr_to_struct): Likewise.
14294
14295 2004-12-08  Martin Baulig  <martin@ximian.com>
14296
14297         * mono-debug.h: Bumped version number to 47.
14298
14299         * mono-debug-debugger.c
14300         (mono_debugger_event_handler, mono_debugger_event): Take two
14301         guint64 arguments insteed of a gpointer and a guint32.  
14302
14303 2004-12-08  Martin Baulig  <martin@ximian.com>
14304
14305         * debug-mono-symfile.h
14306         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
14307         `address' to `native_offset'.
14308
14309 2004-12-08  Martin Baulig  <martin@ximian.com>
14310
14311         * class.c (mono_class_create_from_typespec): Only inflate if we
14312         either have `context->gclass' or `context->gmethod'.
14313
14314 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
14315
14316         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
14317
14318         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
14319
14320         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
14321
14322         * reflection.c (mono_assembly_get_object): Remove the workaround put
14323         in for the release.
14324         
14325         * appdomain.c: Use the corlib_internal field from MonoAssembly.
14326
14327         * appdomain.c: Bump corlib version.
14328
14329         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
14330         be visible in other appdomains.
14331
14332 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
14333
14334         * threads.c: Interlocked inc and dec for longs were messed up,
14335         use a KISS based impl for this. Fixes 70234
14336
14337 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
14338
14339         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
14340
14341 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
14342
14343         * icall.c: fix to follow policy not to allow struct
14344         arguments in icalls.
14345
14346 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14347
14348         * process.c: make the patch that handles spaces in file paths work
14349         on mono/windows too.
14350
14351 2004-12-06  Martin Baulig  <martin@ximian.com>
14352
14353         * class.c (mono_class_create_generic): Call
14354         mono_class_setup_supertypes() if we're dynamic.
14355         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
14356
14357 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
14358
14359         * object-internals.h: Add new fields to MonoThread.
14360
14361         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14362
14363         * icall.c threads-types.h threads.c: Add new icalls.
14364
14365         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
14366
14367         * object-internals.h (MonoReflectionAssembly): Sync object layout with
14368         managed side.
14369
14370         * appdomain.c: Bump corlib version.
14371
14372         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
14373         internal assemblies. Fixes #69181.
14374
14375 2004-12-05  Martin Baulig  <martin@ximian.com>
14376
14377         * class.c (mono_class_inflate_generic_signature): Make this a
14378         no-op if `context' is NULL or we don't have any type parameters;
14379         also copy `sentinelpos'.        
14380
14381 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
14382
14383         * image.c: Add unbox_wrapper_cache.
14384
14385         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
14386
14387         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
14388         function generator.
14389         
14390         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
14391         Fixes #70173.
14392
14393         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
14394         
14395 2004-12-04  Martin Baulig  <martin@ximian.com>
14396
14397         * loader.c (mono_method_get_signature_full): New public function;
14398         like mono_method_get_signature(), but with an additional
14399         `MonoGenericContext *' argument.
14400
14401         * class.c (mono_class_inflate_generic_signature): Formerly known
14402         as inflate_generic_signature(); make this public.
14403
14404 2004-12-04  Martin Baulig  <martin@ximian.com>
14405
14406         * metadata.c
14407         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
14408         instead of a `MonoGenericContainer *'.  
14409         (mono_metadata_parse_array_full): Likewise.
14410         (mono_metadata_parse_signature_full): Likewise.
14411         (mono_metadata_parse_method_signature_full): Likewise.
14412         (mono_metadata_parse_generic_inst): Likewise.
14413         (mono_metadata_parse_generic_param): Likewise.
14414         (mono_metadata_parse_mh_full): Likewise.
14415         (mono_type_create_from_typespec_full): Likewise.
14416
14417 2004-12-03  Martin Baulig  <martin@ximian.com>
14418
14419         * class-internals.h (MonoGenericContainer): Replaced the
14420         `MonoGenericContext * pointer with a `MonoGenericContext'
14421         structure and made it the first element.
14422
14423 2004-12-03  Martin Baulig  <martin@ximian.com>
14424
14425         * class.c
14426         (inflate_generic_type): Set the `context->container' when creating
14427         a new MonoGenericContext.
14428         (mono_class_inflate_generic_method): Likewise.
14429         (mono_class_create_from_typespec): Just use `context->container'
14430         to get the container.
14431
14432         * loader.c (method_from_methodspec): Set `context->parent' from
14433         `context->container' - and if that's a method container, use its
14434         parent.  Also set the `context->container' when creating a new
14435         MonoGenericContext.
14436         (mono_get_method_from_token): Use just `context->container' to get
14437         the container.
14438
14439         * metadata.c (do_mono_metadata_parse_generic_class): Also set
14440         `gclass->context->container'.
14441
14442         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
14443         the `context->container' when creating a new MonoGenericContext.
14444
14445 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
14446
14447         * reflection.c (compare_genericparam): Sort params with identical
14448         owner by their number. Fixes gen-111 on sparc.
14449
14450 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
14451
14452         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
14453         around the domain changes.
14454
14455         * appdomain.c (mono_domain_unload): Handle the case when the thread
14456         calling Unload is itself being aborted during unloading. Fixes #70022.
14457
14458         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
14459
14460         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
14461         checkpoint_func as an icall so it gets a wrapper.
14462         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
14463         in the cross-appdomain wrappers too.
14464
14465         * threads.c (mono_thread_has_appdomain_ref): Make this public.
14466
14467         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
14468
14469         * reflection.c: Fix some memory leaks.
14470         
14471 2004-12-02  Martin Baulig  <martin@ximian.com>
14472
14473         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
14474
14475         * metadata.c (generic_class_cache): New static hashtable.
14476         (mono_metadata_lookup_generic_class): New public method.
14477
14478 2004-12-02  Martin Baulig  <martin@ximian.com>
14479
14480         * class.c (mono_class_create_from_typedef): Call
14481         mono_class_setup_parent() and mono_class_create_mono_type() before
14482         parsing the interfaces.
14483
14484 2004-12-02  Martin Baulig  <martin@ximian.com>
14485
14486         * metadata.c (generic_inst_cache): New static hashtable.
14487         (mono_metadata_lookup_generic_inst): New public function.
14488         (mono_metadata_inflate_generic_inst): New public function.
14489         (mono_metadata_parse_generic_inst): New public function.
14490         (do_mono_metadata_parse_generic_class): Use the new
14491         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
14492         since this'll also use the cache.
14493
14494         * reflection.c (mono_reflection_bind_generic_method_parameters):
14495         Use mono_metadata_lookup_generic_inst() to use the new cache.
14496
14497         * class.c (inflate_mono_type): Use
14498         mono_metadata_inflate_generic_inst() to inflate a generic
14499         instance; this'll also use the new cache.
14500
14501         * loader.c (method_from_methodspec): Use
14502         mono_metadata_parse_generic_inst() and
14503         mono_metadata_inflate_generic_inst() rather than parsing it
14504         manually, so we can use the new cache.
14505
14506 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
14507
14508         * threads.c (wait_for_tids): Do not incorrectly free threads when 
14509         the wait times out.
14510
14511 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
14512
14513         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
14514         iter->args based on whether parameters are passed in registers (i.e.
14515         MONO_ARCH_REGPARMS is defined)
14516
14517 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
14518
14519         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
14520         the exception message. Fixes #70070.
14521         (method_from_methodspec): Fix warnings.
14522
14523 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14524
14525         * process.c: (complete_path) return the path quoted
14526
14527 2004-12-01  Martin Baulig  <martin@ximian.com>
14528
14529         * class-internals.h (MonoGenericInst): New structure.
14530         (MonoGenericClass): Replaced `type_argc', `type_argv' and
14531         `is_open' with `MonoGenericInst *inst'.
14532         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
14533         `is_open' with `MonoGenericInst *inst'.
14534
14535 2004-11-30  Martin Baulig  <martin@ximian.com>
14536
14537         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
14538
14539         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
14540         to `generic_class_cache'.
14541
14542         * metadata.c
14543         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
14544         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
14545         (mono_generic_inst_is_valuetype): Renamed to
14546         mono_generic_class_is_valuetype().
14547
14548         * class-internals.h
14549         (MonoGenericInst): Renamed to MonoGenericClass.
14550         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
14551         (MonoClass): Renamed `generic_inst' to `generic_class'.
14552         (MonoGenericContext): Renamed `ginst' to `gclass'.
14553
14554         * object-internals.h
14555         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
14556
14557         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
14558         mono_reflection_generic_class_initialize().
14559
14560         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
14561         now known as "System.Reflection.MonoGenericClass".
14562         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
14563
14564 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
14565
14566         * class-internals.h: Added a flag field to MonoClass to cache the
14567         declarative security attributes actions associated with the class.
14568         * domain-internals.h: Added booleans to MonoJitInfo to cache the
14569         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
14570         applicable to the JITted method.
14571         * reflection.c|h: Added functions to extract (as flags) which security
14572         actions are available (declaratively) for a method, class or assembly.
14573         * metadata.c|h: Added functions to search the declarative security
14574         table in the metadata.
14575         
14576 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
14577
14578         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
14579         EXPORTEDTYPES are already in the class name cache, so there is no
14580         need to add extra code here to look at them. Just removes a bit of
14581         cruft.
14582
14583         (ves_icall_System_Environment_get_TickCount): No need for #if
14584         WINDOWS. We already have the code in io-layer.
14585
14586 2004-11-28  Martin Baulig  <martin@ximian.com>
14587
14588         * loader.c
14589         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
14590         Fixes gen-112.cs.
14591
14592 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
14593
14594         * assembly.c (do_mono_assembly_open): Instead of having a
14595         conditional WITH_BUNDLE, incorporate support for bundles here, by
14596         having a global `bundles' variable holding a pointer to the actual
14597         bundles. 
14598
14599         (mono_register_bundled_assemblies): New API call used by the
14600         bundle code. 
14601
14602         See mkbundle.1 for details.
14603         
14604 2004-11-27  Martin Baulig  <martin@ximian.com>
14605
14606         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
14607         the vtable for generic methods.
14608
14609 2004-11-26  Martin Baulig  <martin@ximian.com>
14610
14611         * metadata.c
14612         (mono_metadata_generic_method_hash): New public function.
14613         (mono_metadata_generic_method_equal): Likewise.
14614
14615         * class-internals.h
14616         (MonoGenericContainer): Added `GHashTable *method_hash'.
14617
14618         * reflection.c (ReflectionMethodBuilder): Added
14619         `MonoGenericContainer *generic_container'.
14620         (reflection_methodbuilder_to_mono_method): Don't create a new
14621         MonoGenericContainer each time we're called.
14622         (mono_reflection_bind_generic_method_parameters): Use
14623         `container->method_hash' to cache the results so we don't create a
14624         different method if we're called several times with the same
14625         arguments.
14626
14627         * loader.c (method_from_methodspec): Use the new
14628         `container->method_hash' here, too.
14629
14630 2004-11-26  Martin Baulig  <martin@ximian.com>
14631
14632         * class.c (inflate_generic_signature): Correctly compute
14633         `res->has_type_parameters'.
14634         (mono_class_vtable): Use the `has_type_parameters' flag to
14635         determine whether we're a generic method.
14636
14637         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
14638
14639 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
14640
14641         * object.c (mono_runtime_run_main): Fix a small memory leak.
14642
14643 2004-11-25  Martin Baulig  <martin@ximian.com>
14644
14645         * class.c (set_generic_param_owner): Fixed the loop.
14646
14647 2004-11-25  Martin Baulig  <martin@ximian.com>
14648
14649         * object.c (mono_class_vtable): Don't create any JIT wrappers for
14650         generic methods.
14651
14652 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
14653
14654         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
14655         names. Fixes #69787.
14656
14657 2004-11-24  Martin Baulig  <martin@ximian.com>
14658
14659         * class.c (mono_class_create_generic_2): If we don't have a
14660         `ginst->parent', inflate `gklass->parent' to get our parent.
14661
14662 2004-11-24  Martin Baulig  <martin@ximian.com>
14663
14664         * reflection.c (compare_genericparam): Correctly sort the
14665         GenericParam table; fixes #69779.
14666
14667 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
14668
14669         * reflection.c: When writing a PE file, don't create a huge
14670         buffer in memory. Just write the arrays we have to the file.
14671         This reduces memory usage.
14672
14673         * metadata-internals.h: MonoDynamicStream pefile is no longer used
14674         globally.
14675
14676 2004-11-17  Martin Baulig  <martin@ximian.com>
14677
14678         * class.c (mono_class_init): Don't setup `class->parent' for
14679         dynamic instances; moved this to mono_class_generic_2().
14680         (mono_class_create_generic): Also set `klass->inited' for dynamic
14681         generic instances.
14682         (mono_class_create_generic_2): Don't do anything for dynamic
14683         generic instances.  Set `klass->parent' here and also call
14684         mono_class_setup_parent() here. 
14685
14686         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
14687         `MonoType *parent' argument; set `ginst->parent' before calling
14688         mono_class_create_generic_2(), so we set the correct parent.
14689
14690 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
14691
14692         * reflection.c: allow getting attributes from ModuleBuilder
14693         (used by ikvm).
14694
14695 2004-11-17  Martin Baulig  <martin@ximian.com>
14696
14697         * class.c (mono_class_create_from_typedef): If a type parameter is
14698         inherited from an outer class, set its owner to that class.
14699
14700 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
14701
14702         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
14703           for (int*) written size. This fixes bug #69592.
14704
14705 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
14706
14707         * icall.c: Added IsAuthenticodePresnet internal call.
14708         * image.c|h: New function that check a MonoImage for an Authenticode
14709         signature in the certificate PE data directory.
14710         * security.c|h: New internal call to ask the runtime if an 
14711         Authenticode signature seems referenced in the PE header.
14712
14713 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
14714
14715         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
14716
14717         * reflection.c (mono_image_create_pefile): Free the assembly streams
14718         after writing out the assembly file.
14719
14720         * object.c (mono_runtime_run_main): Fix small memory leak.
14721
14722         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
14723         property access modifiers. Fixes #69389.
14724
14725 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
14726
14727         * domain.c, object.c, object-internals.h, domain-internals.h,
14728         object.h, marshal.c: keep dynamic code info per domain.
14729
14730 2004-11-15  Martin Baulig  <martin@ximian.com>
14731
14732         * class.c (mono_type_get_name_recurse): Put type arguments in
14733         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
14734         see bug #68387.
14735
14736 2004-11-15  Martin Baulig  <martin@ximian.com>
14737
14738         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
14739         (mono_class_setup_vtable): When computing `the_cname' for a
14740         generic instance, don't include the namespace since we'd otherwise
14741         add it twice.
14742
14743 2004-11-15  Martin Baulig  <martin@ximian.com>
14744
14745         * class.c (mono_class_create_generic): Changed return type to void.
14746         (mono_class_create_generic_2): New public function; setup
14747         `class->method', `class->field' and `class->interfaces' here
14748         instead of in mono_class_init().
14749
14750         * class.h (mono_class_create_generic): Moved to class-internals.h.
14751
14752 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
14753
14754         * reflection.c (mono_image_create_pefile): take a file HANDLE.
14755         rather than writing to memory, write to this file. Right now,
14756         we are just writting into a buffer, and copying that. However
14757         we can avoid the buffer later.
14758
14759         (mono_dynamic_stream_reset): new function
14760
14761         * icall.c, object-internals.h: update for the above.
14762
14763 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
14764
14765         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
14766         have been using gc'd memory. First it is slower, unlikely
14767         the comment in the source code said, secondly, it increases
14768         our footprint to do it in the gc.
14769
14770         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
14771         the method so that it does not have to copy to managed code.
14772
14773 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
14774
14775         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
14776
14777 2004-11-12  Martin Baulig  <martin@localhost>
14778
14779         * reflection.c (mono_image_create_token): Allow generic method
14780         definitions here, since they may appear in an `.override'; see
14781         gen-98/gen-99 for an example.
14782
14783 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
14784
14785         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
14786         #69365.
14787
14788         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
14789         descriptive.
14790
14791 2004-11-11  Martin Baulig  <martin@ximian.com>
14792
14793         * class.c (mono_class_setup_vtable): In an explicit interface
14794         implementation, the method name now includes the arity.
14795
14796 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
14797
14798         * object.c (mono_array_full_copy): Fix warning.
14799
14800 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
14801
14802         * appdomain.c: Removed look_for_method_by_name(). Use the new method
14803         mono_class_get_method_from_name() instead.
14804         
14805         * class-internals.h: Added two new types of wrappers. 
14806         Added MonoRemotingTarget enum. Added new trampoline function type, which
14807         takes an additional MonoRemotingTarget value as parameter, so it is
14808         possible to request a trampoline for a specific target.
14809         
14810         * class.c: Added new mono_class_get_method_from_name() method.
14811         
14812         * class.h: In MonoRemoteClass, we can have now to vtables, one for
14813         general remoting sinks and one specific for cross domain calls.
14814         
14815         * debug-helpers.c: Added new wrapper names.
14816         
14817         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
14818         of a remote class.
14819         
14820         * image.c: Porperly delete value objects form the remoting invoke hashtable.
14821         
14822         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
14823         with several other methods (mono_marshal_get_xappdomain_dispatch,
14824         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
14825         and others) can generate a fast remoting wrapper for cross domain calls.
14826         More information can be found in docs/remoting.
14827         Other changes: Removed mono_find_method_by_name, and used
14828         mono_class_get_method_from_name instead.
14829         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
14830         is stored in the remoting invoke hashtable.
14831         
14832         * marshal.h: published the new method for getting the xdomain wrapper,
14833         and also added a method for getting the adequate wrapper for a given
14834         method and target.
14835         
14836         * object-internals.h, object.c: Added a couple of methods for capying and
14837         cloning arrays.
14838         Modified mono_install_remoting_trampoline, which takes the new remoting
14839         trampoline that has a remoting target as parameter.
14840         mono_class_proxy_vtable now also takes a remoting target as parameter, and
14841         will return the most suitable vtable for the target.
14842         Added mono_remote_class_vtable, which returns the vtable of a remote class
14843         (which can be the normal remoting vtable or the xdomain vtable).
14844         
14845         * threads.c: the xdomain invoke and dispatch wrappers must also be
14846         protected against interruptions.
14847
14848 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14849
14850         * icall.c: use memmove in BlockCopyInternal when the source and
14851         destination arrays are the same.
14852
14853 2004-11-09  Martin Baulig  <martin@ximian.com>
14854
14855         * class-internals.h (MonoGenericContainer): Removed `method' and
14856         `signature', replaced them with `is_method' and `is_signature'
14857         flags.  Added `context'.
14858
14859         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
14860         instead of a `MonoGenericContainer *'.
14861
14862         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
14863         for dynamic type parameters.
14864         (mono_metadata_load_generic_params): Setup `container->context'.
14865
14866         * reflection.c (mono_reflection_setup_generic_class): Setup
14867         `tb->generic_container->context'.
14868         (do_mono_reflection_bind_generic_parameters): Use
14869         mono_class_inflate_generic_type() to correctly inflate types,
14870         rather than using our own hack just for MONO_TYPE_VAR.
14871
14872 2004-11-09  Martin Baulig  <martin@ximian.com>
14873
14874         * class.c (mono_class_inflate_generic_method): Small fix; don't
14875         crash here.
14876
14877         * icall.c
14878         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
14879         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
14880         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
14881         (ves_icall_Type_BindGenericParameters): Likewise.
14882         (ves_icall_Type_get_IsGenericInstance): Likewise.
14883         (ves_icall_Type_GetGenericParameterPosition): Likewise.
14884         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
14885         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
14886         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
14887
14888 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
14889
14890         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
14891         assembly versions and public key tokens. Fixes #69113.
14892
14893 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
14894
14895         * metadata.c: fix bug introduced with the type cache changes
14896         on 2004-11-06.
14897
14898 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
14899
14900         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
14901         the MonoClass pointer instead of the token in exception clauses.
14902         * reflection.c: updates for the above and make the code not depend
14903         on the structure of MonoExceptionClause.
14904
14905 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
14906
14907         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
14908         Add support for dynamic assemblies. Fixes #69114.
14909
14910         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
14911
14912 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
14913
14914         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
14915         since most only those methods use it. the code member of
14916         MonoMethodPInvoke was dead, so that can be removed too. Also,
14917         remove inline_count (again, not used), and move slot so that it
14918         can share bits with some other flags. This saves 8 bytes in the
14919         structure and gives us about 50 kb back for mcs helloworld.cs
14920
14921         * *.[ch]: Do naming changes for the above.
14922
14923         * loader.c (mono_method_get_header): Lazily init the header
14924         on first access.
14925         (mono_get_method_from_token): don't init the header here
14926         (mono_free_method): the header may never be allocated
14927
14928         Overall, this saves 150 kb of unmanaged allocations
14929         for mcs helloworld.cs. That accounts for 10% of the unmanaged
14930         memory at runtime.
14931         
14932         * loader.c, loader.h (mono_method_get_header): new accessor.
14933
14934         * *.[ch]: use the above method. Prepares us to lazily load
14935         the header.
14936
14937         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
14938         three warnings, which are actual bugs (see 69206).
14939
14940         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
14941         unused. Saves a cool 4 bytes / method.
14942
14943 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
14944
14945         * metadata.c (builtin_types): Add types for System.Object here.
14946         (mono_metadata_parse_type_full): Cache MonoType*'s that are
14947         for a class or valuetype from klass->this_arg or klass->byval_arg.
14948
14949         On mcs for a hello world, this gets us down from 21836 MonoType's
14950         to 14560.
14951
14952         (mono_metadata_free_type): Account for the above change.
14953
14954 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
14955
14956         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
14957         exception instead of asserting if name is null.
14958         (ves_icall_System_AppDomain_GetData): Ditto.
14959
14960 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
14961
14962         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
14963         EnumBuilder.
14964
14965         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
14966         Return NULL when the domain does not have entry_assembly set.
14967
14968         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
14969         Add a 'resource_modules' argument.
14970         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
14971
14972         * reflection.c (mono_reflection_create_runtime_class): Move setting
14973         of wastypebuilder here, so mono_get_type_object () returns a MonoType
14974         for enums too.
14975
14976         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
14977         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
14978         Throw an ArgumentNullException if 'ptr' is null.
14979
14980         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
14981         assemblies here. Fixes #69020.
14982
14983 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
14984
14985         * reflection.c (build_compressed_metadata): Fix the previous patch for
14986         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
14987         the stack.
14988
14989 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
14990
14991         * assembly.c (mono_assembly_names_equal): Allow a match if one of
14992         the cultures is false. Fixes #69090.
14993
14994         * reflection.c (build_compressed_metadata): Fix invalid memory read 
14995         detected by valgrind.
14996         
14997         * reflection.c (mono_reflection_get_type): Avoid triggering a 
14998         TypeResolve multiple times for the same type. Fixes #65577.
14999
15000 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
15001
15002         * marshal.c: Avoid using ldftn to call managed functions. It is
15003         much slower than just a call.
15004
15005         * reflection.c (mono_module_get_object): free the basename we
15006         allocate here from glib.
15007         
15008         * reflection.c (ensure_runtime_vtable): make sure to free
15009         overrides.  Also, we were allocating an array of MonoMethod not an
15010         array of MonoMethod*.
15011
15012         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
15013
15014         * image.c (mono_image_close): free image->guid here.
15015
15016 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
15017
15018         * reflection.c: Fix some spec conformance issues with the PE file
15019         structures so mcs compiled apps run on the Net 2.0 beta.
15020
15021 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
15022
15023         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
15024         Implement this. Fixes #67264.
15025
15026         * debug-helpers.h debug-helpers.c marshal.c: Move 
15027         mono_find_method_by_name to debug-helpers.c.
15028
15029 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
15030
15031         * object.c (mono_release_type_locks): type_initialization_hash is
15032         a GHashTable.
15033
15034         * reflection.c object.c object-internals.h: Fix warnings.
15035
15036         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
15037         without accessors. Fixes #61561.
15038
15039         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
15040         application base from the root domain if not set. Fixes #65641.
15041         (mono_runtime_init): Fix warning.
15042
15043 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15044
15045         * appdomain.c: call mono_thread_pool_init.
15046         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
15047         of worker threads based on the number of CPUs and the environment
15048         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
15049         for non-windows (windows) systems.
15050
15051 2004-10-27  Chris Toshok  <toshok@ximian.com>
15052
15053         * mono-debug-debugger.c (write_class): don't call mono_class_init
15054         here, as even with the check for (!klass->init_pending), we get
15055         into a situation where we're hitting cycles in class
15056         initialization.  Fixes #68816.
15057
15058 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
15059
15060         * image.c: Avoid overwriting values in the loaded_images_hash when an
15061         assembly is loaded multiple times. Fixes #61152.
15062
15063         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
15064         so multiple satellite assemblies for the same name can be loaded.
15065         Fixes #68259.
15066
15067         * mono_domain_assembly_preload: Actually return the loaded assembly, 
15068         not NULL.
15069
15070         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
15071         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
15072
15073         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
15074         pending finalizers are not invoked after the appdomain has been 
15075         unloaded. Fixes #67862.
15076
15077 2004-10-22  Martin Baulig  <martin@ximian.com>
15078
15079         * mono-debug-debugger.c
15080         (mono_debugger_runtime_invoke): Don't box valuetypes.
15081
15082 2004-10-22  Chris Toshok  <toshok@ximian.com>
15083
15084         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
15085         don't hide private methods.
15086
15087 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
15088
15089         * icall.c: Allows the runtime to "share" (when known) the public key
15090         token of an assembly. This avoid the need to recalculate the token 
15091         (from the public key) in managed code.
15092
15093 2004-10-21  Chris Toshok  <toshok@ximian.com>
15094
15095         * debug-helpers.c (append_class_name): argh, revert last patch.
15096         
15097 2004-10-21  Chris Toshok  <toshok@ximian.com>
15098
15099         * debug-helpers.c (append_class_name): use '+' as the delimiter,
15100         not '/', so that it matches what the debugger uses to look up
15101         methods.
15102
15103 2004-10-21  Martin Baulig  <martin@ximian.com>
15104
15105         * mono-debug-debugger.c (mono_debugger_throw_exception): New
15106         public method; this is called each time an exception is thrown and
15107         allows the debugger to use exception catch points.
15108
15109 2004-10-21  Martin Baulig  <martin@ximian.com>
15110
15111         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
15112         the stack pointer and the exception object in some struct and pass
15113         that to the debugger.
15114
15115 2004-10-21  Chris Toshok  <toshok@ximian.com>
15116
15117         * mono-debug-debugger.c (do_write_class): add instance/static
15118         event support.  We don't expose "raise" or "other" yet.
15119         (event_is_static): new method.
15120
15121 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
15122
15123         * mono-debug-debugger.c
15124         (mono_debugger_handle_exception): Remove
15125         bogus return value for fussy compilers.
15126
15127 2004-10-20  Martin Baulig  <martin@ximian.com>
15128
15129         * mono-debug-debugger.c
15130         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
15131         (mono_debugger_handled_exception): Likewise.
15132
15133 2004-10-20  Martin Baulig  <martin@ximian.com>
15134
15135         * mono-debug-debugger.h (MonoDebuggerEvent): Added
15136         MONO_DEBUGGER_EVENT_EXCEPTION.
15137
15138         * mono-debug-debugger.c (mono_debugger_handle_exception): New
15139         public function to send the debugger a notification for an
15140         exception and inform it about a catch/finally clause.
15141
15142 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
15143
15144         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
15145         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
15146         fix 2.95 build. 
15147
15148         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
15149
15150 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
15151
15152         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
15153         marshalled as [In,Out]. Fixes #58325.
15154
15155 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
15156
15157         * reflection.c (mono_method_body_get_object): Implement some fields.
15158
15159 2004-10-12  Martin Baulig  <martin@ximian.com>
15160
15161         * reflection.c (mono_reflection_bind_generic_parameters): Small
15162         fix, correctly retrieve our parent from a generic instance.
15163
15164 2004-10-12  Martin Baulig  <martin@ximian.com>
15165
15166         * metadata.c (mono_metadata_generic_param_equal): We always have
15167         an owner.
15168
15169         * class.c
15170         (mono_class_from_generic_parameter): We need to have an owner.
15171         (my_mono_class_from_generic_parameter): Likewise.
15172
15173         * reflection.c (mono_reflection_setup_generic_class): Renamed to
15174         mono_reflection_create_generic_class() and added a new
15175         mono_reflection_setup_generic_class().  
15176         (mono_reflection_initialize_generic_param): If we're a nested
15177         generic type and inherited from the containing class, set our
15178         owner to the outer class.
15179
15180 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
15181
15182         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
15183
15184         * reflection.c (mono_method_body_get_object): New function to create
15185         a MethodBody object.
15186
15187         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
15188
15189 2004-10-11  Martin Baulig  <martin@ximian.com>
15190
15191         * metadata.c (_mono_metadata_type_equal): Renamed to
15192         do_mono_metadata_type_equal() and made static.
15193
15194 2004-10-11  Martin Baulig  <martin@ximian.com>
15195
15196         * appdomain.c: Bump corlib version number to 28.
15197
15198 2004-10-10  Martin Baulig  <martin@ximian.com>
15199
15200         * class-internals.h
15201         (MonoGenericInst): Added `MonoGenericContainer *container'.
15202         (MonoGenericMethod): Likewise.
15203         (MonoGenericContext): Likewise.
15204         (MonoGenericParam): Added `MonoGenericContainer *owner'.
15205
15206         * metadata.c
15207         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
15208         (do_mono_metadata_parse_generic_inst): Likewise.
15209         (mono_metadata_parse_type_full): New public method.  This is the actual
15210         mono_metadata_parse_type() implementation - with an additional
15211         `MonoGenericContainer *' argument.
15212         (mono_metadata_parse_array_full): Likewise.
15213         (mono_metadata_parse_signature_full): Likewise.
15214         (mono_metadata_parse_method_signature_full): Likewise.
15215         (mono_metadata_parse_mh_full): Likewise.
15216         (mono_type_create_from_typespec): Likewise.
15217         (mono_metadata_interfaces_from_typedef_full): New public method;
15218         this is similar to the other _full() methods, but we take a
15219         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
15220         (mono_metadata_parse_generic_param): Take an additional
15221         `MonoGenericContainer *' argument and lookup the MonoGenericParam
15222         from that container.
15223         (mono_metadata_generic_param_equal): New static method to compare
15224         two type parameters.
15225         (_mono_metadata_type_equal): New static method; takes an
15226         additional `gboolean signature_only' argument - if true, we don't
15227         compare the owners of generic parameters.
15228         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
15229         with a TRUE argument - do a signature-only comparision.
15230
15231         * loader.c: Use the new _full() methods and pass the
15232         MonoGenericContainer to them.
15233
15234         * object-internals.h (MonoReflectionTypeBuilder): Added
15235         `MonoGenericContainer *generic_container' field.
15236         (MonoReflectionMethodBuilder): Likewise.
15237
15238 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
15239
15240         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
15241         case initial images of dynamic assemblies.
15242
15243         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
15244
15245         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
15246
15247         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
15248         length of event->other array.
15249         (typebuilder_setup_events): Ditto.
15250
15251         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
15252         'assembly_by_name' and add an 'assemblies' list.
15253
15254         * assembly.h assembly.c: Add a new search hook for determining whenever
15255         an assembly is already loaded. Use this instead of searching in the
15256         loaded_assemblies list.
15257
15258         * domain.c appdomain.c: Implement the new search hook so loaded 
15259         assemblies are now scoped by appdomain. Fixes #67727.
15260
15261 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
15262
15263         * threads.c (mono_thread_attach): Initialize synch_lock field so
15264         mono_thread_detach works again.
15265
15266         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
15267         'lib' too. Fixes #63130.
15268
15269 2004-10-06  Jackson Harper  <jackson@ximian.com>
15270
15271         * culture-info-tables.h: regenerated.
15272
15273 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
15274
15275         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
15276         implemented by other interfaces in the result. Fixes #65764.
15277         
15278         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
15279         Handle unloadable modules without crashing.
15280
15281         * image.c (load_modules): Revert the previous patch since modules must
15282         have a fixed index inside the array.
15283         
15284         * image.c (load_modules): Don't include native modules in the modules
15285         array.
15286
15287 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
15288
15289         * reflection.h: Add param_defaults field.
15290
15291         * reflection.c: Add support for parameter defaults in dynamic methods.
15292         Fixes #64595.
15293
15294         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
15295         an empty string when a type has no namespace. Fixes #64230.
15296
15297 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
15298
15299         * tabledefs.h: Added "internal" security actions to support non-CAS
15300         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
15301         Note: they do not seems to be used anymore in 2.0 (new metadata format)
15302
15303 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
15304
15305         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
15306         constructor of abstract class. Fixes #61689.
15307
15308 2004-10-04  Martin Baulig  <martin@ximian.com>
15309
15310         * class-internals.h (MonoGenericContainer): New type.
15311         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
15312         `MonoGenericContainer *generic_container'.
15313         (MonoClass): Replaced `gen_params' and `num_gen_params' with
15314         `MonoGenericContainer *generic_container'.
15315
15316         * metadata.c (mono_metadata_load_generic_params): Return a
15317         `MonoGenericContainer *' instead of a `MonoGenericParam *';
15318         removed the `num' argument.
15319
15320 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
15321
15322         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
15323         for dynamic images.
15324
15325         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
15326         machine fields.
15327
15328         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
15329
15330         * reflection.c: Save pe_kind and machine values into the generated
15331         image file.
15332
15333         * appdomain.c: Bump corlib version number.
15334
15335         * object-internals.h: Reorganize layout of LocalBuilder.
15336
15337         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
15338         New helper function.
15339
15340         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
15341         created MonoType for dynamic types. Fixes #66180.
15342
15343 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
15344
15345         * threadpool.c: the ares hashtable needs a critical section around it.
15346         this prevents some nasty segfaults
15347
15348 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
15349
15350         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
15351         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
15352         bug 67324).
15353         
15354 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
15355
15356         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
15357         
15358 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
15359
15360         * image.c: Always canonicalize image file names, to avoid loading
15361         the same assembly twice when referenced using a relative path.
15362
15363 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
15364
15365         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
15366
15367         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
15368
15369         * marshal.c: Fix warnings.
15370
15371 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
15372
15373         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
15374         attempting to marshal the delegate_trampoline as the method_addr.
15375         This patch has a static hashtable of marshalled delegates so that 
15376         we can map delegate_trampoline addresses back to delegates.  This
15377         allows a delegate passed to managed code to be passed back into native
15378         code.  Fixes #67039
15379
15380 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
15381
15382         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
15383
15384         * reflection.c (method_encode_code): Align method headers properly.
15385         Fixes #66025.
15386
15387 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
15388
15389         * marshal.c: In the runtime invoke wrapper, reset the abort
15390         exception if it is cached. This avoids the automatic rethrowal of 
15391         the exception after the catch of the wrapper. Also check for pending
15392         interruptions before calling the managed method. This is done using
15393         the new method emit_thread_force_interrupt_checkpoint, since the
15394         normal checkpoint method is ignored when running the invoke wrapper.
15395         * object.c: If the abort exception is rethrown, set the abort_exc
15396         field of the thread, so it will be rethrown aftere every catch.
15397         * threadpool.c: Only run an interruption checkpoint if what has been
15398         requested is a stop of the thread (aborts will be ignored).
15399         * threads.c: By default, a thread will now never be interrumped while
15400         running the runtime invoke wrapper (this ensures that runtime_invoke
15401         will always return to the caller if an exception pointer is provided).
15402         There is a new special method mono_thread_force_interruption_checkpoint()
15403         to force an interruption checkpoint even if running a protected
15404         wrapper, which is used by the same runtime invoke wrapper to do a check
15405         at a safe point.
15406
15407 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
15408
15409         * object.c, object-internals.h: Implemented mono_release_type_locks,
15410         which releases the cctor locks held by a thread.
15411         * threads.c, threads.h: In thread_cleanup, release cctor locks held
15412         by a thread. Added mono_thread_exit() method to be used to safely stop
15413         a thread.
15414
15415 2004-09-28  Raja R Harinath  <rharinath@novell.com>
15416
15417         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
15418         Move null check before dereference.  Avoid indexing beyond the end
15419         of the 'modules' array.
15420
15421 2004-09-28  Raja R Harinath  <rharinath@novell.com>
15422
15423         * metadata-internals.h (MonoImage): Add module_count field.
15424         * image.c (load_modules): Set image->module_count.
15425         (mono_image_load_file_for_image): Use image->module_count.
15426         * reflection.c (mono_image_load_module): Append to image->modules array 
15427         of dynamic assembly.
15428         (mono_module_get_object): Fix loop to actually increment index.
15429         Use image->module_count.
15430         * assembly.c (mono_assembly_load_references): Use image->module_count.
15431         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
15432         Likewise.
15433
15434 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
15435
15436         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
15437         Avoid assert on generic types.
15438
15439 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
15440
15441         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
15442
15443         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
15444
15445         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
15446         function to convert a MarshalSpec structure to its managed counterpart.
15447
15448         * reflection.c: Fix warnings.
15449         
15450         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
15451         field.
15452
15453         * icall.c (mono_create_icall_signature): Fix build.
15454
15455 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
15456
15457         * icall.c: Add MakePointType icall.
15458
15459         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
15460         warnings.
15461
15462 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15463
15464         * threadpool.c: reuse allocated slots in the queue.
15465
15466 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
15467
15468         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
15469
15470         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
15471
15472         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
15473         previous change.
15474
15475         * tabledefs.h: Add constants for pinvoke attributes BestFit and
15476         ThrowOnUnmappableChar.
15477
15478         * icall.c (ves_icall_Type_GetPacking): New icall.
15479
15480 2004-09-24  Martin Baulig  <martin@ximian.com>
15481
15482         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
15483
15484 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15485
15486         * appdomain.c:
15487         (mono_domain_set): allow setting a domain that is being unloaded.
15488         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
15489         being unloaded.
15490
15491 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
15492
15493         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
15494         the GetCustomAttributes icall.
15495
15496 2004-09-23  Martin Baulig  <martin@ximian.com>
15497
15498         * object-internals.h (MonoReflectionGenericParam): Replaced
15499         'has_ctor_constraint', `has_reference_type' and `has_value_type'
15500         with `guint32 attrs'.
15501
15502 2004-09-23  Martin Baulig  <martin@ximian.com>
15503
15504         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
15505
15506 2004-09-23  Martin Baulig  <martin@ximian.com>
15507
15508         * object-internals.h (GenericParameterAttributes): New enum.
15509
15510 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
15511
15512         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
15513         
15514         * class.c (init_events): Fill out event->other field.
15515
15516         * class.c: Fix warnings.
15517
15518         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
15519
15520 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
15521
15522         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
15523         walk which doesn't supply the IL offset.
15524
15525 2004-09-22  Martin Baulig  <martin@ximian.com>
15526
15527         * reflection.c (mono_reflection_setup_internal_class): If we're
15528         System.ValueType, System.Object or System.Enum, set
15529         `klass->instance_size' and create the vtable.
15530         (mono_reflection_create_internal_class): If we're an enum type,
15531         get the base class from our current corlib.
15532
15533 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
15534
15535         * reflection.h (MonoResolveTokenError): New type.
15536
15537         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
15538         icall.
15539
15540         * icall.c: Add an 'error' argument to the ResolveToken icalls.
15541
15542 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
15543
15544         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
15545         Support also calling constructors, but only for already allocated objects.
15546
15547 2004-09-17  Geoff Norton <gnorton@customerdna.com>
15548
15549         * reflection.c (type_get_qualified_name): If the klass is null
15550         return the typename to avoid a NullRefEx.
15551         (encode_cattr_value): Get the qualified name of the boxed type,
15552         not the underlying enumtype.  Fixes #62984.
15553
15554 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
15555
15556         * marshal.c: Fix problems with previous checkin.
15557
15558 2004-09-21    <vargaz@freemail.hu>
15559
15560         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
15561         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
15562
15563         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
15564
15565 2004-09-21  Geoff Norton <gnorton@customerdna.com>
15566
15567         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
15568         should only return a type for pointers, arrays, and passbyref types.
15569         Fixes bug #63841.
15570
15571 2004-09-21  Martin Baulig  <martin@ximian.com>
15572
15573         * domain.c (mono_debugger_check_runtime_version): New public
15574         function.
15575
15576         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
15577
15578 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
15579
15580         * reflection.c: Added missing sort to the declarative security 
15581         attributes table. MS implementation stops seeing the attributes if the
15582         token number regress in the table (as shown by ildasm and permview).
15583
15584 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
15585
15586         * object-internals.h (MonoReflectionModule): Add 'token' field.
15587         
15588         * reflection.c (mono_reflection_get_token): Add support for Module
15589         and Assembly.
15590         (mono_module_get_object): Set 'token' field.
15591         (mono_module_file_get_object): Set 'token' field.
15592
15593         * icall.c: Add new Assembly and Module icalls.
15594
15595         * appdomain.c: Bump corlib version.
15596
15597 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
15598
15599         * loader.h loader.c class.h class.c: Add helper functions for obtaining
15600         tokens of metadata objects.
15601
15602         * reflection.h reflection.c (mono_reflection_get_token): New function
15603         to obtain the token of a metadata object.
15604
15605         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
15606
15607 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
15608
15609         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
15610         
15611         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
15612
15613 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
15614
15615         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
15616         * object-internals.h: Added 3 MonoArray* members to MonoReflection
15617         AssemblyBuilder to access the permissions set in the class lib.
15618         * reflection.c: Added security attributes encoding step in 
15619         mono_image_build_metadata.
15620         * tabledefs.h: Added new security actions defined in 2.0:
15621         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
15622
15623 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
15624
15625         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
15626         macro parameter.
15627
15628 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
15629  
15630         * locales.c: nullify the ICU_collator member of CompareInfo when it is
15631           finalized. There where random SIGSEVs at program termination, when
15632           an object being finalized was trying to do a string comparison and
15633           the current culture was already finalized.
15634  
15635 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15636
15637         * threads.c: call thread_cleanup before finishing the thread if we get
15638         there.
15639
15640 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
15641
15642         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
15643         assemblies from the parent. Fixes #65665.
15644
15645 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
15646
15647         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
15648         modifiers.
15649
15650 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
15651
15652         * reflection.h: add prototype for mono_get_dbnull_object
15653         * reflection.c: add prototypes for get_default_param_value_blobs 
15654         and mono_get_object_from_blob for fussier compilers
15655
15656 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
15657  
15658         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
15659         false deadlock checks in class initialization.
15660  
15661 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
15662
15663         * image.c (mono_image_addref): Fix comment.
15664
15665         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
15666         possible.
15667
15668 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
15669
15670         * reflection.c (mono_param_get_objects): Modified to return
15671         ParameterInfo.DefaultValue object.
15672
15673         (get_default_param_value_blobs):
15674         (mono_get_object_from_blob):
15675         (mono_get_dbnull_object): New helper routines. 
15676
15677         * object.c (mono_get_constant_value_from_blob): New helper routine
15678         carved out from get_default_field_value ()
15679
15680         * object-internals.h (mono_get_constant_value_from_blob): Added
15681         function declaration.
15682
15683 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
15684
15685         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
15686         referenced assemblies. Fixes #62135.
15687
15688         * exception.h exception.c (mono_get_exception_file_not_found2): New
15689         helper function.
15690
15691 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
15692
15693         * class.h class.c: Add mono_type_get_underlying_type ().
15694
15695 2004-09-09  Geoff Norton <gnorton@customerndna.com>
15696
15697         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
15698         Fix GetTypes() to support dynamically created assemblies.
15699
15700 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
15701
15702         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
15703         
15704         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
15705         previous patch.
15706
15707         * reflection.h reflection.c loader.c: Allow dynamic construction of
15708         pinvoke methods. Fixes #65571.
15709         
15710         * reflection.c (mono_reflection_get_type): Revert previous change since
15711         it causes regressions.
15712
15713 2004-09-08  Martin Baulig  <martin@ximian.com>
15714
15715         * class.c (class_compute_field_layout): Don't call
15716         mono_class_layout_fields() for open generic instances.
15717
15718 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
15719         * threads.c appdomain.c: fix typo in GC macro
15720
15721 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15722
15723         * threads.c: don't call mono_thread_detach() in start_wrapper(),
15724         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
15725
15726 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
15727
15728         * image.c (mono_image_close): Applied patch from 
15729         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
15730         assembly is loaded multiple times from data.
15731         
15732         * image.c (mono_image_open): Fix warning.
15733
15734 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
15735
15736         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
15737         once. Fixes #58334.
15738         
15739         * reflection.c (mono_reflection_create_runtime_class): Initialize
15740         klass->nested_classes. Fixes #61224.
15741
15742 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
15743
15744         * threads.c: sched_yield() on exit, to allow threads to quit.
15745
15746 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
15747
15748         * object.c (mono_unhandled_exception): Remove leftover debug code.
15749
15750 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
15751
15752         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
15753
15754 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
15755
15756         * marshal.c (emit_marshal_array): Really null terminate string arrays.
15757         
15758         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
15759
15760 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
15761
15762         * marshal.c (emit_marshal_array): Null terminate string arrays.
15763         
15764         * marshal.c (raise_auto_layout_exception): Fix warning.
15765
15766         * reflection.c (mono_param_get_objects): Initialize the default value
15767         with DBNull.Value, not null. Fixes #62123.
15768
15769 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
15770
15771         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
15772         throw an exception with a cute explanation.
15773
15774 2004-09-06  Dick Porter  <dick@ximian.com>
15775
15776         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
15777         Close the new process's thread handle, as we don't use it.  The
15778         handle stays around forever otherwise.
15779
15780 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
15781
15782         * object.c (arith_overflow): Fix warning.
15783
15784         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
15785         calling conventions in method refs. Fixes #65352.
15786
15787         * reflection.c: Fix warnings.
15788
15789 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
15790
15791         * icall.c: Add a new icall for Array.Clear
15792
15793 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
15794
15795         * object.c: When allocating an array, we have to throw
15796         an overflow exception if any of the lengths are < 0.
15797
15798 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
15799
15800         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
15801         properly. Also move implementation of string array marshalling to 
15802         managed code. Fixes #42316.
15803
15804 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15805
15806         * assembly.c: provide more information when loading an assembly fails.
15807
15808 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15809
15810         * filewatcher.c: don't expect the development fam package to be
15811         installed.
15812
15813 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
15814
15815         * marshal.c: Make a copy of the signature cookie since it will be
15816         freed by the caller.
15817         
15818         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
15819
15820         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
15821
15822         * metadata.c (mono_metadata_free_marshal_spec): New function to free
15823         marshal specs.
15824
15825         * marshal.c: More refactoring.
15826         
15827         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
15828         smaller functions.
15829
15830 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
15831
15832         * object.c: In mono_message_invoke, fill the output parameter array after
15833           calling the managed method (it was done before the call). This fixes
15834           bug #59299.
15835
15836 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
15837
15838         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
15839         as well.
15840
15841 2004-09-02  Martin Baulig  <martin@ximian.com>
15842
15843         * class.c (mono_class_instance_size): Don't allow generic type
15844         definitions or open generic instances.
15845         (mono_class_array_element_size): If we're a value type, call
15846         mono_class_instance_size() on the original class.
15847
15848         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
15849         handle generic instances.
15850
15851         * mono-debug-debugger.c (write_type): Handle generic instances
15852         like classes.
15853
15854 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
15855
15856         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
15857         the allocation request fails. Fixes #65089.
15858
15859         * object.c (mono_runtime_free_method): Do not call mono_free_method.
15860         
15861         * object.c (mono_runtime_free_method): New function to free a dynamic
15862         method.
15863
15864         * marshal.c (mono_delegate_free_ftnptr): New function to free the
15865         delegate trampoline.
15866
15867         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
15868         with hasthis as dynamic,
15869
15870         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
15871
15872         * domain.c (mono_jit_info_table_remove): New function to remove an
15873         entry from the jit info table.
15874
15875         * class-internals.h (MonoMethod): Add 'dynamic' field.
15876
15877         * loader.c: Fix warnings.
15878
15879 2004-09-01  Martin Baulig  <martin@ximian.com>
15880
15881         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
15882         instead of mono_debugger_lock() because the latter one is a no-op
15883         unless running in the debugger.
15884
15885 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
15886
15887         * class.c (class_compute_field_layout): Classes with auto-layout or
15888         reference fields are not blittable.
15889         
15890 2004-09-01  Dick Porter  <dick@ximian.com>
15891
15892         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
15893         mono_image_get_filename() to get the assembly location.
15894
15895         * icall.c:
15896         * metadata.h: Fix compile warnings
15897
15898 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
15899
15900         * class.c (class_compute_field_layout): System.Object is blittable.
15901
15902         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
15903         as in/out. Fixes #59909.
15904
15905 2004-09-01  Martin Baulig  <martin@ximian.com>
15906
15907         * metadata.h (MONO_TYPE_ISREFERENCE): Call
15908         mono_metadata_generic_inst_is_valuetype() if we're a generic
15909         instance to check whether our underlying type is a reference type.
15910
15911 2004-09-01  Martin Baulig  <martin@ximian.com>
15912
15913         * metadata.c (mono_type_size): If we're a generic instance, call
15914         mono_class_value_size() for value types.
15915
15916 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
15917
15918         * marshal.c: Implement more custom marshalling functionality. Fixes
15919         #64915.
15920
15921 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
15922
15923         * mono-debug.c, debug-mono-symfile.c: add some locking love.
15924
15925 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
15926
15927         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
15928
15929         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
15930
15931         * icall.c: Fix some warnings.
15932
15933         * threads.c (abort_appdomain_thread): Fix unref errors.
15934         (mono_thread_current): Fix THREAD_DEBUG define.
15935
15936 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
15937
15938         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
15939
15940         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
15941
15942 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
15943
15944         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
15945         string arrays.
15946
15947 2004-08-28  Martin Baulig  <martin@ximian.com>
15948
15949         * metadata.c
15950         (mono_metadata_generic_inst_is_valuetype): New public function.
15951
15952         * metadata.h (MONO_TYPE_ISSTRUCT): Call
15953         mono_metadata_generic_inst_is_valuetype() if we're a generic
15954         instance to check whether our underlying type is a valuetype.
15955
15956 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
15957
15958         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
15959         #63768.
15960
15961 2004-08-25  Martin Baulig  <martin@ximian.com>
15962
15963         * loader.c (mono_get_method_from_token): Abstract methods can also
15964         be generic and thus have type parameters.
15965
15966         * metadata-internals.h
15967         (MonoDynamicImage): Added `GPtrArray *gen_params'.
15968
15969         * reflection.c (mono_image_get_generic_param_info): Don't create a
15970         metadata row, just add an entry to the `gen_params' array.
15971         (build_compressed_metadata): Sort the `gen_params' array and then
15972         actually create the metadata.
15973
15974 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15975
15976         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
15977
15978 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
15979
15980         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
15981
15982 2004-08-24  Martin Baulig  <martin@ximian.com>
15983
15984         * class.cs (mono_class_is_subclass_of): Like an interface, a
15985         generic instance also derives from System.Object.
15986
15987 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
15988
15989         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
15990         custom modifiers to be in any order. Fixes #61990.
15991
15992 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
15993
15994         * object.c: Register mono_object_new_fast icall.
15995         
15996         * object.c (mono_class_get_allocation_ftn): Return to calling
15997         mono_object_new_fast, since it seems faster to compute the object 
15998         size in unmanaged code than passing it as a parameter.
15999
16000         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
16001
16002         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
16003         this function with Boehm as the oom handler, so we don't have to check
16004         the result of GC_malloc.
16005
16006         * object.c: Remove checks for oom.
16007
16008         * object.h object.c (mono_class_get_allocation_ftn): New function to
16009         return the icall which can be used to allocate an instance of a given
16010         class. 
16011
16012         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
16013
16014         * class-internals.h: Add 'enabled' field.
16015
16016 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
16017
16018         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
16019
16020 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
16021         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
16022         value 0x0010.
16023
16024 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
16025
16026         * appdomain.c: use the Tls function for appdomain too,
16027         at Zoltan's request. Actually return in mono_context_get
16028
16029         * appdomain.c, profiler.c, threads.c: use __thread
16030
16031 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
16032
16033         * appdomain.c threads.c: Call GC_CreateThread on windows.
16034
16035         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
16036         multiple libraries since this don't work on windows.
16037
16038 2004-08-18  Martin Baulig  <martin@ximian.com>
16039
16040         * class-internals.h
16041         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
16042         MonoMethodHeader.
16043
16044         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
16045         MonoMethodNormal since we also need it for abstract and interface
16046         methods.
16047
16048         * reflection.c
16049         (build_compressed_metadata): Sort the GenericParam table.
16050         (mono_image_create_token): Added `gboolean create_methodspec'
16051         argument; this is false when generating a MethodImpl token.
16052         (reflection_methodbuilder_to_mono_method): Abstract and interface
16053         methods may also have generic parameters.
16054
16055 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
16056
16057         * appdomain.c: thread local alloc
16058
16059 2004-08-17  Martin Baulig  <martin@ximian.com>
16060
16061         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
16062
16063         * icall.c
16064         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
16065         argument.
16066
16067         * class.c (mono_type_get_full_name): New public function.
16068         (mono_type_get_name): Don't include the type arguments.
16069
16070 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
16071
16072         * Makefile.am: Build static versions of libmetadata and libmonoruntime
16073         for inclusion into the mono executable.
16074
16075 2004-08-16  Martin Baulig  <martin@ximian.com>
16076
16077         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
16078         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
16079
16080 2004-08-14  Martin Baulig  <martin@ximian.com>
16081
16082         * class.c (dup_type): Also copy the `byref' field.
16083
16084 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
16085
16086         * reflection.c (create_dynamic_mono_image): Revert the last change 
16087         since it breaks bootstrap.
16088
16089 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
16090
16091         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
16092
16093         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
16094         not free them with g_free.
16095
16096 2004-08-11  Martin Baulig  <martin@ximian.com>
16097
16098         * reflection.c (mono_reflection_setup_internal_class): Also call
16099         mono_class_setup_mono_type() if we already have a `tb->type.type'.
16100
16101 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
16102
16103         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
16104         called during default (first) AppDomain creation. Keep track of
16105         Evidence when loading assemblies.
16106
16107 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
16108
16109         * opcodes.c, opcodes.h: reduce runtime relocations.
16110
16111 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
16112
16113         * culture-info.h, locales.c: fixes and chages to sue the new
16114         optimized format of the locale data.
16115         * culture-info-tables.h: regenerated.
16116
16117 2004-08-06  Geoff Norton <gnorton@customerdna.com>
16118         
16119         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
16120
16121 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
16122
16123         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
16124         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
16125         * domain-internals.h: icall declaration.
16126         * icall.c: icall registration.
16127         * object-internals.h: New fields in MonoAssembly for CAS.
16128
16129 2004-08-05  Duncan Mak  <duncan@ximian.com>
16130
16131         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
16132         CEE_LDELEM_ANY.
16133
16134 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
16135
16136         * reflection.c: fix to deal with object[] arrays in custom ctors
16137         (bug #62550).
16138
16139 2004-08-05  Martin Baulig  <martin@ximian.com>
16140
16141         * class.c (mono_class_array_element_size): Added support for
16142         generic instances and correctly handle "recursive" types.
16143
16144 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
16145
16146         * assembly.c: Fix warnings.
16147
16148 2004-08-04  Martin Baulig  <martin@ximian.com>
16149
16150         * class.c
16151         (mono_type_get_name_recurse): Added `gboolean include_arity'
16152         argument specifying whether or not we should include the generic
16153         arity in the type name.
16154         (_mono_type_get_name): New static function.
16155         (mono_class_setup_vtable): If we're a generic instance, don't
16156         include the generic arity in the names of explicit method
16157         implementations.        
16158
16159 2004-08-03  Martin Baulig  <martin@ximian.com>
16160
16161         * class.c (mono_type_get_name_recurse): Enclose the generic type
16162         arguments in `<', '>'.
16163
16164 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
16165
16166         * gc.c: make GC warning messages use the trace API, they are just
16167         noise to most of the users.
16168
16169 2004-08-03  Martin Baulig  <martin@ximian.com>
16170
16171         * debug-mono-symfile.c (read_string): Correctly read the string.
16172
16173 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
16174
16175         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
16176         
16177         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
16178         icalls.
16179         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
16180
16181 2004-07-30  Martin Baulig  <martin@ximian.com>
16182
16183         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
16184         Reflect latest symbol writer changes.   
16185
16186 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
16187
16188         * object.c: always create an object if null is passed
16189         to Invoke() where a valuetype is expected.
16190
16191 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
16192
16193         * marshal.c (mono_marshal_init): make managed
16194         signatures match native ones better for 64bits.
16195
16196 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16197
16198         * appdomain.c: hack to build correctly the private bin path on windows.
16199         Fixes bug #61991.
16200
16201 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
16202
16203         * assembly.c: Load mscorlib from the correct framework directory
16204           (mono/<version>/mscorlib.dll).
16205         * appdomain.h: Added prototypes for new functions.
16206         * internals.h: Added some prototypes.
16207         * domain.c: When initializing the runtime, get from the executable and
16208           the configuration files the runtime version that the app supports.
16209           Added support methods for reading app.exe.config. Added list of versions
16210           supported by the JIT. Added two new methods: mono_init_from_assembly,
16211           which initializes the runtime and determines the required version from
16212           the provided exe file, and mono_init_version, which initializes
16213           the runtime using the provided version.
16214         * icall.c: Get machine.config from version-specific directory.
16215         * reflection.c: When generating an image, embed the version number
16216           of the current runtime.
16217
16218 2004-07-28  Dick Porter  <dick@ximian.com>
16219
16220         * socket-io.c
16221         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
16222         returned sockaddr size before creating the remote address object.
16223         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
16224         61608.
16225
16226 2004-07-28  Dick Porter  <dick@ximian.com>
16227
16228         * locales.c (string_invariant_compare_char): Fix invariant char
16229         compares between upper and lower cases.  Fixes bug 61458.
16230
16231 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
16232         
16233         * marshal.c: actually cache stelem.ref wrappers.
16234         
16235 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
16236
16237         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
16238         sections and remove the mono_cli_rva_map () function.
16239
16240 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
16241
16242         * debug-mono-symfile.c: fix one more endianess issue, from a patch
16243         by Geoff Norton (<gnorton@customerdna.com>).
16244
16245 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
16246
16247         * class.c: fix class loads for pointer types (typeof(int) !=
16248         typeof(int*)).
16249
16250 2004-07-27  Martin Baulig  <martin@ximian.com>
16251
16252         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
16253         reading the debugging information from an external ".mdb" file.
16254
16255 2004-07-24  Martin Baulig  <martin@ximian.com>
16256
16257         * reflection.c (mono_image_get_type_info): Only write a class
16258         layout entry if we actually have a size or a packing size.
16259
16260 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
16261
16262         * reflection.c (type_get_fully_qualified_name): 
16263         insert cast to get type checking of ?: with non-gcc compilers
16264
16265 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
16266
16267         * rand.c: use g_getenv for both lookups of
16268         MONO_EGD_SOCKET
16269
16270 2004-07-17  Martin Baulig  <martin@ximian.com>
16271
16272         * reflection.c (mono_reflection_bind_generic_method_parameters):
16273         Set `gmethod->reflection_info'.
16274
16275 2004-07-17  Martin Baulig  <martin@ximian.com>
16276
16277         * class.c (mono_class_create_from_typedef): Insert the newly
16278         created class into the hash table before computing the interfaces
16279         since we could be called recursively.
16280
16281 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
16282
16283         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
16284         function to implement stelem.ref in managed code
16285         * class-internals.h, debug-helpers.c: a new wrapper type
16286         for the above.
16287
16288 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
16289
16290         * gc.c: allow GC handles to work even when no GC is compiled in.
16291         Fix part of bug #61134 (GetAddrOfPinnedObject).
16292
16293 2004-07-13  Peter Williams  <peter@newton.cx>
16294  
16295         * process.c (complete_path): Make sure we don't attempt to execute
16296         directories.
16297  
16298 2004-07-12  Geoff Norton <gnorton@customerdna.com>
16299
16300         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
16301           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
16302           and will add/subtract the hour if needed
16303
16304 2004-07-12  Martin Baulig  <martin@ximian.com>
16305
16306         * reflection.c (mono_field_get_object): If we have
16307         `field->generic_info', take the attributes from
16308         `field->generic_info->generic_type'.    
16309
16310 2004-07-12  Martin Baulig  <martin@ximian.com>
16311
16312         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
16313         This function must be called before initializing the runtime.
16314         (mono_debug_init_1): New function; call this after initializing
16315         the runtime, but before loading the assembly.  It tells the
16316         debugger to load corlib and the builtin types.
16317
16318         * mono-debug-debugger.c: Did some larger changes in the debugging
16319         code; support recursive class declarations, make sure we actually
16320         add all classes.
16321
16322 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16323
16324         * debug-helpers.c: undo my previous patch and fixed the real issue in
16325         ../mini/exceptions-x86.c
16326
16327 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16328
16329         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
16330         when no HOME env. variable was set and a NullRef was thrown in a .cctor
16331         called from other .cctors.
16332
16333 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
16334
16335         * loader.c: Removed the mono_loader_wine_init hack now that we are
16336         doing a managed version of Windows.Forms.
16337
16338 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
16339
16340         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
16341         threadpool.c, threads.c: remove static data from rootset.
16342
16343 2004-07-09  Dick Porter  <dick@ximian.com>
16344
16345         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
16346         Don't do any more processing if the matched length was 0.  It was
16347         increasing the size of the string before.  Fixes bug 61167.
16348
16349 2004-07-09  Dick Porter  <dick@ximian.com>
16350
16351         * socket-io.h:
16352         * socket-io.c
16353         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
16354         Add support for SO_PEERCRED if its available.
16355
16356 2004-07-09  Peter Bartok <pbartok@novell.com>
16357         * loader.c: winelib.exe.so error message is now only displayed if
16358         MONO_DEBUG is set. To help us avoid questions when people are trying
16359         out the new Managed.Windows.Forms.
16360
16361 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
16362
16363         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
16364         for isinst and castclass wrappers.
16365
16366         * class-internals.h icall.c: Move registration and lookup of JIT icalls
16367         to libmetadata from the JIT, so they could be used by the marshalling
16368         code and the interpreter.
16369
16370         * marshal.c: Register marshalling related JIT icalls here instead of
16371         in mini.c. Use CEE_MONO_ICALL instead of the family of 
16372         CEE_MONO_PROC<x> opcodes to call marshalling functions.
16373
16374         * metadata.h: Remove unneeded marshalling conversions.
16375
16376         * opcodes.c: Update for new opcodes.
16377         
16378 2004-07-08  Martin Baulig  <martin@ximian.com>
16379
16380         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
16381         (mono_debug_get_domain_data): Make this function static.
16382
16383 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
16384
16385         * gc.c, object.h: add nice GC handle API for embedders.
16386
16387 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
16388
16389         * reflection.c: more changes for the new api
16390
16391         * object.c: When we reflect on a field w/ a constant value, it
16392         will not have a memory location, so we must access metadata. Also,
16393         allow easier reading of strings so that we can read them from
16394         the constant data.
16395
16396         * class.c (mono_class_layout_fields): no need for literal fields here.
16397
16398         * class-internals.h: api changes for const fields
16399
16400         * icall.c (ves_icall_get_enum_info): use new apis for const fields
16401
16402 2004-07-06  Martin Baulig  <martin@ximian.com>
16403
16404         * mono-debug.h: Increment version number to 44.
16405
16406         * mono-debug.c (mono_debug_add_wrapper): The second argument is
16407         now a gpointer, rewrote this whole method.
16408
16409         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
16410         function.  Add information about the wrapper in a new "misc table".
16411
16412         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
16413         for the new misc table.
16414
16415 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
16416
16417         * metadata-internals.h image.c: Add a cache for helper signatures.
16418
16419         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
16420
16421 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
16422
16423         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
16424         delegates from a delegate. Fixes #61033.
16425         
16426         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
16427         marshalling of stringbuilder arrays. Fixes #59900.
16428
16429 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
16430
16431         * icall.c: Add EnumBuilder:setup_enum_type icall.
16432
16433 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
16434
16435         * icall.c: Added a new icall for the property version of
16436         OffsetOfStringData.
16437
16438 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
16439
16440         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
16441         it has a constant size across platforms.
16442
16443         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
16444         stack trace.
16445
16446 2004-06-29  Martin Baulig  <martin@ximian.com>
16447
16448         * mono-debug.c (mono_debug_add_method): Protect the whole function
16449         in mono_debugger_lock(), not just parts of it.
16450
16451 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
16452
16453         * reflection.c: make sure padding bytes in heaps are zeroed.
16454
16455 2004-06-24  David Waite  <mass@akuma.org>
16456
16457         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
16458         image.c, loader.c, locales.c, marshal.c, metadata.c,
16459         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
16460         string-icalls.c, threads.c: change to C90-style comments from C99 /
16461         C++ -style
16462
16463 2004-06-24  Dick Porter  <dick@ximian.com>
16464
16465         * threads.c
16466         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
16467         return createdNew.  Fixes bug 60412.
16468
16469         * threads-types.h: 
16470         * icall.c: Add createdNew parameter to CreateMutex icall
16471
16472 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
16473
16474         * reflection.c, object-internals.h: save default value in params.
16475
16476 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16477
16478         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
16479         no need to build a new path combining that with the application base.
16480         Fixes bug #60442.
16481
16482 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
16483
16484         * reflection.c: fixed minor standard compliance issues.
16485
16486 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
16487
16488         * reflection.c: fixed issue with encoding some custom attributes
16489         (arrays in properties and fields, bug #60411).
16490
16491 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16492
16493         * reflection.c: fix start address when copying the public key token.
16494
16495 2004-06-23  Martin Baulig  <martin@ximian.com>
16496
16497         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
16498         the `exc' object in a static object to put it into the GC's root set.
16499
16500 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
16501
16502         * reflection.c: make mono_reflection_setup_internal_class ()
16503         callable a second time to setup a new parent class.
16504
16505 2004-06-23  Dick Porter  <dick@ximian.com>
16506
16507         * threads.c: Check for WAIT_IO_COMPLETION return values.
16508
16509 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
16510
16511         * appdomain.c: Removed the g_free on the public key token. Now copy 
16512         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
16513         * assembly.c: Added public key token string value when loading 
16514         assemblies. Fix bug #60439.
16515         * icall.c: Added missing informations (like public key) in 
16516         GetReferencedAssemblies. Fix #60519.
16517         * image.h: Changed definition for public key token from const char*
16518         public_tok_value to guchar public_key_token [17];
16519         * reflection.c: Updated for changes to public key token.
16520
16521 2004-06-22  Lluis Sanchez Gual
16522
16523         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
16524         for the field in base classes.
16525
16526 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
16527
16528         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
16529         mark headers as not supported, they are installed only for use by the
16530         debugger.
16531
16532 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
16533
16534         * *.c, *.h: avoid namespace pollution in public headers.
16535
16536 2004-06-21  Martin Baulig  <martin@ximian.com>
16537
16538         * exception.c (mono_get_exception_security): It's in
16539         "System.Security", not in "System".
16540
16541         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
16542         the exception classes.
16543
16544 2004-06-21  Martin Baulig  <martin@ximian.com>
16545
16546         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
16547         Protect the exception object from being finalized.
16548
16549 2004-06-21  Martin Baulig  <martin@ximian.com>
16550
16551         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
16552         public function.
16553
16554 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
16555
16556         * reflection.c: Load the assembly in mono_reflection_type_from_name,
16557         if it was not loaded before. Fix parts of #60439.
16558
16559 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
16560
16561         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
16562         code that was broken since Ben's change: wrappers are now
16563         dependent on the method signature only again.
16564
16565 2004-06-21  Martin Baulig  <martin@ximian.com>
16566
16567         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
16568         added interface support.
16569
16570 2004-06-21  Martin Baulig  <martin@ximian.com>
16571
16572         * class.c (mono_vtable_get_static_field_data): New public method.
16573
16574 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
16575
16576         * filewatcher.c : Windows build fix to be compliant with API changes.
16577
16578 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
16579
16580         * class.h, class.c: more accessors.
16581         * metadata.h, metadata.c: prepare for hiding MonoType and
16582         MonoMethodSignature: people should use the accessors from now on
16583         outside of the tree.
16584
16585 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
16586
16587         * *.c, *.h: more API cleanups.
16588
16589 2004-06-18  Jackson Harper  <jackson@ximian.com>
16590
16591         * assembly.c: Trace loading assemblies.
16592         * loader.c: Trace loading native libraries.
16593         * mono-config.c: Trace loading config files.
16594         
16595 2004-06-18  Dick Porter  <dick@ximian.com>
16596
16597         * locales.c: Tell ICU the lengths of strings, it can cope with
16598         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
16599
16600 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
16601
16602         * image.c: swapped name/filename;
16603
16604 2004-06-18  Martin Baulig  <martin@ximian.com>
16605
16606         * mono-debug-debugger.c (write_class): Write the parent class at
16607         the end of the header.
16608
16609 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
16610
16611         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
16612
16613 2004-06-17  Raja R Harinath  <rharinath@novell.com>
16614
16615         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
16616         (bundle_obj): New conditional define.
16617         (BUILT_SOURCES): Remove.
16618         ($(bundle_srcs)): Make parallel-make safe.
16619         (libmonoruntime_la_LIBADD): Make unconditional.
16620         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
16621         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
16622
16623 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
16624
16625         * culture-info-tables.h: It was inconsistent with the latest
16626           supp info files.
16627
16628 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
16629
16630         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
16631         be loaded.
16632
16633         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
16634         with gcc 2.95.
16635
16636 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
16637
16638         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
16639         cleaned up public header threads.h.
16640
16641 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
16642
16643         * Makefile.am, *.c, *.h: more API cleanups.
16644
16645 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
16646
16647         * Makefile.am: removed monosn from compilation.
16648         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
16649         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
16650         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
16651         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
16652         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
16653         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
16654
16655 2004-06-15  Jackson Harper  <jackson@ximian.com>
16656
16657         * assembly.c: Make locales lower case when searching the GAC for
16658         assemblies. gacutil will always make locales lowercase when
16659         installing so this effectively makes them case insensitive.
16660         
16661 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
16662
16663         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
16664         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
16665           parameter which allows to choose whether the wait can be interrupted or 
16666           not. Also added the method mono_monitor_enter(), which locks the monitor
16667           using an infinite wait and without allowing interruption.
16668           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
16669           interrupted.
16670         * object.h: Added new fields in MonoThread. suspend_event holds the event
16671           used to susped/resume the thread. synch_lock is the lock object to use for
16672           modifying the thread state.
16673         * threads.c: Use the new synch_lock object for locking, instead of "this",
16674           which can generate deadlocks.
16675           Moved thread state change in Thread.Sleep and Thread.Join from managed
16676           to unmanaged code. This avoids a deadlock when the thread was suspended
16677           just after acquiring the thread lock.
16678           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
16679           Implemented Thread.Suspend using an event instead of ThreadSuspend,
16680           which is not fully implemented in the io-layer.
16681         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
16682
16683 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
16684
16685         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
16686         threads-types.h: more API cleanups.
16687
16688 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
16689
16690         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
16691         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
16692         threadpool.c, threads.c: first pass at the exported API cleanup.
16693
16694 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
16695
16696         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
16697
16698 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16699
16700         * icall.c: added internalGetHome.
16701
16702 2004-06-14  Dick Porter  <dick@ximian.com>
16703
16704         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
16705         possible to return successfully when '.' or '..' were the only
16706         entries in a directory, but were skipped.  The MonoIOStat was not
16707         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
16708         Fixes bug 59574.
16709
16710 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
16711
16712         * reflection.c: make binaries run on .Net 1.1 by default.
16713
16714 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
16715
16716         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
16717
16718 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
16719
16720         * marshal.c: keep track of struct size with explicit layout
16721         (bug #59979).
16722
16723 2004-06-12  Martin Baulig  <martin@ximian.com>
16724
16725         * mono-debug-debugger.c: Comment out a debugging g_message().
16726
16727 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
16728
16729         * reflection.c, reflection.h: do not free custom attrs that are cached.
16730         * icall.c: use braces to make code clearer.
16731
16732 2004-06-11  Martin Baulig  <martin@ximian.com>
16733
16734         * class.h (MonoInflatedField): New type.
16735         (MonoClassField): Replaced `MonoType *generic_type' with
16736         `MonoInflatedField *generic_info'.
16737
16738         * icall.c
16739         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
16740
16741 2004-06-11  Martin Baulig  <martin@ximian.com>
16742
16743         * reflection.c (mono_image_create_method_token): Correctly encode
16744         varargs methods.
16745
16746 2004-06-11  Martin Baulig  <martin@ximian.com>
16747
16748         * metadata.c (mono_metadata_parse_method_signature): When parsing
16749         a MethodDef which has VarArgs, also set sentinelpos if we don't
16750         have any parameters.
16751
16752 2004-06-11  Martin Baulig  <martin@ximian.com>
16753
16754         * verify.c (mono_method_verify): In CEE_CALL, use
16755         mono_method_get_signature() to get the method's signature, unless
16756         we're a PInvoke method.
16757
16758 2004-06-10  Jackson Harper  <jackson@ximian.com>
16759
16760         * assembly.c: Use <path>/lib/mono/gac for the extra paths
16761         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
16762         logical name as the supplied path is just a prefix to the gac not
16763         the direct path to it.
16764         
16765 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
16766
16767         * reflection.c: make the token for a created method match
16768         the token of the MethodBuilder it was created from
16769         (IKVM requires this behaviour now).
16770
16771 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
16772
16773         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
16774         reflection.c, socket-io.c: leak fixes.
16775
16776 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
16777
16778         * icall.c: handle sentinel pos in vararg methods in position different
16779         from 0.
16780
16781 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16782
16783         * culture-info-tables.h: freshly generated.
16784
16785 2004-06-09  Martin Baulig  <martin@ximian.com>
16786
16787         * loader.c (mono_get_method_constrained): Call `mono_class_init
16788         (constrained_class)'.   
16789
16790 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
16791
16792         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
16793         any methods. Fixes #59629.
16794
16795 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
16796
16797         * culture-info-tables.h: reflecting locale-builder updates.
16798
16799 2004-06-08  Dick Porter  <dick@ximian.com>
16800
16801         * object.h:
16802         * locales.c: Fixed compile warnings, including a real bug in
16803         CompareInfo_internal_compare.
16804         
16805 2004-06-08  Dick Porter  <dick@ximian.com>
16806
16807         * locales.c
16808         (ves_icall_System_Globalization_CompareInfo_internal_index):
16809         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
16810         Double-check the resuls of usearches, because ICU currently
16811         ignores most of the collator settings here.  Fixes bug 59720.
16812         
16813 2004-06-08  Dick Porter  <dick@ximian.com>
16814
16815         * locales.c
16816         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
16817         Fix memory leak and segfault-causing typo.  No idea how this one
16818         lasted so long without being noticed.
16819
16820 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
16821
16822         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
16823         any methods. Fixes #59629.
16824
16825 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16826
16827         * assembly.c:
16828         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
16829         own the critical section before). Removed dead code (that's done
16830         in the preload hook).
16831
16832         (mono_assembly_load_with_partial_name): call the preload hook.
16833
16834 2004-06-08  Martin Baulig  <martin@ximian.com>
16835
16836         * metadata.c (mono_metadata_signature_alloc): Default
16837         `sentinelpos' to -1.
16838
16839         * reflection.c (mono_image_get_array_token): Likewise.
16840
16841 2004-06-08  Martin Baulig  <martin@ximian.com>
16842
16843         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
16844
16845         * metadata.c (mono_metadata_parse_method_signature): When parsing
16846         a MethodDef which has VarArgs, set sentinelpos.
16847
16848         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
16849         `gint16' since we're using -1 for non-varargs methods.
16850
16851         * reflection.c
16852         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
16853         (method_encode_signature): Added varargs support.
16854         (method_builder_encode_signature): Likewise.
16855         (mono_image_get_varargs_method_token): New static method.
16856         (mono_image_create_method_token): New public method; this is
16857         called via an icall instead of mono_image_create_token() when
16858         calling a varargs method.       
16859
16860 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
16861
16862         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
16863
16864 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
16865
16866         * culture-info-tables.h : Reflecting the latest locale-builder that
16867           fixed empty array representation ({} to {0}).
16868
16869 2004-06-07  Jackson Harper  <jackson@ximian.com>
16870
16871         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
16872         looking up extra gac paths. This allows MONO_GAC_PATH to act
16873         exactly like a prefix.
16874         
16875 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
16876
16877         * reflection.c (mono_reflection_type_from_name): Make a copy of the
16878         type name before modifying it. Fixes #59405.
16879
16880 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
16881
16882         * culture-info.h: added fields for "all datetime patterns".
16883         * locales.c: (  ves_icall_System_Globalization_CultureInfo
16884           _construct_datetime_format ()): fill xxx_patterns fields.
16885         * object.h: added fields for "all datetime patterns" to
16886           MonoDateTimeFormatInfo.
16887         * culture-info-tables.h: reflecting locale-builder updates.
16888
16889 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
16890
16891         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
16892         the event has no add and remove methods. Fixes #59629.
16893
16894 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
16895
16896         * object.c: Fixed possible integer overflow when allocating large
16897         strings.
16898
16899 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
16900
16901         * culture-info-tables.h: reflecting locale-builder updates.
16902
16903 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
16904
16905         * culture-info-tables.h: reflecting locale-builder updates.
16906
16907 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
16908
16909         * culture-info-tables.h: reflecting locale-builder updates.
16910
16911 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
16912
16913         * threads.c: Made Thread.Sleep abortable.
16914
16915 2004-06-02  Martin Baulig  <martin@ximian.com>
16916
16917         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
16918
16919         * debug-mono-symfile.h: Bumped symbol file version number to 37.
16920
16921 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
16922
16923         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
16924
16925 2004-05-30  Jackson Harper  <jackson@ximian.com>
16926
16927         * reflection.c: Do not hardcode assembly versions or public key
16928         tokens anymore. All of this except the corlib section was dead
16929         code anyways.
16930         
16931 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
16932
16933         * object.c (mono_runtime_invoke_array): Automatically create boxed
16934         objects for byref valuetypes if needed. Fixes #59300.
16935         
16936         * object.c (mono_method_return_message_restore): Handle 
16937         MONO_TYPE_OBJECT as well.
16938
16939 2004-05-28  Jackson Harper  <jackson@ximian.com>
16940
16941         * reflection.c: The modified type encoding was causing build
16942         problems. Reverted for now.
16943         
16944 2004-05-28  Jackson Harper  <jackson@ximian.com>
16945
16946         * reflection.c/h: Take an assembly ref so that we dont create
16947         fully qualified names when encoding types in the same assembly as
16948         the custom attribute being emitted.
16949         * appdomain.c: Increment version number.
16950         
16951 2004-05-26  Duncan Mak  <duncan@ximian.com>
16952
16953         * icall.c
16954         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
16955         Set the full version number (major, minor, build, revision).
16956
16957 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
16958
16959         * marshal.c (emit_struct_conv): increment src/dst after blit
16960         (mono_marshal_get_managed_wrapper,
16961         mono_marshal_get_native_wrapper): make sure we have marshalling
16962         info before marshalling params (info computation affects
16963         blittable)
16964
16965         * class.c (class_compute_field_layout): correctly deal with
16966         blittable
16967         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
16968         value types (as per what windows dows by default)
16969         (mono_class_setup_mono_type): System.ValueType is blittable
16970         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
16971         blittable
16972
16973         * marshal.c (mono_marshal_load_type_info): flag types  as
16974         non-blittable if the native layout doesn't match the managed
16975         layout
16976
16977 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16978
16979         * appdomain.c: don't add stuff in the private search path that is
16980         above the application base. If application base is not set, there's
16981         no private search path.
16982
16983 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
16984
16985         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
16986         byref struct arguments in native->managed marshalling.
16987
16988 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
16989
16990         * marshal.c (mono_marshal_get_runtime_invoke): correctly
16991         cache methods using signature (special case for methods
16992         that are value type or string class)
16993         
16994         * image.c (mono_image_close): clean up allocated GSList's
16995         in runtime_invoke_cache.
16996
16997 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16998
16999         * mono-config.c: set the correct path for mono_cfg_dir on windows when
17000         there's no MONO_CFG_DIR environment variable defined.
17001
17002 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17003
17004         * threads.c: windows version must be >= 0x0500 to include OpenThread.
17005
17006 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
17007
17008         * threadpool.c: Really wait for 500ms after the async call, even if the wait
17009           is interrumped.
17010         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
17011           before waiting for it, and call CloseHandle after the wait to unref it.
17012           This will make sure that handles are not disposed too early.
17013
17014 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17015
17016         * appdomain.c:
17017         * appdomain.h:
17018         * icall.c: removed
17019         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
17020         needed now.
17021
17022         * object.c: se the application_base only for the domain that runs
17023         Main. Fixes bug #59216,
17024
17025 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17026
17027         * appdomain.c:
17028         * object.c: only the domain in which Main is run have
17029         SetupInformation.ConfigurationFile set, so moved a few lines from
17030         appdomain.c to object.c.
17031
17032 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17033
17034         * appdomain.c: we tried to load [name].(dll|exe), but according
17035         to bug #57710, we must also try [culture]/[name].(dll|exe) and
17036         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
17037         There's a test case attached to bug #58922.
17038
17039 2004-05-27  Dick Porter  <dick@ximian.com>
17040
17041         * icall.c:
17042         * file-io.c: Implemented icalls for locking and unlocking regions
17043         in a file.
17044         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
17045         FALSE on error (fixes both compiler warning and real bug.)
17046
17047 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
17048
17049         * culture-info-tables.h: reflecting locale-builder updates.
17050
17051           (Added missing ChangeLog entry for 05/26)
17052
17053 2004-05-27  Jackson Harper  <jackson@ximian.com>
17054
17055         * locales.c: Fix some cut and paste errors.
17056         
17057 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17058
17059         * mono-config.c: set the correct path for config. directory on windows.
17060
17061 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
17062
17063         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
17064           on win32.
17065
17066 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
17067
17068         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
17069         from pinvoke functions.
17070         
17071         * marshal.c (mono_ftnptr_to_delegate): Implement this.
17072
17073 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
17074
17075         * culture-info-tables.h: reflecting locale-builder updates.
17076
17077 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
17078
17079         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
17080         #59086.
17081
17082 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
17083
17084         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
17085         * icall.c: Modified icalls for RNG.
17086         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
17087         Windows (CryptoAPI).
17088
17089 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
17090
17091         * locales.c: Fix build.
17092
17093 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
17094
17095         * culture-info-tables.h: reflecting locale-builder updates.
17096
17097 2004-05-25  Jackson Harper  <jackson@ximian.com>
17098
17099         * locales.c: When creating the current culture use the $LANGs
17100         specific culture. So DateTimeFormat and NumberFormat entries are created.
17101         
17102 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
17103
17104         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
17105         a char array as parameter.
17106
17107 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
17108
17109         * image.c: In mono_image_open(), always use an absolute path name to
17110           look for already loaded images.
17111
17112 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
17113
17114         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
17115         missing in the windows build (like older cygwin include files).
17116
17117 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
17118
17119         * icall.c: Fixed check for possible integer overflow in Buffer_
17120         BlockCopy icall. Replaced comments style // by /* */.
17121
17122 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
17123
17124         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
17125         
17126         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
17127         check after MONO_VTADDR. Fixes pinvoke2.exe.
17128
17129         * marshal.h marshal.c metadata.h: Add beginnings of support for
17130         ftnptr -> delegate marshalling.
17131
17132 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
17133
17134         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
17135         * threads.c: Fix warnings.
17136
17137 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
17138
17139         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
17140         * icall.c: Registered icalls for Suspend and Resume.
17141         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
17142           Thread.Abort.
17143         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
17144         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
17145         * process.c: Use WaitForSingleObjectEx.
17146         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
17147           checkpoints.
17148         * threads.c, threads.h: Make use of new Ex wait methods. Improved
17149           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
17150           for Suspend and Resume. Added new mono_thread_stop, used for stoping
17151           background threads. Added basic support for Abort in Windows.
17152           Start new threads using a managed delegate invoke wrapper. This wrapper
17153           has an interruption checkpoint that is needed since an interruption
17154           can be requested before the thread leaves the unmanaged code that starts 
17155           the thread.
17156         * marshal.c: Added interruption checkpoint after every native call, and
17157           also before managed calls for wrappers called from unmanaged code to
17158           go into managed code.
17159         * object.h: Added new field in MonoThread to keep track of interruption
17160           requests.
17161
17162 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
17163
17164         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
17165         calls.
17166
17167 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17168
17169         * appdomain.c:
17170         * assembly.c:
17171         * gc.c:
17172         * locales.c:
17173         * mono-config.c:
17174         * rand.c: getenv -> g_getenv (windows!)
17175
17176         * process.c: complete_path is also used on non-windows platforms.
17177
17178 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17179
17180         * icall.c: new signature for Process_Start.
17181
17182         * process.[ch]: new signature for Process_Start. If we're on windows
17183         and UseShellExecute is false, we have to search for the program by
17184         ourselves if we don't get a full path.
17185
17186 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
17187
17188         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
17189         marshalling and call CleanUpNativeData if needed. Fixes #58646.
17190
17191 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17192
17193         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
17194         Fixes bug #58373.
17195
17196 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17197
17198         * process.c: use double quotes to quote program name and arguments on
17199         windows. Fixes bug #58575.
17200
17201 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17202
17203         * file-io.c: don't return "." and ".." when using windows Find*File.
17204
17205 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
17206
17207         * marshal.c: Don't pass wrappers to message init because method 
17208         addressed used to lookup metadata. part of remoting[2|3] fix.
17209
17210 2004-05-15  Jackson Harper  <jackson@ximian.com>
17211
17212         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
17213         path is essentially the same as MONO_PATH except that it points to
17214         GACs instead of lib directories.
17215         * loader.h: The user gac is gone so we dont need function to
17216         enable/disable it.
17217         * mono-config.c: user gac option is now gone.
17218         
17219 2004-05-15  Jackson Harper  <jackson@ximian.com>
17220
17221         * culture-info.h: Make defines more consistent, add calendar data
17222         to the culture info table.
17223         * culture-info-tables.h: Add basic calendar data. Basically
17224         everyone gets default gregorian until all the data is
17225         updated.
17226         * locales.c: Use the new consistent defines. Set calendar data for
17227         culture info objects.
17228         * object.h: add a field for calendar data to CultureInfo
17229         
17230 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
17231
17232         * image.c: image->runtime_invoke_cache is keyed on signatures now.
17233         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
17234         a signature.
17235         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
17236         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
17237         an extra param that is the pointer of the method to invoke. The IL for
17238         the invoke method is no longer specific to the method, but to the
17239         signature of the method. Thus, we can share the same code for multiple
17240         methods. This reduces the number of methods that have to be compiled.
17241
17242 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
17243
17244         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
17245
17246         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17247
17248         * icall.c: Optimize Buffer.BlockCopy.
17249
17250 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17251
17252         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
17253         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
17254         quote). Changed them to "MMMM yyyy".
17255
17256 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
17257
17258         * rand.c
17259         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
17260
17261 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
17262
17263         * reflection.h: Updated after changes to managed structures.
17264
17265         * appdomain.c: Bump corlib version.
17266
17267 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17268
17269         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
17270         windows.
17271
17272 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17273
17274         * Makefile.am: link to ../os/libmonoos.la on windows.
17275
17276         * assembly.c:
17277                 -If MONO_DEBUG, warn about non-existing directories in
17278                 MONO_PATH.
17279                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
17280                 compile time variable.
17281                 -Removed init_default_path and call mono_set_rootdir from
17282                 libmonoos.a instead (windows only).
17283
17284         * assembly.h: declare mono_assembly_getrootdir().
17285
17286         * domain.c:
17287         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
17288
17289         * loader.c: s/getenv/g_getenv/
17290
17291 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
17292
17293         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
17294
17295         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
17296
17297         * metadata.h: Add new marshalling conversions.
17298
17299         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
17300         function.
17301
17302         * reflection.c (mono_reflection_get_type): Lookup the type in all
17303         modules of a multi-module assembly. Fixes #58291.
17304
17305 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
17306
17307         * threads.c: Before aborting a background, set the StopRequested
17308         state.  This avoids throwing the Abort exception.
17309         In mono_thread_manage, don't continue with the shutdown until all
17310         aborted threads have actually stopped.
17311
17312 2004-05-10  Jackson Harper  <jackson@ximian.com>
17313
17314         * locales.c: Remove the modifier from culture names.
17315         
17316 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17317
17318         * Makefile.am: monosn is not installed any more. It has been deprecated
17319         in favor of sn.
17320
17321 2004-05-07  Jackson Harper  <jackson@ximian.com>
17322
17323         * locales.c
17324         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
17325         Fix array construction, add bailout if the length is 0.
17326
17327 2004-05-07  Dick Porter  <dick@ximian.com>
17328
17329         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
17330         machine doesn't have a DNS entry.  Patch by Urs Muff
17331         (umuff@quark.com), fixes bug 57928.
17332
17333 2004-05-06  Jackson Harper  <jackson@ximian.com>
17334
17335         * reflection.c: Handle null PublicTokens properly. alloc mem for
17336         assembly names culture so we dont crash when freeing it.
17337         
17338 2004-05-06  Jackson Harper  <jackson@ximian.com>
17339
17340         * assembly.c: Check the usergac when loading with partial names.
17341         
17342 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
17343
17344         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
17345         does nothing for now (not required for Linux/Windows) but the class
17346         library can call it (and a newer or modified runtime could need it).
17347         * icall.c: Registred icall.
17348
17349 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17350
17351         * loader.c: prints a message on module loading error we set MONO_DEBUG
17352         environment variable.
17353
17354 2004-05-05  Jackson Harper  <jackson@ximian.com>
17355
17356         * appdomain.c: Handle PublicKeyToken=null properly.
17357         
17358 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
17359
17360         * environment.c|h: Added icall ves_icall_System_Environment_
17361         GetOSVersionString to get the current OS version as a string.
17362         * icall.c: Registred icall.
17363
17364 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
17365
17366         * object.c: in mono_object_get_virtual_method(), take into account that
17367         non-virtual methods don't have a slot in the vtable. Check needed when
17368         the object is a proxy.
17369
17370 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
17371
17372         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
17373         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
17374
17375         * object.c (mono_class_compute_gc_descriptor): Fix warning.
17376
17377         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
17378         passed when a valuetype is expected.
17379
17380         * object.c (mono_unhandled_exception): Only set the exit code if the
17381         exception happens in the main thread. Fixes thread5.exe.
17382
17383         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
17384         invalid names. Fixes #58047.
17385
17386 2004-05-03  Jackson Harper  <jackson@ximian.com>
17387
17388         * assembly.c: This line was committed accidently and is unneeded.
17389         
17390 2004-05-03  Jackson Harper  <jackson@ximian.com>
17391
17392         * icall.c: Add new icall for Assembly::LoadWithPartialName
17393         * assembly.c/.h: new function that probes the GAC to load partial
17394         assembly names by Paolo Molaro.
17395         
17396 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17397
17398         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
17399         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
17400         (type_get_fully_qualified_name): Added PublicKeyToken when building a
17401         full type name.
17402
17403 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17404
17405         * appdomain.c: fixed check for 'neutral' culture and removed warning.
17406         * reflection.c: fix bug when parsing a full type name and Version is not
17407         the last thing in the string.
17408
17409 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
17410
17411         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
17412         crashes when it is freed.
17413
17414 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17415
17416         * assembly.c: print the compat warning to stderr.
17417
17418 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
17419
17420         * assembly.c (mono_assembly_load_references): Add a compatibility
17421         hack to run old applications that might be still referencing the
17422         3300-based assemblies, only do this for System.xxx.
17423
17424 2004-05-01  Jackson Harper  <jackson@ximian.com>
17425
17426         * appdomain.c: If the culture is neutral we set it to "".
17427         
17428 2004-04-29  Jackson Harper  <jackson@ximian.com>
17429
17430         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
17431
17432 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
17433  
17434         * string-icalls.c: added low overhead function for copying chars
17435         * icall.c: added needed icall for the above function
17436  
17437 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17438
17439         * icall.c: fix return value of get_global_assembly_cache.  Implemented
17440         Environment.GetLogicalDrives.
17441
17442 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
17443
17444         * rand.c: try and talk to egd or prngd
17445         for random bytes if opening devices fail.
17446
17447 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
17448
17449         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
17450         alignment for the type using the native alignment of its members 
17451         instead of using klass->min_align.
17452
17453         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
17454
17455 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17456
17457         * file-io.c:
17458         * socket-io.c: added check for sys/aio.h.
17459
17460 2004-04-28  Dick Porter  <dick@ximian.com>
17461
17462         * threads.c: Don't abort a thread thats already aborting, when
17463         terminating everything.
17464
17465 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17466
17467         * icall.c: added 2 new async calls for Socket.
17468
17469         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
17470         IO on *nix systems.
17471
17472         * threadpool.c: removed unused variable.
17473
17474 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
17475
17476         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
17477
17478 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
17479
17480         * locales.c: put back string_invariant_tolower () and
17481         string_invariant_toupper ().
17482
17483 2004-04-26 David Waite <mass@akuma.org>
17484
17485         * file-io.h:
17486         * socket-io.h:
17487         * threads.h:
17488         * unicode.h: remove comma from end of enumeration declarations
17489
17490 2004-04-26 David Waite <mass@akuma.org>
17491
17492         * debug-mono-symfile.h:
17493         * decimal.c:
17494         * mono_debug.h:
17495         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
17496
17497
17498 2004-04-26  Jackson Harper  <jackson@ximian.com>
17499
17500         * appdomain.c: Increment version number.
17501         
17502 2004-04-26  Jackson Harper  <jackson@ximian.com>
17503
17504         * appdomain.c: Set assembly references public token value when
17505         PublicKeyToken is specified, not the hash_value. Free public token
17506         values when free assembly name data. Previously the public key
17507         token was hex decoded, however we are using hex encoded public key
17508         tokens, so this is not neccasary.
17509         * assembly.c: Lookup assemblies in the gac if their public token
17510         value is set. Add function to allow enabling user gac
17511         lookups. Specify whether or not the assembly was loaded from the
17512         GAC. Compare full assembly names when checking the cache for
17513         assemblies (Temporarily disabled see comment in code). Remove
17514         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
17515         specifies trace-loader they get extra info to stdout on the
17516         loading of assemblies.
17517         * image.h: Add a field for an assembly references public token
17518         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
17519         whether an assembly has been loaded from the GAC.
17520         * image.c: Remove a corlib -> mscorlib name mapping.
17521         * loader.h: Add function to enable/disable the user gac.
17522         * mono-config.c: Check if the usergac is enabled in the config
17523         file.
17524         * icall.c: New icall to determine whether or not an assembly has
17525         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
17526         * tabldefs.h: Add constant for assemblyref flag that specifies a
17527         full public key is used instead of a public token.
17528         * reflection.c: Remove mscorlib -> corlib mappings. Set
17529         PublicTokenValue instead of hash value. This value is a hex
17530         string so it does not need to be expanded.
17531
17532 2004-04-26  Martin Baulig  <martin@ximian.com>
17533
17534         * mono-debug-debugger.c (mono_debugger_initialize): Set
17535         `mono_debugger_initialized' before calling mono_debug_lock().
17536
17537 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
17538
17539         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
17540           InternalToUpper/InternalToLower.
17541         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
17542           removed invariant culture shortcut.  This is now done in managed code.
17543         * locales.c: (string_invariant_toupper/tolower) removed.
17544
17545 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17546
17547         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
17548         Added Poll internal call.
17549
17550         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
17551         call for Poll. Select was too heavy for polling a single socket.
17552
17553         * threadpool.[ch]: added mono_threadpool_cleanup.
17554         * threads.c: use it. Don't use Thread_Abort on windows.
17555
17556 2004-04-23  Martin Baulig  <martin@ximian.com>
17557
17558         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
17559
17560 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
17561
17562         * icall.c: Registred new icalls for key pair protection and added an
17563         icall for Environment.GetFolderPath on Windows.
17564         * security.c|h: Added new icalls for key pair protection.
17565
17566 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17567
17568         * socket-io.c: don't display the non-supported family warning for known
17569         families. Now this is not displayed on windows when checking support
17570         for IPv4/IPv6.
17571
17572 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17573
17574         * class.c: don't display the layout warning for static fields.
17575
17576 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
17577
17578         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
17579         * locales.c, locales.h: Added new icalls for culture-specific
17580         Char.ToLower and Char.ToUpper.
17581
17582 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17583
17584         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
17585         by David Waite.
17586
17587 2004-04-20  Martin Baulig  <martin@ximian.com>
17588
17589         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
17590         of the type name before passing it to mono_reflection_type_from_name().
17591
17592 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
17593
17594         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
17595         encodings here. Fixes #56965.
17596
17597 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
17598
17599         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
17600         fix test on strstr result not that I can see anything that
17601         relies on the result.
17602
17603 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
17604
17605         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
17606         Fixes #57081.
17607
17608         * marshal.c (mono_marshal_get_string_encoding): New helper function.
17609
17610         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
17611         function to determine which marshalling to use for strings. Fixes
17612         #56965.
17613
17614         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
17615
17616         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
17617
17618 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
17619
17620         * icall.c: #include mono-config.h
17621
17622 2004-04-15  Jackson Harper  <jackson@ximian.com>
17623
17624         * culture-info-tables.h: Fix date formats for en-US culture.
17625         
17626 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
17627
17628         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
17629         ThreadPool.SetMinThreads.
17630         * threadpool.c: Implemented ThreadPool.GetMinThreads and
17631         ThreadPool.SetMinThreads.
17632
17633 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
17634
17635         * mono-config.c: also load the .config file in the directory
17636         where the assembly was found.
17637
17638 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
17639
17640         * assembly.c: load per-assembly config files.
17641         * icall.c: decrapified code to get the config dir and moved to
17642         mono-config.c.
17643         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
17644         per-assembly config files. When doing a dll map lookup give precedence
17645         to the per-assembly data.
17646
17647 2004-04-14  Martin Baulig  <martin@ximian.com>
17648
17649         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
17650         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
17651         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
17652
17653         * mono-debugger-debugger.c: While the debugger is locked, remember
17654         whether the symbol tables have changes and send one single
17655         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
17656
17657 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
17658
17659         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
17660
17661         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
17662         function.
17663
17664         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
17665         account when marshalling string arrays. Fixes #56965.
17666
17667 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
17668
17669         * icall.c: Add new icalls mapping for security.
17670         * security.c|h: Add internal calls for WindowsIdentity,
17671         WindowsImpersonationContext and WindowsPrincipal.
17672
17673 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
17674
17675         * class.c: Added comment to ensure the System.MonoDummy class
17676         is removed when no longer necessary
17677
17678 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
17679
17680         * appdomain.c: Pass arguments to the bootstraping exceptions to
17681         minimize JITed methods at boot
17682
17683         * metadata.c (mono_exception_from_name_two_strings): Allow for the
17684         second string to be null.
17685
17686         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
17687         Change the protocol to minimize the JIT methods at startup.  Now
17688         it Returns the internal codepage, if the value of "int_code_page"
17689         is 1 at entry, and we can not compute a suitable code page
17690         number, returns the code page as a string.
17691
17692 2004-04-13  Jackson Harper  <jackson@ximian.com>
17693
17694         * culture-info-tables.h: Fix number of decimal digits for all
17695         english locales.
17696
17697 2004-04-13  Jackson Harper  <jackson@ximian.com>
17698
17699         * icall.c: Clairfy out of sync error message. It is not always
17700         your corlib that is out of sync.
17701
17702 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
17703
17704         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
17705         properties when only the set accessor is overriden. Fixes #55874.
17706
17707 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
17708
17709         * assembly.c (mono_assembly_load_references): Make this thread safe.
17710         Fixes #56327.
17711
17712 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
17713
17714         * monosn.c: Add missing initialization calls.
17715
17716 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
17717
17718         * locales.c:
17719         ves_icall_System_Globalization_CultureInfo_construct_number_format
17720         Fix g_assert so it compiles on fussier compilers re int/ptr
17721         mismatch
17722
17723 2004-04-08  Dick Porter  <dick@ximian.com>
17724
17725         * socket-io.h:
17726         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
17727         53992.  Also rearrange the code so that the internal calls return
17728         an error value and exceptions are thrown from managed code.
17729
17730         * icall.c: Add type info to the socket icalls.
17731
17732 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17733
17734         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
17735         owes me a beer.
17736
17737 2004-04-07  Martin Baulig  <martin@ximian.com>
17738
17739         * class.c (mono_class_from_generic_parameter): Don't default
17740         `klass->parent' to `mono_defaults.object_type'.
17741
17742 2004-04-07  Martin Baulig  <martin@ximian.com>
17743
17744         * reflection.c (mono_reflection_initialize_generic_parameter): Set
17745         `param->pklass->reflection_info'.       
17746
17747 2004-04-07  Jackson Harper  <jackson@ximian.com>
17748
17749         * culture-info-tables.h: Fix date separator symbol.
17750         
17751 2004-04-07  Martin Baulig  <martin@ximian.com>
17752
17753         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
17754         from System.Type to System.MonoType.
17755
17756 2004-04-07  Martin Baulig  <martin@ximian.com>
17757
17758         * reflection.h
17759         (MonoReflectionGenericParam): Added `has_reference_type' and
17760         `has_value_type' fields.
17761
17762         * reflection.c (mono_image_get_generic_param_info): Encode the
17763         correct flags if we have the `class' or `struct' constraint.
17764
17765 2004-04-07  Martin Baulig  <martin@ximian.com>
17766
17767         * reflection.h
17768         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
17769
17770 2004-04-07  Jackson Harper  <jackson@ximian.com>
17771
17772         * appdomain.c: Revert extra patches, just wanted to bump the
17773         version number.
17774         
17775 2004-04-07  Jackson Harper  <jackson@ximian.com>
17776
17777         * Makefile.am: Add culture-info private headers.
17778         * icall.c: Add new icalls for contructing locales.
17779         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
17780         * locales.h: Declare new culture info construction methods.
17781         * object.h: Add new fields used to avoid the CultureMap to
17782         MonoCultureInfo.
17783         * culture-info.h: Definition of structs used in the culture info
17784         tables.
17785         * culture-info-tables.h: Autogenerated tables that contain culture
17786         info data. This file was generated with the locale-builder tool.
17787         * appdomain.c: Incement corlib version number.
17788         
17789 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
17790
17791         * appdomain.c: (mono_runtime_init) move mono_thread_init
17792         to before mono_object_new calls so critical sections
17793         are initialized before use.
17794
17795 2004-04-07  Martin Baulig  <martin@ximian.com>
17796
17797         * icall.c
17798         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
17799         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
17800         (ves_icall_MonoGenericParam_initialize): Removed.
17801         (monogenericparam_icalls): Removed.
17802         (generictypeparambuilder_icalls): Added new table for
17803         System.Reflection.Emit.GenericTypeParameterBuilder.
17804
17805         * reflection.c
17806         (mono_reflection_define_generic_parameter): Removed.
17807         (mono_reflection_initialize_generic_parameter): This is now called
17808         from GenericTypeParameterBuilder's .ctor.
17809
17810 2004-04-06  Martin Baulig  <martin@ximian.com>
17811
17812         * class.c (mono_class_init): Don't inflate nested classes in a
17813         generic instance.
17814         (mono_type_get_name_recurse): Include the generic arguments for
17815         generic instances and generic type declarations.
17816         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
17817         (_mono_class_get_instantiation_name): Removed.
17818         (mono_class_create_generic): Always use `gklass->name' as our name.
17819
17820         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
17821
17822         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
17823         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
17824         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
17825         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
17826         closed generic methods here.
17827
17828         * reflection.c
17829         (mono_reflection_generic_inst_get_nested_types): Removed.
17830         (inflate_mono_method): Copy the generic parameters from the
17831         MonoMethodHeader into out MonoGenericMethod.
17832
17833 2004-04-06  Martin Baulig  <martin@ximian.com>
17834
17835         * row-indexes.h
17836         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
17837
17838         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
17839
17840         * reflection.c (build_compressed_metadata): If we have any entries
17841         in the GenericParam, MethodSpec or GenericParamConstraint tables,
17842         set the header version to 1.1.
17843
17844 2004-04-06  Martin Baulig  <martin@ximian.com>
17845
17846         * class.c (mono_class_init): If we're a generic instance,
17847         initialize our nested classes, too.
17848         (_mono_class_get_instantiation_name): Deal with the new `!%d'
17849         suffix. 
17850
17851 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17852
17853         * process.c: quote the argument passed to the shell on windows.
17854
17855 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
17856
17857         * threads.c (mono_alloc_special_static_data): Allow this to be
17858         called during startup.
17859
17860 2004-04-02  Martin Baulig  <martin@ximian.com>
17861
17862         * icall.c
17863         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
17864
17865 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
17866
17867         * icall.c: Fix build.
17868
17869 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
17870
17871         * Makefile.am: Added security.c|h.
17872         * icall.c: Added icall for get_UserName;
17873         * security.c: New file for security related icalls. Added function
17874         get_UserName for System.Environment (fix #56144).
17875         * security.h: New. Header file for security.c
17876
17877 2004-04-02  Dick Porter  <dick@ximian.com>
17878
17879         * icall.c: Deleted the icalls that were obsoleted some time ago
17880         by the ICU string code, and which were mixed into the icall
17881         rearranging.  Fixes bug 55969.
17882
17883         * string-icalls.h: 
17884         * string-icalls.c: Deleted the code that those icalls reference.
17885
17886 2004-04-01  Martin Baulig  <martin@ximian.com>
17887
17888         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
17889
17890         * class.c (mono_class_from_generic_parameter): Don't set 
17891         TYPE_ATTRIBUTE_INTERFACE.
17892         (my_mono_class_from_generic_parameter): Likewise.
17893
17894 2004-04-01  Martin Baulig  <martin@ximian.com>
17895
17896         * loader.c (find_method): Added an optional `MonoClass *ic'
17897         argument to search in a specific interface.
17898         (mono_get_method_constrained): New public function.
17899
17900 2004-04-01  Martin Baulig  <martin@ximian.com>
17901
17902         * reflection.c (mono_image_get_generic_field_token): Use the
17903         `handleref' cache here.
17904
17905 2004-04-01  Martin Baulig  <martin@ximian.com>
17906
17907         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
17908
17909         * reflection.c (create_generic_typespec): Use the `typespec' hash
17910         here, not the `typeref' one.    
17911
17912 2004-04-01  Martin Baulig  <martin@ximian.com>
17913
17914         * class.c (mono_class_inflate_generic_type): Moved the
17915         functionality into a new static inflate_generic_type() which
17916         returns NULL if it didn't do anything.  Only increment the
17917         `mono_stats.inflated_type_count' if we actually inflated
17918         something.
17919         (mono_class_get_full): Check the classes type to see whether we
17920         need to inflate it; also inflate MONO_TYPE_(M)VAR.
17921
17922 2004-04-01  Jackson Harper  <jackson@ximian.com>
17923
17924         * reflection.c: Set culture for assembly references.
17925         
17926 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
17927
17928         * reflection.[ch], icall.[ch], Fix support for pinning variables.
17929
17930 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17931
17932         * assembly.c:
17933         (do_mono_assembly_open): the critical section also covers
17934         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
17935
17936 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17937
17938         * threads.c:
17939         (mono_manage_threads): abort the background threads when finishing.
17940         Fixes bug #47232.
17941
17942 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17943
17944         * gc.c: only close the done_event handle if there was no timeout.
17945         C-ified comments.
17946
17947 2004-03-30  Martin Baulig  <martin@ximian.com>
17948
17949         * icall.c (icall_entries): It's called "System.Activator", not
17950         "System.Activation".    
17951
17952 2004-03-30  Martin Baulig  <martin@ximian.com>
17953
17954         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
17955         (mono_class_create_from_typespec): Likewise.
17956
17957 2004-03-30  Martin Baulig  <martin@ximian.com>
17958
17959         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
17960         `has_ctor_constraint' and `initialized'.
17961
17962 2004-03-30  Martin Baulig  <martin@ximian.com>
17963
17964         * reflection.c (encode_new_constraint): New static function to add
17965         the constructor constraint attribute to a type parameter.
17966         (encode_constraints): Call encode_new_constraint() if necessary.
17967
17968         * reflection.h
17969         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
17970
17971         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
17972         
17973 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
17974
17975         * reflection.c, icall.c: add support for pinning variables. 
17976
17977 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
17978
17979         * marshal.c (mono_marshal_get_managed_wrapper):
17980         init bool local with zero rather than null.
17981
17982 2004-03-29  Martin Baulig  <martin@ximian.com>
17983
17984         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
17985         the "official" behavior here.
17986         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
17987
17988 2004-03-29  Martin Baulig  <martin@ximian.com>
17989
17990         * icall.c: Reflect latest API changes.
17991
17992 2004-03-29  Martin Baulig  <martin@ximian.com>
17993
17994         * loader.c (mono_get_method_from_token): Also call
17995         mono_metadata_load_generic_params () for abstract and interface
17996         methods; replace the type arguments in the method signature with
17997         the ones which are loaded from the metadata.
17998
17999 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
18000
18001         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
18002         of the lock is not the current thread. MS.NET don't do it, in spite of
18003         what the documentation says. See bug #56157.
18004
18005 2004-03-28  Martin Baulig  <martin@ximian.com>
18006
18007         * class.c (mono_class_init): Don't call init_properties() and
18008         init_events() for generic instances; set `prop->parent' when
18009         inflating properties.
18010
18011         * reflection.c (mono_generic_inst_get_object): Call
18012         `mono_class_init (ginst->klass)'.
18013         (mono_type_get_object): Only create a MonoGenericInst if your
18014         generic type is a TypeBuilder.
18015         (do_mono_reflection_bind_generic_parameters): Only set
18016         `ginst->is_dynamic' if our generic type is a TypeBuilder.
18017
18018 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
18019
18020         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
18021         Fixes #56091.
18022
18023 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18024
18025         * icall.c: added Kill_internal icall.
18026         * process.[ch]: added Kill_internal icall.
18027
18028 2004-03-25  Martin Baulig  <martin@ximian.com>
18029
18030         * class.h (MonoStats): Added `generic_instance_count',
18031         `inflated_method_count', `inflated_type_count' and
18032         `generics_metadata_size'.       
18033
18034 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18035
18036         * reflection.c: no warnings now.
18037
18038 2004-03-25  Martin Baulig  <martin@ximian.com>
18039
18040         * class.c (mono_class_get_full): New public function; does a
18041         mono_class_get(), but also takes a `MonoGenericContext *'.
18042
18043         * loader.c (mono_field_from_memberref): Renamed to
18044         `field_from_memberref', made static and added `MonoGenericContext *'
18045         argument.
18046         (mono_field_from_token): Added `MonoGenericInst *' argument.
18047         (method_from_memberef): Likewise.
18048         (mono_get_method_from_token): Likewise.
18049         (mono_get_method_full): New public function; does a
18050         mono_get_method(), but also takes a `MonoGenericContext *'.
18051
18052         * verify.c (mono_method_verify): Get the method's generic context
18053         and pass it to mono_field_from_token(), mono_get_method_full() and
18054         mono_class_get_full().
18055
18056 2004-03-25  Martin Baulig  <martin@ximian.com>
18057
18058         * class.c (mono_class_inflate_generic_type): Take a
18059         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
18060         `MonoGenericMethod *'.
18061
18062 2004-03-25  Martin Baulig  <martin@ximian.com>
18063
18064         * loader.h (MonoMethodInflated): Store the MonoGenericContext
18065         instead of the MonoGenericMethod here.
18066
18067 2004-03-25  Martin Baulig  <martin@ximian.com>
18068
18069         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
18070         each time we create a new MonoGenericInst, we also create a new
18071         context which points back to us.
18072
18073         * class.c (inflate_method): Use `ginst->context' instead of
18074         creating a new context.
18075
18076         * loader.c (method_from_memberref): Use
18077         `klass->generic_inst->context' instead of creating a new context.
18078
18079 2004-03-25  Martin Baulig  <martin@ximian.com>
18080
18081         * class.h (MonoGenericContext): New struct.
18082         (MonoGenericMethod): Removed `generic_inst'.
18083
18084         * class.c (mono_class_inflate_generic_method): Take a
18085         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
18086
18087 2004-03-25  Martin Baulig  <martin@ximian.com>
18088
18089         * loader.h (MonoMethodInflated): New typedef.
18090
18091         * metadata.h (MonoMethodSignature): Removed `gen_method', make
18092         `generic_param_count' consume just 30 bits, added `is_inflated'
18093         and `has_type_parameters' flags (one bit each).
18094
18095         * class.c (mono_class_inflate_generic_method): Create a
18096         MonoMethodInflated instead of a MonoMethodNormal and set
18097         `is_inflated' in the method signature.
18098
18099         * class.h (MonoGenericMethod): Removed `generic_method'.
18100
18101 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
18102
18103         * image.c: Make sure the name of a MonoImage is always an absolute path.
18104           This fixes bug #54415.
18105
18106 2004-03-24  Martin Baulig  <martin@ximian.com>
18107
18108         * class.c (mono_class_setup_vtable): If we're a generic instance,
18109         use our generic type's vtable size.
18110
18111 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
18112
18113         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
18114         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
18115         problems.
18116
18117 2004-03-23  Martin Baulig  <martin@ximian.com>
18118
18119         * class.h (MonoDynamicGenericInst): Added `int count_events' and
18120         `MonoEvent *events'.
18121
18122         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
18123         (typebuilder_icalls): Added "get_event_info"; calls
18124         mono_reflection_event_builder_get_event_info(). 
18125
18126         * reflection.c (mono_reflection_generic_inst_initialize): Added
18127         `MonoArray *events'.
18128         (mono_reflection_event_builder_get_event_info): New function.
18129
18130 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
18131
18132         * object.h: add mono_type_initialization_init
18133
18134         * object.c (mono_runtime_class_init): 
18135         implement class constructor synchronization rules
18136         to cope with threading issues.  
18137         add mono_type_initialization_init
18138
18139         * appdomain.c (mono_runtime_init): call 
18140         mono_type_initialization_init
18141
18142         * class.h: removing initializing field from MonoVTable
18143
18144 2004-03-23  Martin Baulig  <martin@ximian.com>
18145
18146         * class.c (my_mono_class_from_generic_parameter): Use
18147         `param->name' if it's not NULL. 
18148
18149 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
18150
18151         * class.c: do not insert non-virtual methods in the vtable.
18152         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
18153         that means the method is non-virtual. This never would have
18154         happened before.
18155
18156 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
18157
18158         * profiler.c: Added lock for accessing coverage_hash.
18159
18160 2004-03-22  Martin Baulig  <martin@ximian.com>
18161
18162         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
18163         `method->method->signature->generic_param_count != 0' to make it
18164         work for interface methods.
18165
18166 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18167
18168         * process.c: quote the string passed to the shell using g_shell_quote.
18169
18170 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18171
18172         * threads.c:
18173         (mono_threads_manage): don't remove the finalizer thread and self
18174         from the threads hash table so that mono_thread_manage can be called
18175         more than once.
18176
18177 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18178
18179         * process.c: quote the arguments when UseShellExecute is true. Fixes
18180         bug #55790.
18181
18182 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18183
18184         * threads.c: set mono_thread_detach as a cleanup routine for every
18185         thread. This way it's always executed upon thread termination, either
18186         aborted or finished normally. No more xsp hangs!
18187
18188 2004-03-17  Martin Baulig  <martin@ximian.com>
18189
18190         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
18191         `int count_nested' and a `MonoType **nested'.
18192
18193         * reflection.c (mono_reflection_bind_generic_parameters): Moved
18194         most of the functionality into a new static
18195         do_mono_reflection_bind_generic_parameters() and don't take a
18196         `MonoType *nested_in' argument any more.  Don't compute nested
18197         types here.
18198         (mono_reflection_generic_inst_get_nested_types): New public method
18199         to get nested types.
18200
18201         * class.c (mono_class_create_generic): Set `klass->nested_in' if
18202         we're a nested class.
18203
18204         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
18205         mono_reflection_generic_inst_get_nested_types() to compute the
18206         nested types.
18207
18208 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
18209
18210         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
18211         descriptive error message under windows.
18212         
18213 2004-03-17  Martin Baulig  <martin@ximian.com>
18214
18215         * class.c (dup_type): Added `const MonoType *original' argument;
18216         copy the attrs from the original type.
18217
18218 2004-03-17  Martin Baulig  <martin@ximian.com>
18219
18220         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
18221         `m->generic_inst_cache' here.
18222
18223 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
18224
18225         * exception.h exception.c: Add stack_overflow_exception.
18226
18227 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18228
18229         * threadpool.c:
18230         (overlapped_callback): call SetEvent *after* invoking the callback.
18231         No need to call CloseHandle.
18232
18233 2004-03-16  Martin Baulig  <martin@ximian.com>
18234
18235         * reflection.c (mono_image_get_fieldref_token): Take a
18236         `MonoReflectionField *' instead of a `MonoClassField *' and a
18237         `MonoClass *'; store the `MonoReflectionField *' in the hash.
18238
18239 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18240
18241         * appdomain.c: don't add the culture to the filename we're looking for
18242         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
18243
18244 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18245
18246         * locales.c: don't ignore symbols when doing case insensitive compares.
18247         Thanks Dick! Fixes bug #54046.
18248
18249         * threads.c: surround 'threads' usage with enter/leave in
18250         mono_thread_manage.
18251
18252 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
18253
18254         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
18255         implicitly marshalled as [Out]. Fixes #55450.
18256
18257         (mono_marshal_get_runtime_invoke): Zero out the result if there is
18258         an exception.
18259
18260 2004-03-16  Martin Baulig  <martin@ximian.com>
18261
18262         * class.c (mono_class_from_generic_parameter): Use the actual
18263         parameter name. 
18264
18265 2004-03-16  Martin Baulig  <martin@ximian.com>
18266
18267         * reflection.c (type_get_signature_size): New static function.
18268         Compues the size of the type in a method signature.
18269         (method_get_signature_size): New static function; calls
18270         type_get_signature_size() to compute the actual size of the
18271         method's signature.
18272         (method_encode_signature): Use method_get_signature_size() to get
18273         the signature's size rather than using `nparams * 10'.
18274
18275 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18276
18277         * file-io.h: define here WapiOverlapped on windows. I don't want the
18278         regular OVERLAPPED one.
18279
18280         * file-io.c:
18281         * threadpool.c: somehow, BindIoCompletionCallback is not found.
18282         Disabling AIO on windows.
18283
18284 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18285
18286         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
18287         bug #55385.
18288
18289 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18290
18291         * appdomain.c: upgraded corlib version.
18292
18293         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
18294         and BeginWrite. Allow opening files for asynchrnous operations.
18295
18296         * file-io.h: new struct that maps FileStreamAsyncResult.
18297         * icall.c: added new icalls.
18298         * process.[ch]: support setting child process environment variables
18299         and use the SHELL or COMSPEC when UseShellExecute is true.
18300
18301         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
18302         callback for async. IO is here and also BindHandle.
18303
18304         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
18305         from here.
18306
18307 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
18308
18309         * reflection.c (create_custom_attr): Allow len == 0.
18310
18311         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
18312         computation on big-endian machines.
18313
18314 2004-03-13  Martin Baulig  <martin@ximian.com>
18315
18316         * class.h (MonoGenericInst): Added `int count_ifaces'.
18317
18318         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
18319         `ginst->count_ifaces' instead `klass->interface_count' since we
18320         may get called before the vtable is created.
18321
18322         * loader.c (mono_method_get_param_names): If we're a generic
18323         instance, return and don't initialize the class.
18324
18325         * reflection.c (mono_reflection_setup_generic_class): Don't call
18326         ensure_runtime_vtable().
18327         (mono_reflection_bind_generic_parameters): Set
18328         `ginst->count_ifaces'.
18329
18330 2004-03-11  Jackson Harper <jackson@ximian.com>
18331
18332         * icall.c:
18333         * unicode.c:
18334         * unicode.h: Remove unused System.Char icalls.
18335         
18336 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
18337
18338         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
18339         code when we P/Invoke the first library in Windows.Forms, instead
18340         of when we first open the assembly.
18341
18342         * assembly.c: Drop the lookup from here.
18343
18344 2004-03-10  Martin Baulig  <martin@ximian.com>
18345
18346         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
18347         class for properties, fields and events.  Finally fixes #54945.
18348
18349 2004-03-10  Martin Baulig  <martin@ximian.com>
18350
18351         * metadata.c (mono_metadata_class_equal): New static function;
18352         checks whether two generic instances or two generic parameters are
18353         equal.
18354         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
18355         compare classes.        
18356
18357 2004-03-10  Martin Baulig  <martin@ximian.com>
18358
18359         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
18360
18361         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
18362         argument and write it into the `reflection_info' field.
18363
18364         * icall.c
18365         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
18366         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
18367
18368 2004-03-09  Jackson Harper  <jackson@ximian.com>
18369
18370         * char-conversions.h: use 8 bits for numeric data its all we need
18371         * icall.c: numeric data is only 8 bits now.
18372
18373 2004-03-09  Martin Baulig  <martin@ximian.com>
18374
18375         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
18376
18377         * class.c (init_properties, init_events): Initialize the new
18378         `parent' field.
18379
18380         * reflection.c (typebuilder_setup_properties): Likewise.
18381         (typebuilder_setup_events): Likewise.
18382
18383         * reflection.h (MonoEventInfo): Replaced `parent with
18384         `declaring_type' and `reflected_type'.
18385
18386         * icall.c (ves_icall_get_property_info): Distinguish between
18387         declaring and reflected type.
18388         (ves_icall_get_event_info): Likewise.
18389
18390 2004-03-09  Martin Baulig  <martin@ximian.com>
18391
18392         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
18393         (ves_icall_Type_GetField): Correctly set field->klass.
18394
18395 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
18396
18397         * loader.h: Fix warning.
18398
18399 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
18400
18401         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
18402         library routine if present.  Notice that it will still continue
18403         executing even if its missing, for those working on the Gtk#
18404         edition of Windows.Forms.
18405
18406         * assembly.c (do_mono_assembly_open): If loading the
18407         System.Windows.Forms call mono_loader_wini_init.
18408
18409 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
18410
18411         * class.h: Added MonoRemoteClass struct.
18412         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
18413         function for MonoStrings.
18414         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
18415         Added internal call for getting the proxy type.
18416         * marshal.c: Get the type of transparent proxies from its remote_class.
18417         Added methods that generate the IL for type checks and casts:
18418         mono_marshal_get_isinst, mono_marshal_get_castclass, 
18419         mono_marshal_get_proxy_cancast.
18420         * marshal.h: Declaration of the previous new methods.
18421         * object.c: Added new moethods for creating and updating MonoRemoteClass
18422         instances: mono_remote_class, mono_upgrade_remote_class, 
18423         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
18424         * verify.c: FIx transparent_proxy_fields layout.
18425         * appdomain.c: Bump corlib version.
18426
18427 2004-03-04  Jackson Harper  <jackson@ximian.com>
18428
18429         * icall.c: Add icall to access char conversion tables.
18430         * char-conversions.h: Character conversion tables.
18431         * Makefile.am: Add char-conversions.h private header file.
18432         
18433 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
18434
18435         * appdomain.c (unload_thread_main): Increase unloading timeout to
18436         10 sec as a temporary workaround for Nant problems.
18437
18438 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
18439
18440         * gc.c: Add checks for GC_enable and GC_disable.
18441
18442         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
18443         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
18444         (bug #54988).
18445         
18446 2004-02-27  Martin Baulig  <martin@ximian.com>
18447
18448         * reflection.c (mono_reflection_bind_generic_parameters): Take a
18449         `MonoReflectionType *' instead of a `MonoType *'.
18450
18451 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
18452
18453         * gc.c (run_finalize): Avoid finalizing the object representing the
18454         finalizer thread.
18455         (finalizer_thread): Fix warning.
18456
18457 2004-02-25  Martin Baulig  <martin@ximian.com>
18458
18459         * class.c (_mono_class_get_instantiation_name): Added `int offset'
18460         argument for nested types.
18461         (mono_class_create_generic): Added support for nested generictypes.
18462
18463         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
18464         `GList *nested'.
18465
18466         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
18467
18468         * reflection.c (method_encode_signature): Increase the minimum
18469         value of `size' from 10 to 11.
18470         (mono_reflection_bind_generic_parameters): Take `int type_argc'
18471         and `MonoType **types' arguments instead of the `MonoArray
18472         *types'; added `MonoType *nested_in'.  Recursively instantiate
18473         nested classes. 
18474
18475 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
18476
18477         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
18478         stack_overflow_ex members which are used by exception handling.
18479
18480         * appdomain.c (mono_runtime_init): Initialize the new members.
18481
18482         * gc.c (mono_gc_enable): New helper function.
18483         * gc.c (mono_gc_disable): New helper function.
18484
18485 2004-02-23  Martin Baulig  <martin@ximian.com>
18486
18487         * icall.c: I must have been really stupid - make it actually work
18488         this time ;-)
18489
18490 2004-02-23  Martin Baulig  <martin@ximian.com>
18491
18492         * loader.c (method_from_memberref): Only inflate the method if
18493         it's in another klass.
18494
18495 2004-02-23  Martin Baulig  <martin@ximian.com>
18496
18497         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
18498         (mono_class_init): If we're a generic instance and an interface,
18499         compute `class->interface_id'; also create `class->interfaces'
18500         here and inflate them.
18501
18502         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
18503         `ginst->is_open'.
18504         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
18505
18506         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
18507
18508 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
18509
18510         * reflection.c (method_encode_code): Improved the error message
18511         generated by the exception.
18512
18513 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18514
18515         * icall.c: Martin did not do what he said in the ChangeLog for
18516         2004-02-18, but put back the changes for properties and events.
18517         Commenting those changes out again and adding comment to bug #54518.
18518         
18519         * process.c: removed warning.
18520
18521 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
18522
18523         * marshal.c (emit_struct_conv): Print an error message instead of
18524         asserting when a type does not have the StructLayout attribute.
18525
18526 2004-02-20  Martin Baulig  <martin@ximian.com>
18527
18528         * reflection.c (mono_type_get_object): Also use the cache for
18529         generic instances.
18530         (mono_reflection_bind_generic_parameters): Always compute
18531         `ginst->ifaces'.        
18532
18533 2004-02-20  Martin Baulig  <martin@ximian.com>
18534
18535         * class.h (MonoGenericMethod): Removed `klass'.
18536
18537         * class.c (mono_class_inflate_generic_method): Added `MonoClass
18538         *klass' argument.
18539
18540 2004-02-20  Martin Baulig  <martin@ximian.com>
18541
18542         * reflection.c (method_encode_methodspec): Actually use the
18543         uninflated signature for the memberref.
18544
18545 2004-02-20  Martin Baulig  <martin@ximian.com>
18546
18547         * class.h (MonoGenericMethod): Removed `declaring'.
18548
18549         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
18550         is NULL, compute it here.
18551
18552 2004-02-20  Martin Baulig  <martin@ximian.com>
18553
18554         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
18555
18556         * metadata.c (mono_metadata_generic_inst_hash): New method.
18557         (mono_metadata_generic_inst_equal): New method.
18558
18559         * reflection.c (mono_reflection_bind_generic_parameters): Use the
18560         `klass->image->generic_inst_cache' cache to avoid creating
18561         duplicate MonoGenericInst's.
18562
18563         * class.c (mono_class_inflate_generic_type): Use the cache.
18564
18565 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
18566
18567         * object.c: fixed gc descriptor calculation for embedded valuetypes.
18568
18569 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18570
18571         * icall.c: added Socket.WSAIoctl icall.
18572
18573         * socket-io.[ch]: implemented
18574         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
18575
18576 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
18577
18578         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
18579
18580 2004-02-18  Urs C Muff  <umuff@quark.com>
18581
18582         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
18583         this work on PPC and other big-endian architectures.
18584
18585         * debug-mono-symfile.h: Prepended the names of all the `guint32'
18586         fields with an underscore to make sure they're only accessed by
18587         the read32() macro.
18588
18589 2004-02-18  Martin Baulig  <martin@ximian.com>
18590
18591         * icall.c: Put the klass->refclass changes back for methods and
18592         fields, but not for properties and events.  We're currently not
18593         distinguishing between DeclaringType and ReflectedType for
18594         properties and events, that's what caused the regressions.
18595
18596 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18597
18598         * object.c:
18599         (mono_async_result_new): the handle can be NULL.
18600
18601         * threadpool.c: Use an event instead of a semaphore, don't initialize
18602         it until needed. This saves quite a few semaphores from being created
18603         when using the threadpool.
18604
18605 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
18606
18607         * object.c (mono_string_is_interned_lookup): Fix interning of long
18608         strings. Fixes #54473.
18609
18610         * domain.c (ldstr_equal): Optimize if the two strings are equal.
18611
18612         * icall.c: Revert the klass->refclass changes since they introduce
18613         regressions (bug #54518).
18614
18615 2004-02-18  Martin Baulig  <martin@ximian.com>
18616
18617         * class.c (mono_class_init): If we're a generic instance and don't
18618         come from a TypeBuilder, inflate our members here.
18619         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
18620         (mono_class_create_generic): New public method.
18621         (mono_class_initialize_generic): Removed.
18622         (get_instantiation_name): Renamed to
18623         _mono_class_get_instantiation_name() and made it public.
18624
18625 2004-02-18  Martin Baulig  <martin@ximian.com>
18626
18627         * class.c (mono_class_inflate_generic_type): Clear the new
18628         instance's `nginst->klass' when inflating a generic instance.
18629         (mono_class_is_subclass_of): Added (basic) support for generic
18630         instances.
18631
18632 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
18633
18634         * appdomain.h, domain.c: use a MonoCodeManager instead of a
18635         MonoMempool to hold compiled native code.
18636
18637 2004-02-17  Martin Baulig  <martin@ximian.com>
18638
18639         * class.h (MonoDynamicGenericInst): Added `count_properties' and
18640         `properties'.
18641
18642         * reflection.c (mono_reflection_generic_inst_initialize): Added
18643         `MonoArray *properties' argument.
18644
18645         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
18646
18647 2004-02-17  Martin Baulig  <martin@ximian.com>
18648
18649         * icall.c (ves_icall_Type_GetFields): Renamed to
18650         ves_icall_Type_GetFields_internal() and added a
18651         `MonoReflectionType *rtype' argument; pass it to
18652         mono_field_get_object() to set the field's "reflected" type.
18653         (ves_icall_Type_GetConstructors): Likewise.
18654         (ves_icall_Type_GetEvents): Likewise.
18655         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
18656         argument; pass it to mono_method_get_object() to set the method's
18657         "reflected" type.       
18658
18659 2004-02-17  Martin Baulig  <martin@ximian.com>
18660
18661         * class.h (MonoDynamicGenericInst): New type.
18662         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
18663
18664         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
18665         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
18666         (ves_icall_MonoGenericInst_GetFields): New interncall.
18667
18668         * class.c (mono_class_from_generic): Don't call
18669         mono_class_initialize_generic() if this is a dynamic instance;
18670         ie. it's being created from a TypeBuilder.
18671         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
18672         `class->byval_arg.type'.
18673
18674         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
18675         to `inflate_method' and made static.
18676         (mono_reflection_inflate_field): Removed.
18677         (mono_reflection_generic_inst_initialize): New public method.
18678
18679         * reflection.h (MonoReflectionGenericInst): Removed `methods',
18680         `ctors' and `fields'; added `initialized'.
18681
18682 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
18683
18684         * debug-helpers.c (mono_method_full_name): Fix output for empty
18685         namespaces.
18686
18687 2004-02-12  Martin Baulig  <martin@ximian.com>
18688
18689         * class.h (MonoClassField): Added `MonoType *generic_type'.
18690
18691         * reflection.c (mono_image_get_fieldref_token): Added support for
18692         instantiated generic types.
18693         (field_encode_inflated_field): Removed.
18694         (mono_image_get_inflated_field_token): Removed.
18695         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
18696
18697         * reflection.h (MonoReflectionInflatedField): Removed.
18698
18699 2004-02-12  Martin Baulig  <martin@ximian.com>
18700
18701         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
18702         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
18703
18704         * reflection.c (mono_image_get_methodspec_token): Take a
18705         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
18706         (mono_image_create_token): Check whether we have a
18707         `method->signature->gen_method' and call
18708         mono_image_get_methodspec_token() if appropriate.
18709         (inflated_method_get_object): Removed.
18710         (mono_reflection_bind_generic_method_parameters): Return a
18711         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
18712         (mono_reflection_inflate_method_or_ctor): Likewise.
18713
18714         * reflection.h (MonoReflectionInflatedMethod): Removed.
18715
18716 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
18717
18718         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
18719         for custom valuetype marshalling.
18720
18721         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
18722
18723 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18724
18725         * icall.c: fixed WSAGetLastError_internal name.
18726
18727 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
18728
18729         * threads.c (mono_thread_attach): Allow this to be called multiple
18730         times for a thread.
18731         
18732         * threads.c (build_wait_tids): Do not wait for ourselves.
18733
18734         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
18735         appdomain list is empty.
18736
18737         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
18738         memory returned by mono_string_builder_to_utf16, since it points into
18739         managed memory. Thanks to Bernie Solomon for noticing this.
18740
18741         * icall.c: Add AppDomainSetup icalls.
18742
18743         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
18744
18745         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
18746         types.
18747
18748         * reflection.c (reflection_methodbuilder_to_mono_method): Save
18749         custom attributes to the method_aux struct. Also fix array indexes etc.
18750
18751         * loader.c (mono_method_get_param_names): Make dynamic case work again.
18752         
18753 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
18754
18755         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
18756         (both static and runtime) and reduce startup time.
18757
18758 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
18759
18760         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
18761         AsAny marshalling conversion instead of crashing.
18762
18763         * marshal.c: Fix warnings.
18764
18765 2004-02-09  Martin Baulig  <martin@ximian.com>
18766
18767         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
18768
18769         * reflection.h (MonoReflectionInflatedMethod): Removed the
18770         `declaring' field, it's now in the unmanaged MonoGenericMethod.
18771
18772         * reflection.c (method_encode_methodspec): Removed the `method'
18773         argument; we get it from `gmethod->declaring'.
18774         (inflated_method_get_object): Removed the `declaring' argument.
18775
18776 2004-02-09  Martin Baulig  <martin@ximian.com>
18777
18778         * class.h (MonoGenericMethod): New type.
18779         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
18780         `generic_method'.
18781
18782         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
18783         a `MonoGenericMethod *gen_method' one.
18784
18785         * class.c (mono_class_inflate_generic_type): Take an additional
18786         `MonoGenericMethod * argument.  This is only non-NULL if we're
18787         inflating types for a generic method.   
18788         (mono_class_inflate_generic_signature): Renamed to
18789         inflate_generic_signature() and made static; take a
18790         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
18791         (inflate_generic_header): Take a `MonoGenericMethod *' argument
18792         instead of a `MonoGenericInst *' one.
18793         (mono_class_inflate_generic_method): Likewise.
18794
18795         * reflection.c (encode_generic_method_sig): Take a
18796         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
18797         (method_encode_methodspec): Likewise.
18798         (inflated_method_get_object): Likewise. 
18799
18800         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
18801         field with a `MonoGenericMethod *gmethod' one.  
18802
18803 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
18804
18805         * class.h (mono_class_has_parent): add parens to expansion
18806         so you can ! this.
18807
18808 2004-02-08  Martin Baulig  <martin@ximian.com>
18809
18810         * image.h (MonoImage): Removed `generics_cache'.
18811
18812         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
18813         instead of a `MonoType *' argument; removed the `inflate_methods'
18814         argument.  Don't inflate methods here.
18815
18816         * loader.c (find_method): If it's a generic instance, call
18817         mono_class_init() on the `sclass->generic_inst->generic_type'.
18818
18819         * metadata.c (mono_type_size): Make this work on uninitialized
18820         generic instances; call it on the `ginst->generic_type's class.
18821
18822         * reflection.c (mono_reflection_bind_generic_parameters): Call
18823         mono_class_from_generic() to create the `ginst->klass'.
18824
18825 2004-02-08  Martin Baulig  <martin@ximian.com>
18826
18827         * class.h (MonoClass): Changed type of `generic_inst' from
18828         `MonoType *' to `MonoGenericInst *'.
18829
18830 2004-02-08  Martin Baulig  <martin@ximian.com>
18831
18832         * icall.c (ves_icall_Type_BindGenericParameters): Just call
18833         mono_type_get_object(), this is now creating a `MonoGenericInst'
18834         for MONO_TYPE_GENERICINST.
18835         (ves_icall_MonoGenericInst_GetParentType): Likewise.
18836         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
18837
18838         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
18839         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
18840         (inflated_method_get_object): Added `MonoClass *refclass' argument.
18841         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
18842         and reflected type.
18843
18844         * reflection.h (MonoReflectionInflatedMethod): Removed
18845         `declaring_type' and `reflected_type'.
18846
18847 2004-02-08  Martin Baulig  <martin@ximian.com>
18848
18849         * class.h (MonoGenericInst): Added `MonoType *parent' and
18850         `MonoType **ifaces'.
18851
18852         * reflection.h (MonoReflectionGenericInst): Removed `klass',
18853         `parent' and `interfaces'.
18854
18855         * reflection.c (mono_reflection_bind_generic_parameters): Take a
18856         `MonoType *' argument and return a `MonoType *'.
18857
18858         * icall.c
18859         (ves_icall_MonoGenericInst_GetParentType): New interncall.
18860         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
18861
18862 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
18863
18864         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
18865         valuetype marshalling.
18866
18867 2004-02-06  Martin Baulig  <martin@ximian.com>
18868
18869         * class.c
18870         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
18871         (my_mono_class_from_generic_parameter): Likewise.
18872
18873 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
18874
18875         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
18876         contents of the symbol files lazily.
18877
18878         * object.h (MonoThread): Add 'name' and 'name_len' fields.
18879
18880         * threads.h threads.c icall.c: New icalls for getting and setting the
18881         threads name.
18882
18883 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
18884
18885         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
18886         Raise an exception when the domain is not found.
18887
18888 2004-02-03  Martin Baulig  <martin@ximian.com>
18889
18890         * reflection.c (mono_image_get_methodspec_token): Use the
18891         uninflated signature; fixes gen-33.
18892
18893 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
18894
18895         * gc.c threads.c: Make the finalizer thread a normal managed thread so
18896         the finalizer code can use thread functionality.
18897
18898         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
18899         the finalizer thread.
18900
18901         * threads.c: Make some functions more robust.
18902
18903         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
18904
18905         * metadata.h: Add new marshalling conventions.
18906
18907         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
18908         stringbuilder marshalling. Fixes #53700.
18909
18910         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
18911
18912         * reflection.c (mono_image_get_type_info): Save declarative security
18913         info.
18914
18915         * reflection.c (mono_image_get_field_info): Handle uninitialized 
18916         unmanaged fields as well.
18917
18918         * appdomain.c: Bump corlib version.
18919
18920 2004-02-01  Martin Baulig  <martin@ximian.com>
18921
18922         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
18923         method type arguments.  
18924
18925 2004-01-30  Duncan Mak  <duncan@ximian.com>
18926
18927         * marshal.h: Add prototype for
18928         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
18929         and
18930         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
18931         fix the build.
18932
18933 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
18934
18935         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
18936         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
18937
18938 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
18939
18940         * marshal.c (mono_marshal_get_native_wrapper): Add support for
18941         custom marshalling of valuetypes.
18942
18943         * marshal.c: Fix some warnings.
18944
18945 2004-01-29  Martin Baulig  <martin@ximian.com>
18946
18947         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
18948         for generic method parameters.
18949
18950         * reflection.c (method_encode_methodspec): Write the uninflated
18951         signature into the methodspec table.
18952         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
18953         is always the uninflated method.
18954         (reflection_methodbuilder_to_mono_method): Copy the generic
18955         parameters from the MethodBuilder into `header->gen_params'.
18956
18957 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
18958
18959         * class.c (mono_class_from_generic_parameter): Fix warning.
18960
18961 2004-01-27  Martin Baulig  <martin@ximian.com>
18962
18963         * class.c (mono_class_from_generic_parameter): Don't create
18964         `klass->methods' here.  
18965
18966 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
18967
18968         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
18969         extension since it does not work with libraries named lib<FOO>.dll.so.
18970
18971 2004-01-25  Martin Baulig  <martin@ximian.com>
18972
18973         * class.c (mono_class_inflate_generic_type): Added support for
18974         MONO_TYPE_GENERICINST.
18975
18976         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
18977         inflate methods on open constructed types.      
18978
18979 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18980
18981         * object.c: fire ProcessExit event in the root AppDomain after running
18982         Main. Fixes bug #53299.
18983
18984 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
18985
18986         * socket-io.c: include the new socket-wrappers.h header.
18987         Use the wrappers instead of the unix socket functions to make the code
18988         more clear.
18989
18990 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
18991
18992         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
18993
18994         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
18995         Fixes #22532.
18996
18997 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
18998
18999         * reflection.c (mono_image_create_pefile): Handle the case when the
19000         entry point is not a MethodBuilder.
19001
19002         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
19003         field to ReflectionMethod since it is not allways a builder.
19004
19005         * reflection.c (type_get_fully_qualified_name): New helper function to
19006         return the fully qualified name of a type.
19007
19008         * reflection.c (encode_marshal_blob): Always emit the fully qualified
19009         type name for custom marshallers.
19010
19011         * reflection.c (mono_marshal_spec_from_builder): Ditto.
19012
19013         * class.c (mono_class_setup_vtable): If a parent class already 
19014         implements an interface, use the implementing methods from that class.
19015         Fixes #53148.
19016
19017 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19018
19019         * threadpool.c: just return instead of ExitThread to allow for thread
19020         clean up earlier.
19021
19022 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
19023
19024         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
19025         when closing resource modules.
19026
19027         * reflection.c (mono_image_create_pefile): Handle the case when the
19028         entry point is not a MethodBuilder.
19029
19030         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
19031         field to ReflectionMethod since it is not allways a builder.
19032
19033 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
19034
19035         * marshal.c (mono_marshal_get_managed_wrapper): 
19036         mono_marshal_alloc takes native int so CONV_I
19037         the arg for 64bits.
19038
19039 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
19040
19041         * reflection.c (fixup_cattrs): New function to fixup the methoddef
19042         tokens in the cattr table. Fixes #53108.
19043
19044 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19045
19046         * loader.c: don't trim ".dll" before looking up in the config file.
19047         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
19048
19049 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
19050
19051         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
19052         Return the module which contains the resource as well.
19053         (ves_icall_System_Reflection_Module_Close): New icall.
19054
19055         * appdomain.c: Bump corlib version number.
19056
19057         * image.c (mono_image_addref): New public function.
19058
19059         * assembly.c: Call mono_image_addref.
19060
19061         * reflection.c (mono_module_get_object): Increase reference count of 
19062         the image.
19063
19064         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
19065         Fixes #22532.
19066
19067         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
19068         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
19069         proper exceptions on DllImport problems.
19070
19071 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
19072
19073         * class.c, metadata.c: eliminate CSIZE macro.
19074
19075 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
19076
19077         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
19078         * object.h: Added async_callback field in MonoAsyncResult.
19079         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
19080         * verify.c: Added async_callback in MonoAsyncResult layout.
19081
19082 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
19083
19084         * reflection.c (mono_reflection_get_custom_attrs): Add support
19085         for Modules.
19086
19087 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
19088
19089         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
19090         marshalling.
19091         (mono_marshal_method_from_wrapper): Add null pointer check.
19092
19093 2004-01-16  Martin Baulig  <martin@ximian.com>
19094
19095         * debug-mono-symfile.h: Set version number to 36 and reflect
19096         latest symbol writer changes.
19097
19098 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
19099
19100         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
19101         multi-dimensional arrays.
19102         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
19103         (mono_class_from_mono_type): Use bounded_array_class_get.
19104         
19105         * class.c (mono_bounded_array_class_get): New function which takes
19106         a 'bounded' bool argument to distinguish vectors from one dimensional
19107         arrays.
19108
19109         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
19110         bounded_array_class_get if the array has bounds.
19111
19112         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
19113         Search modules loaded using AssemblyBuilder:AddModule as well.
19114
19115 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19116
19117         * appdomain.c: increased corlib version.
19118         * filewatcher.c: removed g_print.
19119         * icall.c:
19120         (get_property_info): only allocate what is actually requested.
19121         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
19122
19123 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19124
19125         * Makefile.am: added filewatcher.[ch]
19126         * filewatcher.[ch]: FileSystemWatcher runtime support.
19127         * icall.c: added new FSW icalls.
19128
19129 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
19130
19131         * string-icalls.c: fix stringbuilder regression as suggested by
19132         Iain McCoy <iain@mccoy.id.au>.
19133
19134 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
19135
19136         * process.c (process_read_stringtable_block): Recognize '007f' as
19137         a language neutral stringtable block.
19138
19139 2004-01-12  Patrik Torstensson
19140
19141         * object.h (MonoStringBuilder) : Changed layout to support our
19142         new stringbuilder class.
19143         * marshal.c: Change marshalling to support the new layout of 
19144         string builder.
19145         * appdomain.c: increased version number because new layout of
19146         string builder.
19147
19148 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
19149
19150         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
19151         assembly name as an string instead of an AssemblyName, since it is
19152         easier to extract info from it.
19153
19154         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
19155         the culture subdirectories too. Fixes #52231.
19156
19157 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19158
19159         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
19160         It takes 2 new parameters with an optional name for the method to look
19161         for and case ignoring info.
19162
19163         * threadpool.c: removed unused variable.
19164
19165 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19166
19167         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
19168         It takes 2 new parameters with an optional name for the property to look
19169         for and case ignoring info.
19170         Fixes bug #52753.
19171
19172 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
19173
19174         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
19175         Fix #52451.
19176
19177 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19178
19179         * appdomain.c:
19180         * assembly.c: escape the uri before passing it to g_filename_from_uri.
19181         Fixes bug #52630.
19182
19183 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
19184
19185         * reflection.c: Add support for more than one unmanaged resource.
19186
19187         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
19188         in field->def_value, as done in all other cases.
19189
19190         * reflection.c (mono_reflection_get_custom_attrs): Add support for
19191         TypeBuilders.
19192
19193         * reflection.c (mono_reflection_create_runtime_class): Remove 
19194         errorneous assignment to klass->element_class, since it is already
19195         done in mono_reflection_setup_internal_class.
19196
19197 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19198
19199         * gc.c: added missing LeaveCriticalSection.
19200         * icall.c: indented a couple of lines.
19201         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
19202         if we call EndInvoke inside a callback. Fixes bug #52601.
19203
19204 2004-01-07  Martin Baulig  <martin@ximian.com>
19205
19206         * mono-debug-debugger.h
19207         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
19208
19209 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
19210
19211         * appdomain.c: Use messages in NotImplementedException.
19212
19213         * exception.c (mono_get_exception_not_implemented): Now this takes
19214         a message argument.
19215
19216         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
19217         exception instead of g_asserting an aborting when something is not
19218         implemented.
19219
19220         Add some inline docs.
19221
19222 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
19223
19224         * reflection.h: Update after changes to object layout.
19225
19226         * reflection.c: Implement saving of unmanaged aka win32 resources.
19227
19228         * appdomain.c: Bump version number.
19229
19230         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
19231         Handle missing domains gracefully.
19232
19233 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
19234
19235         * file-io.c : On Windows, there are much more invalid_path_chars.
19236
19237 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
19238
19239         * class.h, object.c: prepare for GetType () speedup.
19240
19241 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
19242
19243         * profiler.c: workaround for --profile null reference exception on
19244           cygwin. Patch by Patrik Torstensson.
19245
19246 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
19247
19248         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
19249         make work for unaligned access.
19250
19251 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
19252
19253         * class.c: small cleanup (class->fields [i] -> field).
19254         * image.c: check address of metadata is valid.
19255
19256 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
19257
19258         * assembly.h assembly.c (mono_assembly_loaded): New public function to
19259         search the list of loaded assemblies.
19260
19261         * reflection.c (mono_reflection_type_from_name): Use 
19262         mono_assembly_loaded instead of mono_image_loaded.
19263
19264         * reflection.c: Fix warnings.
19265
19266 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
19267
19268         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
19269         is dynamic. This is needed since an assembly can contain both dynamic and
19270         non-dynamic images.
19271
19272         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
19273         assembly->dynamic.
19274
19275         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
19276
19277         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
19278         to store modules loaded using AddModule.
19279
19280         * reflection.c (mono_image_fill_file_table): Generalize this so it works
19281         on Modules.
19282
19283         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
19284
19285         * reflection.c (mono_image_fill_export_table_from_module): New function to
19286         fill out the EXPORTEDTYPES table from a module.
19287
19288         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
19289         into a separate function. Also handle loaded non-dynamic modules.
19290
19291         * reflection.c (mono_image_basic_init): Fix memory allocation.
19292
19293         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19294
19295         * assembly.c (mono_assembly_load_references): Make this public.
19296
19297 2003-12-19  Martin Baulig  <martin@ximian.com>
19298
19299         * class.c (mono_class_initialize_generic): Made this static, take
19300         a `MonoGenericInst *' instead of a `MonoClass *'.
19301         (mono_class_from_generic): Call mono_class_initialize_generic()
19302         unless we're already initialized or being called from
19303         do_mono_metadata_parse_generic_inst().
19304
19305         * class.h (MonoGenericInst): Added `initialized' and
19306         `init_pending' flags.
19307
19308         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
19309         `mono_class_init (gklass)' or mono_class_initialize_generic()
19310         here; set `generic_inst->init_pending' while parsing the
19311         `type_argv'.
19312
19313 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
19314
19315         * locales.c: include string.h for memxxx prototypes
19316
19317 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
19318
19319         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
19320         constructor when accessing literal fields.
19321
19322 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
19323
19324         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19325
19326         * reflection.c (assembly_add_resource_manifest): New function to fill
19327         the MANIFESTRESOURCE table.
19328
19329         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
19330
19331         * reflection.h: Update to changes in class layout.
19332
19333         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
19334         Reenable call to mono_runtime_is_shutting_down ().
19335
19336         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
19337         determine if the runtime is shutting down.
19338
19339 2003-12-16  Jackson Harper <jackson@ximian.com>
19340
19341         * icall.c: comment out call to mono_runtime_is_shutting_down to
19342         fix build.
19343         
19344 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
19345
19346         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
19347         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
19348
19349 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
19350
19351         * reflection.c: move definition of swap_with_size
19352         to before its first call
19353
19354 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
19355
19356         * appdomain.c (mono_runtime_is_shutting_down): New public function.
19357
19358         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
19359         icall.
19360
19361         * object.c: Fix warnings.
19362
19363         * icall.c (ves_icall_Type_Get...): Only consider inherited static
19364         members if FlattenHierarchy is set.
19365
19366         * reflection.c (mono_image_add_decl_security): New function to emit
19367         declarative security.
19368
19369         * reflection.h reflection.c: Add support for declarative security.
19370
19371         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
19372         
19373 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
19374
19375         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
19376         
19377         * appdomain.c verify.c: Moved corlib version checking into its own
19378         function in appdomain.c since it needs to create vtables etc.
19379
19380 2003-12-13  Patrik Torstensson <p@rxc.se>
19381
19382         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
19383         instead of unwrapped server.
19384
19385 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
19386
19387         * verify.c (check_corlib): Fix field index.
19388
19389 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
19390
19391         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
19392         GetGacPath icall.
19393
19394 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
19395
19396         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
19397         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
19398         cope with sizeof(size_t) != sizeof(guint32).
19399
19400 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19401
19402         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
19403         in case of failure.
19404
19405 2003-12-10  Mark Crichton <crichton@gimp.org>
19406
19407         * icall.c: removed the GetNonZeroBytes.  We now handle this case
19408         in managed code.
19409
19410         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
19411
19412 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
19413
19414         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
19415         marked as deleted.
19416
19417 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
19418
19419         * verify.c (check_corlib): Handle the case when the version field is 
19420         initialized by a static constructor.
19421
19422 2003-12-08  Patrik Torstensson  <p@rxc.se>
19423
19424     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
19425
19426 2003-12-08  Martin Baulig  <martin@ximian.com>
19427
19428         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
19429         a MonoReflectionGenericParameter, also take the parameter index
19430         and name as arguments.
19431         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
19432         (ves_icall_MonoGenericParam_initialize): New interncall.
19433         (ves_icall_Type_make_byref_type): New interncall.
19434
19435         * reflection.h (MonoReflectionGenericParam): Derive from
19436         MonoReflectionType, not just from MonoObject.  Added `refobj' and
19437         `index' fields.
19438
19439         * reflection.c (mono_reflection_define_generic_parameter): Create
19440         and return a new MonoReflectionGenericParam; don't initialize the
19441         constraints here.
19442         (mono_reflection_initialize_generic_parameter): New public method;
19443         initializes the constraints and creates the `param->pklass'.
19444
19445 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
19446
19447         * reflection.h reflection.c: Use the new fields 'num_types', 
19448         'num_fields' and 'num_methods' to track the number of types etc.
19449
19450         * verify.c (check_corlib): Check corlib version number.
19451
19452 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
19453
19454         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
19455         function works on all methods.
19456
19457 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
19458
19459         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
19460         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
19461         the custom_type_info flag of the transparent proxy.
19462         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
19463         objects that supports IRemotingTypeInfo.
19464         * object.h: Added custom_type_info field in transparent proxy.
19465
19466 2003-12-06  Martin Baulig  <martin@ximian.com>
19467
19468         * class.c (mono_class_create_from_generic): Removed.
19469         (mono_class_from_generic): Check `ginst->klass' before doing
19470         anything else.  This is important to fully support "recursive"
19471         generic types.
19472
19473         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
19474         empty `generic_inst->klass' before doing anything else.
19475
19476 2003-12-06  Dick Porter  <dick@ximian.com>
19477
19478         * verify.c: 
19479         * object.h:
19480         * icall.c:
19481         * locales.c: Use C structs to access class fields.  Don't do a
19482         conversion between MonoString and UChar because both are
19483         platform-endian UTF-16.  Compare now takes startindex and count
19484         parameters.  Add a char overload for IndexOf.  Speed up the
19485         invariant string IndexOf.
19486
19487 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
19488
19489         * Makefile.am (monosn_LDADD): Fix parallel build.
19490
19491 2003-12-04  Martin Baulig  <martin@ximian.com>
19492
19493         * icall.c
19494         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
19495         (ves_icall_Type_make_array_type): New interncall.       
19496
19497 2003-12-04  Martin Baulig  <martin@ximian.com>
19498
19499         * locales.c: also change it in the !HAVE_ICU case.
19500
19501 2003-12-04  Dick Porter  <dick@ximian.com>
19502
19503         * icall.c:
19504         * locales.c: construct_compareinfo is now in CompareInfo, not
19505         CultureInfo.
19506
19507 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
19508
19509         * image.c (mono_image_load_file_for_image): Cache loaded images in the
19510         image->files array.
19511
19512         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
19513         table as well.
19514
19515         * assembly.c (mono_assembly_load_references): Only load references
19516         once.
19517
19518         * class.c (mono_class_from_name): Avoid linear search of the 
19519         EXPORTEDTYPE table.
19520
19521         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
19522
19523 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
19524
19525         * image.h (MonoImage): Add 'field_cache' field.
19526
19527         * loader.c (mono_field_from_token): Cache field lookups.
19528         
19529         * reflection.c (mono_module_get_object): Fix name property.
19530
19531         * icall.c (ves_icall_get_enum_info): Update after changes to 
19532         mono_metadata_get_constant_index ().
19533
19534         * icall.c: Get rid of get_type_info icall, use a separate icall for
19535         each type property to avoid needless memory allocations. Fixes #51514.
19536
19537         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
19538         to avoid needless binary searches.
19539
19540         * class.c (class_compute_field_layout): Move the initialization of
19541         field->def_value to mono_class_vtable ().
19542
19543         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
19544         non-corlib types.
19545
19546         * object.c (mono_object_allocate): Make it inline.
19547
19548         * object.c (mono_object_allocate_spec): Make it inline.
19549         
19550 2003-12-02  Dick Porter  <dick@ximian.com>
19551
19552         * locales.c (create_NumberFormat): NumberFormatInfo construction.
19553         Patch by Mohammad DAMT (mdamt@cdl2000.com).
19554
19555 2003-12-01  Dick Porter  <dick@ximian.com>
19556
19557         * threads.c: Fix signature and call in CreateMutex and
19558         CreateEvent.
19559
19560 2003-12-01  Dick Porter  <dick@ximian.com>
19561
19562         * icall.c: 
19563         * locales.c: Implement string compares and searching
19564
19565         * object.h: Add extra Thread field
19566
19567 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
19568
19569         * reflection.c (fixup_method): Add support for MonoCMethod.
19570
19571 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
19572
19573         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
19574
19575         * reflection.c (assembly_name_to_aname): Allow extra characters in
19576         assembly names. Fixes #51468.
19577
19578 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
19579
19580         * exception.c (mono_exception_from_name_domain): New helper function.
19581
19582         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
19583         exception object in the correct domain.
19584
19585         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
19586         formatting + make a copy a the input data.
19587
19588         * loader.c (mono_get_method_from_token): Methods which contain
19589         native code do not have entries in the ImplMap.
19590
19591         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
19592         Thanks to Gonzalo for spotting this.
19593         
19594         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
19595         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
19596
19597         * assembly.h (mono_assembly_load_from): Split the second part of 
19598         assembly loading into a new public function.
19599
19600         * exception.h (mono_get_exception_bad_image_format): New function.
19601
19602 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
19603
19604         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
19605         Enumerate all modules inside a dynamic assembly. Fixes #51293.
19606         
19607         * icall.c: Add new icall for creating dynamic methods.
19608
19609         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
19610
19611         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
19612
19613         * reflection.c (mono_reflection_create_dynamic_method): New icall to
19614         create a dynamic method.
19615
19616         * reflection.c (resolve_object): New helper function.
19617
19618         * reflection.c: Generalize ReflectionMethodBuilder and the functions
19619         which manipulate it so they can also work on dynamic methods.
19620
19621         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
19622         creating the MonoReflectionMethodAux structure if it is not needed.
19623         
19624         * reflection.h verify.c: Update after changes to object layout.
19625
19626         * reflection.c (method_builder_encode_signature): Fix compilation on
19627         gcc 2.95.x.
19628
19629 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
19630
19631         * appdomain.h: Added support for context static fields. Added static_data
19632           field to MonoAppContext and renamed thread_static_fields to a more
19633           generic special_static_fields in MonoAppDomain, since it can now contain
19634           context static fields.
19635         * domain.c: Updated hashtable name.
19636         * object.c: Replaced field_is_thread_static() for a more generic
19637           field_is_special_static() which also checks for context static attribute.
19638           In mono_class_vtable(), added support for static context fields.
19639         * threads.c: Changed methods that manage thread static fields to more
19640           generic methods so they can be reused both for thread and context static
19641           data.
19642         * threads.h: Declared some new methods.
19643
19644 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
19645
19646         * reflection.h: Update after changes to the managed types.
19647
19648         * reflection.c (encode_custom_modifiers): New helper function.
19649
19650         * reflection.c (method_encode_signature): Emit custom modifiers.
19651
19652         * reflection.c (field_encode_signature): Emit custom modifiers.
19653
19654 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
19655
19656         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
19657
19658         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
19659         implementation.
19660
19661         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
19662         icall.
19663
19664         * object.c (mono_field_get_value_object): New function.
19665
19666         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
19667         specific.
19668
19669 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
19670
19671         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
19672         return a preallocated out-of-memory exception instance.
19673
19674         * object.c (out_of_memory): Use the new function.
19675
19676         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
19677         flag is before the custom modifiers. Fixes #49802.
19678
19679 2003-11-16  Martin Baulig  <martin@ximian.com>
19680
19681         * class.c (mono_class_is_open_constructed_type): Implemented the
19682         MONO_TYPE_GENERICINST case.
19683
19684 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
19685
19686         * assembly.c (mono_assembly_fill_assembly_name): New function to
19687         fill out the MonoAssemblyName structure.
19688         (mono_assembly_open): Use the new function.
19689
19690         * icall.c (fill_reflection_assembly_name): New helper function.
19691
19692         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
19693         new function.
19694
19695         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
19696
19697 2003-11-15  Martin Baulig  <martin@ximian.com>
19698
19699         * class.c (mono_class_is_open_constructed_type): New public
19700         function; checks whether a type is an open constructed type,
19701         ie. whether it still contains type parameters.
19702         (mono_class_inflate_generic_type): If we're a type parameter and
19703         the inflated type is also a MONO_TYPE_(M)VAR, return the original
19704         type.
19705
19706         * class.h (MonoGenericInst): Added `guint32 is_open'.
19707
19708         * loader.c (method_from_methodspec): Check whether we're an open
19709         or closed constructed type and set `ginst->is_open'.
19710
19711         * reflection.c (mono_reflection_bind_generic_parameters): Check
19712         whether we're an open or closed constructed type and set
19713         `ginst->is_open'.
19714         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
19715         from open constructed types.
19716
19717 2003-11-15  Martin Baulig  <martin@ximian.com>
19718
19719         * reflection.c (mono_reflection_bind_generic_parameters): If we're
19720         a generic instance (instead of a generic type declaration) with
19721         unbound generic parameters, bind them to our actual types.
19722
19723 2003-11-14  Martin Baulig  <martin@ximian.com>
19724
19725         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
19726
19727         * reflection.c (mono_reflection_bind_generic_parameters): If we're
19728         an interface type, populate `res->interfaces' with instantiated
19729         versions of all the interfaces we inherit.
19730
19731 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
19732
19733         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
19734         when MONO_PATH is set but doesn't contain the install dir.
19735
19736 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19737
19738         * icall.c:
19739         (ves_icall_Type_GetInterfaces): don't return an interface twice when
19740         it's also implemented in base classes. Fixes bug #50927.
19741
19742 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
19743
19744         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
19745         if this method is called from a finalizer. Fixes #50913.
19746
19747 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
19748
19749         * threads.c: Implement VolatileRead/VolatileWrite
19750
19751         * icall.c: Add new icalls for VolatileRead/VolatileWrite
19752
19753 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
19754
19755         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
19756         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
19757         2.95.3.
19758
19759         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
19760         from Peter Ross (pro@missioncriticalit.com).
19761         
19762 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
19763
19764         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
19765
19766 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
19767
19768         * assembly.c (mono_assembly_load_references): Disable check because it
19769         triggers on older corlibs which lots of people have.
19770
19771 2003-11-12  Jackson Harper  <jackson@ximian.com>
19772
19773         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
19774         load corlib.dll if mscorlib.dll is not found.
19775         * assembly.h: Remove corlib name define.
19776         * class.c:
19777         * domain.c:
19778         * image.c: Change corlib name to mscorlib.
19779         
19780 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
19781
19782         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
19783
19784 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
19785
19786         * appdomain.h: Added loader_optimization here to sync with the C#
19787         code, and add disallow_binding_redirects field.
19788
19789 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
19790
19791         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
19792
19793         * reflection.c (mono_image_build_metadata): Fix crash on modules
19794         with no types.
19795
19796         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
19797
19798         * icall.c (ves_icall_get_method_info): Return callingConvention as
19799         well.
19800
19801         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
19802         namespaces from the EXPORTEDTYPE table as well.
19803
19804         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
19805         from all modules inside the assembly.
19806         
19807 2003-11-11  Martin Baulig  <martin@ximian.com>
19808
19809         * reflection.c (mono_reflection_bind_generic_parameters): Make
19810         this work for interfaces.
19811
19812 2003-11-11  Martin Baulig  <martin@ximian.com>
19813
19814         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
19815
19816 2003-11-11  Martin Baulig  <martin@ximian.com>
19817
19818         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
19819         "MonoInflatedMethod" and "MonoInflatedCtor".
19820
19821 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
19822
19823         * reflection.c (resolution_scope_from_image): Use the assembly table
19824         from the manifest module, since other modules don't have it.
19825
19826         * debug-helpers.c (mono_type_full_name): New helper function.
19827
19828         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
19829
19830         * image.c (mono_image_load_file_for_image): New public function which
19831         is a replacement for the load_file_for_image in class.c.
19832
19833         * assembly.c (mono_assembly_load_module): A wrapper for the function
19834         above which does assembly association and reference loading too.
19835
19836         * class.c (mono_class_from_name): Call mono_assembly_load_module.
19837
19838 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19839
19840         * appdomain.c: not all of the attributes for the full assembly name
19841         are required and the order doesn't matter. Fixes bug #50787.
19842
19843 2003-11-10  Dick Porter  <dick@ximian.com>
19844
19845         * locales.c: Use platform-endian UTF16
19846
19847 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
19848
19849         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
19850         
19851 2003-11-10  Martin Baulig  <martin@ximian.com>
19852
19853         * metadata.c
19854         (mono_metadata_load_generic_params): Make this actually work.
19855
19856         * reflection.c (mono_reflection_bind_generic_parameters): If our
19857         parent is a generic instance, pass all the `types' to it, no
19858         matter whether it has the same number of type parameters or not.
19859
19860 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
19861
19862         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
19863
19864         * assembly.c (mono_assembly_load_references): Move the image<->assembly
19865         assignment code to this function so it gets called recursively for all
19866         modules.
19867
19868         * image.c (load_modules): Remove the assembly assignment since it is
19869         now done by mono_assembly_load_references.
19870         
19871         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
19872         Add 'module' argument.
19873         (mono_module_get_types): New helper function.
19874         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
19875
19876 2003-11-08  Martin Baulig  <martin@ximian.com>
19877
19878         * class.c (mono_class_inflate_generic_method): Interface method
19879         don't have a header.
19880
19881         * reflection.c (mono_image_get_methodspec_token): Take an
19882         additional `MonoGenericInst *' argument instead of reading it from
19883         the header; this is necessary to support interfaces.
19884         (mono_image_create_token): Pass the `MonoGenericInst *' from the
19885         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
19886         (inflated_method_get_object): Take an additional `MonoGenericInst *'
19887         argument.
19888
19889         * reflection.h (MonoReflectionInflatedMethod): Added
19890         `MonoGenericInst *ginst'.
19891
19892 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
19893
19894         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
19895
19896 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
19897
19898         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
19899
19900 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
19901
19902         * reflection.c 
19903         (reflection_methodbuilder_from_method_builder):
19904         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
19905         initialize a ReflectionMethodBuilder structure.
19906         (mono_image_get_methodbuilder_token):
19907         (mono_image_get_ctorbuilder_token): New functions to emit memberref
19908         tokens which point to types in another module inside the same assembly.
19909
19910         * reflection.c: Use the new helper functions.
19911         
19912         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
19913
19914         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
19915         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
19916
19917         * reflection.c (resolution_scope_from_image): Emit a moduleref if
19918         neccesary.
19919
19920         * reflection.c (mono_image_build_metadata): Emit metadata only for the
19921         current module. Emit the manifest only for the main module.
19922
19923         * reflection.c (mono_image_create_token): Add assertion when a 
19924         memberref needs to be created.
19925
19926         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
19927
19928         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
19929         larger buffer for the custom attribute blob. Fixes #50637.
19930         
19931 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19932
19933         * threadpool.c: notify listener on async processing handles after
19934         invoking the async callback. Thanks to Zoltan.
19935
19936 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
19937
19938         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
19939         avoid code duplication.
19940
19941         * reflection.h (MonoDynamicImage): New type which is currently unused,
19942         but will be used through the ref.emit code in place of 
19943         MonoDynamicAssembly.
19944
19945         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
19946         object layout.
19947
19948         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
19949         a MonoDynamicImage instead of just a MonoImage.
19950         
19951         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
19952         icalls to ModuleBuilder but keep their semantics, so they will work
19953         with moduleb->assemblyb. This will change later.
19954         
19955 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
19956
19957         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
19958         object layout.
19959
19960         * reflection.c (mono_image_build_metadata): Avoid creation of a default
19961         main module, since it is now done by the managed code.
19962
19963 2003-11-03  Martin Baulig  <martin@ximian.com>
19964
19965         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
19966         `ginst->klass' here.
19967         (method_encode_methodspec): Don't use the `ginst->generic_method's
19968         klass if it's a generic instance, use `ginst->klass' in this case.
19969
19970 2003-11-03  Martin Baulig  <martin@ximian.com>
19971
19972         * reflection.c (mono_image_get_generic_method_param_info):
19973         Removed, use mono_image_get_generic_param_info() instead.
19974         (mono_image_get_type_info): Write the GenericParam table before
19975         the Method table.  This is neccessary because in the GenericParam
19976         table, type parameters of the class (ie. '!0' etc.) must come
19977         before the ones from its generic methods (ie. '!!0' etc).
19978
19979 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
19980
19981         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
19982
19983 2003-11-02  Martin Baulig  <martin@ximian.com>
19984
19985         * reflection.c (create_generic_typespec): Take a
19986         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
19987         the generic parameters from it.
19988
19989 2003-11-02  Martin Baulig  <martin@ximian.com>
19990
19991         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
19992         instead of a `MonoClassField *' since we just need the type.
19993         (create_generic_typespec): New static function.  Creates a
19994         TypeSpec token for a generic type declaration.
19995         (mono_image_get_generic_field_token): New static function.
19996         (mono_image_create_token): If we're a FieldBuilder in a generic
19997         type declaration, call mono_image_get_generic_field_token() to get
19998         the token.
19999
20000 2003-11-02  Martin Baulig  <martin@ximian.com>
20001
20002         * reflection.h
20003         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
20004         `MonoReflectionGenericInst *declaring_type' and
20005         `MonoReflectionGenericInst *reflected_type' fields.
20006
20007         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
20008         `MonoReflectionGenericInst *declaring_type' and a
20009         `MonoReflectionGenericInst *reflected_type' argument instead of a
20010         single `MonoReflectionGenericInst *type' one.  Set
20011         `res->declaring_type' and `res->reflected_type' from them.
20012         (mono_reflection_inflate_field): Likewise.      
20013
20014 2003-11-02  Martin Baulig  <martin@ximian.com>
20015
20016         * class.c (mono_class_setup_vtable): Don't store generic methods
20017         in the vtable.  
20018
20019 2003-11-02  Martin Baulig  <martin@ximian.com>
20020
20021         * reflection.h (MonoReflectionGenericInst): Added
20022         `MonoReflectionType *declaring_type'.
20023
20024         * reflection.c (mono_reflection_bind_generic_parameters): Use
20025         `if (tb->parent)' instead of `klass->parent'.
20026
20027 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
20028
20029         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
20030         with an empty ASSEMBLY table.
20031
20032         * reflection.c (mono_image_build_metadata): Avoid using the same loop
20033         variable in the inner and outer loops.
20034
20035 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
20036
20037         * metadata.h (mono_metadata_make_token): Put parentheses around macro
20038         argument.
20039
20040         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
20041         
20042         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
20043         icalls. Instead, do everything in managed code. This is needed since
20044         it is hard to restore the original domain etc. in unmanaged code in the
20045         presence of undeniable exceptions.
20046
20047         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
20048         New icalls to push and pop appdomain refs.
20049
20050 2003-10-31  Martin Baulig  <martin@ximian.com>
20051
20052         * class.c (inflate_generic_type): Renamed to
20053         mono_class_inflate_generic_type() and made it public.
20054
20055         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
20056         New interncall.
20057
20058         * loader.c (mono_field_from_memberref): Also set the retklass for
20059         typespecs.
20060
20061         * fielder.c (mono_image_get_inflated_field_token): New static
20062         method; creates a metadata token for an inflated field.
20063         (mono_image_create_token, fixup_method): Added support for
20064         "MonoInflatedField".
20065         (fieldbuilder_to_mono_class_field): New static function.
20066         (mono_reflection_inflate_field): New public function.
20067
20068         * reflection.h
20069         (MonoReflectionGenericInst): Added `MonoArray *fields'.
20070         (MonoReflectionInflatedField): New typedef.     
20071
20072 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
20073
20074         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
20075         for Solaris and other platforms without s6_addr16
20076
20077 2003-10-30  Martin Baulig  <martin@ximian.com>
20078
20079         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
20080         argument instead of two.
20081         (mono_class_inflate_generic_signature): Likewise.
20082         (inflate_generic_header): Likewise.
20083         (mono_class_inflate_generic_method): Likewise.  In addition, if
20084         `ginst->klass' is set, it becomes the new `method->klass'.
20085
20086         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
20087         field.
20088
20089         * reflection.c (encode_generic_method_sig): Write a 0xa as the
20090         first byte. [FIXME]
20091         (method_encode_methodspec): If we have generic parameters, create
20092         a MethodSpec instead of a MethodRef.
20093         (fixup_method): Added support for "MonoInflatedMethod" and
20094         "MonoInflatedCtor".
20095         (mono_image_create_token): Added support for "MonoInflatedMethod"
20096         and "MonoInflatedCtor".
20097         (inflated_method_get_object): New static function; returns a
20098         managed "System.Reflection.MonoInflatedMethod" object.
20099         (mono_reflection_bind_generic_method_parameters): Return a
20100         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
20101         (mono_reflection_inflate_method_or_ctor): Likewise.
20102         (mono_image_get_generic_method_param_info): Initialize unused
20103         fields to zero.
20104         (mono_image_get_generic_param_info): Likewise.
20105
20106         * reflection.h (MonoReflectionInflatedMethod): New public
20107         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
20108         "S.R.MonoInflatedCtor" classes.
20109
20110         * loader.c (method_from_memberref): If we're a TypeSpec and it
20111         resolves to a generic instance, inflate the method.
20112
20113 2003-10-28  Dick Porter  <dick@ximian.com>
20114
20115         * object.c (mono_runtime_run_main): Convert command-line arguments
20116         into utf8, falling back to the user's locale encoding to do so.
20117
20118 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
20119
20120         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
20121         at this time.
20122
20123         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
20124
20125         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
20126         up icalls at method definition time. Partially fixes #33569.
20127
20128 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
20129
20130         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
20131         marshalling of arrays. Fixes #50116.
20132
20133         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
20134
20135         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
20136         points to a vtable in the dying appdomain.
20137
20138         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
20139         listeners into unmanaged code inside the lock.
20140
20141         * object.c (mono_class_vtable): Turn off typed allocation in non-root
20142         domains and add some comments.
20143
20144 2003-10-25  Martin Baulig  <martin@ximian.com>
20145
20146         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
20147
20148         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
20149
20150         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
20151         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
20152         currently parsing.  Create the generic class and store it in
20153         `generic_inst->klass' before parsing the type arguments.  This is
20154         required to support "recursive" definitions; see mcs/tests/gen-23.cs
20155         for an example.
20156         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
20157         to support recursive typespec entries.
20158
20159         * class.c (mono_class_setup_parent): If our parent is a generic
20160         instance, we may get called before it has its name set.
20161         (mono_class_from_generic): Splitted into
20162         mono_class_create_from_generic() and mono_class_initialize_generic().
20163
20164 2003-10-25  Martin Baulig  <martin@ximian.com>
20165
20166         * icall.c (ves_icall_Type_BindGenericParameters): Return a
20167         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
20168         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
20169         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
20170
20171         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
20172         (create_typespec): Likewise.
20173         (mono_reflection_bind_generic_parameters): Return a
20174         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
20175         (mono_reflection_inflate_method_or_ctor): New public function.
20176
20177         * reflection.h (MonoReflectionGenericInst): New typedef.        
20178
20179 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
20180
20181         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
20182         inside the domain lock. Fixes #49993.
20183         
20184         * object.c (mono_class_vtable): When typed allocation is used, 
20185         allocate vtables in the GC heap instead of in the mempool, since the
20186         vtables contain GC descriptors which are used by the collector even
20187         after the domain owning the mempool is unloaded.
20188
20189         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
20190
20191         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
20192         reflect what it does. Also invalidate mempools instead of freeing
20193         them if a define is set.
20194
20195         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
20196         of the appdomain.
20197         
20198         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
20199         hold the finalizable objects in this domain.
20200
20201         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
20202         appdomain.
20203
20204         * appdomain.c (mono_domain_set): New function to set the current
20205         appdomain, but only if it is not being unloaded.
20206
20207         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
20208         appdomain which is being unloaded.
20209         
20210         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
20211         unloading of the root appdomain.
20212
20213         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
20214         icall to execute a method in another appdomain. Intended as a 
20215         replacement for InternalSetDomain, which can confuse the code 
20216         generation in the JIT.
20217
20218         * appdomain.c (mono_domain_is_unloading): New function to determine
20219         whenever an appdomain is unloading.
20220
20221         * appdomain.c (mono_domain_unload): New function to correctly unload
20222         an appdomain.
20223
20224         * assembly.c (mono_assembly_load_references): Check that an assembly
20225         does not references itself.
20226
20227         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
20228         domain manually, it asks the finalizer thread to do it, then waits for
20229         the result. Also added a timeout.
20230
20231         * icall.c: Register the new icalls.
20232
20233         * threads.h threads.c: Export the mono_gc_stop_world and 
20234         mono_gc_start_world functions.
20235         
20236         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
20237         function to fill out the mempool with 0x2a.
20238
20239 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
20240
20241         * reflection.h (MonoReflectionMethodAux): New structure to store
20242         information which is rarely used, thus is not in the MonoMethod
20243         structure.
20244
20245         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
20246         store the aux info.
20247
20248         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
20249         and marshalling info into the aux structure.
20250
20251         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
20252         from the aux structure.
20253
20254         * loader.c (mono_method_get_param_names): Retrieve the param names from
20255         the aux structure.
20256         
20257 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
20258
20259         * exception.h exception.c: Add AppDomainUnloadedException && fix 
20260         warning.
20261
20262 2003-10-21  Dick Porter  <dick@ximian.com>
20263
20264         * socket-io.c
20265         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
20266         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
20267
20268 2003-10-21  Martin Baulig  <martin@ximian.com>
20269
20270         * reflection.c (mono_reflection_bind_generic_parameters):
20271         `klass->parent' is NULL for interfaces.
20272
20273 2003-10-21  Martin Baulig  <martin@ximian.com>
20274
20275         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
20276
20277 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
20278
20279         * exception.c (mono_exception_from_name_msg): New helper function for
20280         creating exceptions and initializing their message field.
20281
20282         * exception.c: Simplify functions using the new helper.
20283
20284         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
20285         New function.
20286
20287         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
20288         mono_raise_exception, since otherwise gcc doesn't generate the function
20289         epilog for raise_exception, confusing the stack unwinding in the JIT.
20290         Fixes #45043.
20291
20292         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
20293         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
20294         Fixes #49499.
20295
20296 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20297
20298         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
20299         utf8.
20300
20301 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
20302
20303         * icall.c: Removed GetUninitializedObject method because
20304           AllocateUninitializedClassInstance does the same.
20305
20306 2003-10-18  Martin Baulig  <martin@ximian.com>
20307
20308         * class.c (inflate_generic_signature): Renamed to
20309         mono_class_inflate_generic_signature() and made it public.
20310         (my_mono_class_from_generic_parameter): New static function; if we
20311         don't already have the generic parameter's MonoClass, create a
20312         very simple one which is just used internally in the runtime and
20313         not passed back to managed code.
20314
20315         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
20316
20317         * metadata.h (MonoMethodSignature): Moved the
20318         `MonoGenericParam *gen_params' to the MonoMethodHeader.
20319         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
20320
20321         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
20322         ves_icall_MonoMethod_GetGenericArguments(); this is now an
20323         interncall on the MonoMethod class, not on MethodInfo.
20324         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
20325         calling mono_reflection_bind_generic_method_parameters() directly.
20326
20327         * loader.c (mono_method_get_signature): If this is a MethodSpec;
20328         return the already computed `method->signature'.
20329         (method_from_methodspec): New static function to load a method
20330         from a MethodSpec entry.
20331         (mono_get_method_from_token): Call the new method_from_methodspec()
20332         for MethodSpec tokens.  
20333         (mono_get_method_from_token): If we're a generic method, load the
20334         type parameters.
20335
20336         * reflection.c (mono_image_get_memberref_token): Allow
20337         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
20338         table.
20339         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
20340         (mono_image_create_token): First check whether it's a generic
20341         method (so we'd need to create a MethodSpec), then do the other
20342         two alternatives.
20343         (mono_reflection_bind_generic_method_parameters): Return a
20344         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
20345         called directly from the interncall.
20346
20347 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
20348
20349         * reflection.c (load_public_key): Move loading of the public key
20350         into managed code.
20351
20352         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
20353
20354         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
20355         fields.
20356
20357         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
20358         culture, hash_alg and public_key. Fixes #49555.
20359
20360 2003-10-17  Martin Baulig  <martin@ximian.com>
20361
20362         * class.h (MonoGenericInst): Moved this declaration here and added
20363         `MonoMethod *generic_method'.
20364
20365         * icall.c
20366         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
20367         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
20368
20369         * metadata.c (mono_metadata_type_equal): Two types of
20370         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
20371         index; ie. don't compare the address of the `MonoGenericParam'
20372         structure.
20373         (mono_metadata_load_generic_params): Removed the `MonoMethod
20374         *method' argument.
20375
20376         * metadata.h (MonoGenericInst): Moved declaration to class.h.
20377         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
20378
20379         * reflection.c (method_encode_signature): Encode the number of
20380         generic parameters.
20381         (encode_generic_method_sig): New static function.
20382         (method_encode_methodspec): New static function; creates an entry
20383         in the MethodSpec table for a generic method.
20384         (mono_image_get_methodspec_token): New static function.
20385         (mono_image_create_token): Call mono_image_get_methodspec_token()
20386         for generic methods.
20387         (mono_reflection_bind_generic_method_parameters): New public
20388         function.  Instantiates a generic method.
20389
20390 2003-10-16  Martin Baulig  <martin@ximian.com>
20391
20392         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
20393         *gen_params' here from MonoMethodHeader.
20394
20395         * metadata.c (mono_metadata_parse_method_signature): If we have
20396         generic parameters, initialize `method->gen_params' and then set
20397         the correct `type->data.generic_param' in all the parameters.
20398
20399 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
20400
20401         * threads.c (mono_threads_get_default_stacksize): New function to 
20402         return the default stacksize.
20403
20404         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
20405         termination of the finalizer thread, since the previous method had
20406         race conditions. Fixes #49628.
20407
20408         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
20409         as for the other managed threads.
20410
20411 2003-10-16  Martin Baulig  <martin@ximian.com>
20412
20413         * class.c (inflate_generic_signature): Copy `generic_param_count'
20414         and `gen_params'.
20415
20416         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
20417         New interncall.
20418
20419         * metadata.c (mono_metadata_parse_method_signature): Actually set
20420         the `method->generic_param_count' here.
20421         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
20422
20423 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
20424
20425         * object.h: Add a new field to TypedRef to simplify the implementation
20426         of the REFANY opcodes in the JIT.
20427
20428         * icall.c: Make use of the new field.
20429
20430         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
20431         dynamically.
20432
20433 2003-10-15  Martin Baulig  <martin@ximian.com>
20434
20435         * class.c (mono_class_from_gen_param): Renamed to
20436         mono_class_from_generic_parameter() and moved most of the
20437         functionality from mono_reflection_define_generic_parameter()
20438         here; ie. we create a "real" class here.
20439         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
20440         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
20441         previously been called.
20442
20443         * class.h (MonoGenericParam): Moved the declaration of this struct
20444         here from metadata.h and added `MonoMethod *method'.
20445
20446         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
20447         interncall.
20448
20449         * loader.c (mono_get_method_from_token): If we have any generic
20450         parameters, call mono_metadata_load_generic_params() to read them
20451         from the MONO_TABLE_GENERICPAR.
20452
20453         * metadata.c (mono_metadata_load_generic_params): Added
20454         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
20455
20456         * metadata.h (MonoMethodSignature): Replaced
20457         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
20458         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
20459
20460         * reflection.c (mono_reflection_define_generic_parameter): Moved
20461         most of the functionality into the new
20462         mono_class_from_generic_parameter(); set the `method' field if
20463         we're a method parameter.       
20464
20465 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
20466
20467         * marshal.c (emit_struct_conv): if native size is 0
20468         emit no code.
20469
20470 2003-10-14  Martin Baulig  <martin@ximian.com>
20471
20472         * icall.c: The generics API has changed in the spec since it was
20473         added to System.Type; these modifications make it match the spec
20474         again.
20475         (ves_icall_Type_GetGenericParameters): Renamed to
20476         `ves_icall_Type_GetGenericArguments'.
20477         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
20478         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
20479         `ves_icall_MonoType_get_HasGenericArguments'.
20480         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
20481         `ves_icall_MonoType_get_IsGenericParameter'.
20482         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
20483         this is no interncall anymore.
20484         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
20485         `ves_icall_TypeBuilder_get_IsGenericParameter'.
20486
20487 2003-10-14  Martin Baulig  <martin@ximian.com>
20488
20489         * reflection.c (mono_reflection_bind_generic_parameters): Also
20490         inflate generic methods if we're reading the class from IL.
20491
20492 2003-10-13  Martin Baulig  <martin@ximian.com>
20493
20494         * reflection.c (mono_reflection_define_generic_parameter): This
20495         method isn't called directly from the icall anymore; take a
20496         `MonoReflectionAssemblyBuilder *' so we can use this for type and
20497         method generic parameters.
20498         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
20499         (method_builder_encode_signature): Encode generic parameters.
20500         (mono_image_get_method_info): Write generic params to the
20501         MONO_TABLE_GENERICPARAM table.
20502
20503         * reflection.h (MonoReflectionMethodBuilder): Added
20504         `MonoArray *generic_params'.
20505
20506         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
20507
20508         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
20509         wrapper for mono_reflection_define_generic_parameter().
20510         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
20511
20512 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
20513
20514         * marshal.h: Add missing function to fix build.
20515
20516         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
20517         the SetLastError pinvoke attribute.
20518
20519         * marshal.c (mono_marshal_set_last_error): New helper function called
20520         by the generated code.
20521         
20522         * marshal.c (mono_mb_emit_branch): New helper function.
20523
20524         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
20525
20526         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
20527         classes as parameters and return values of delegates. Fixes #29256. 
20528
20529 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
20530
20531         * locales.c: use gint32 in non HAVE_ICU case
20532
20533 2003-10-11  Martin Baulig  <martin@ximian.com>
20534
20535         * mono-debug.c (mono_debug_add_method): Added a workaround for
20536         bug #48591.
20537
20538 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
20539
20540         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
20541         delegates passed to native code must use the STDCALL calling 
20542         convention. Fixes #35987.
20543
20544 2003-10-10  Martin Baulig  <martin@ximian.com>
20545
20546         * class.c (inflate_generic_type): If we're inflating for a generic
20547         type instance (and not for a generic method), return
20548         MONO_TYPE_MVAR unchanged.
20549
20550 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20551
20552         * string-icalls.c: Join ignores null strings in the source array.
20553         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
20554         * threads.c: GetAvailableTheads is slightly more accurate.
20555
20556 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
20557
20558         * threads.h threads.c : add mono_threads_set_default_stacksize
20559         and pass default to CreateThread calls.
20560
20561 2003-10-09  Dick Porter  <dick@ximian.com>
20562
20563         * icall.c:
20564         * locales.h:
20565         * locales.c: Internal calls for constructing CultureInfo and
20566         related objects from libicu (if its available.)
20567
20568 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
20569
20570         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
20571
20572 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20573
20574         * threadpool.c: added an argument to async_invoke_thread that is the
20575         item to process, pass the MonoAsyncResult to the thread start function
20576         when creating a new thread. This way we don't need to acquire any lock
20577         when we're creating a new thread. Readded a semaphore for faster
20578         response times (instead of that Sleep i added).
20579
20580 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
20581
20582         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
20583         get daylight change dates better on Windows, fix handling
20584         of platforms without tm_gmtoff.
20585
20586 2003-10-06  Martin Baulig  <martin@ximian.com>
20587
20588         * class.c (inflate_generic_method): Renamed to
20589         mono_class_inflate_generic_method() and made public.
20590         (mono_class_init): Don't inflate the generic methods here.
20591         (mono_class_from_generic): Added `gboolean inflate_methods'
20592         argument.  Inflate the methods here.
20593
20594         * loader.c (mono_method_get_param_names): Ignore instances of
20595         generic types for the moment.
20596
20597         * reflection.c (fixup_method): Added support for inflated methods.
20598         (mono_image_create_token): Use mono_image_get_methodref_token()
20599         for inflated methods.
20600         (mono_custom_attrs_from_param): Ignore instances of generic types
20601         for the moment.
20602         (mono_reflection_bind_generic_parameters): New public function.
20603         Moved all the functionality from
20604         ves_icall_Type_BindGenericParameters() here and added support for
20605         dynamic types.
20606         (mono_reflection_define_generic_parameter): Initialize
20607         `klass->methods' here.
20608
20609         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
20610         functionality into mono_reflection_define_generic_parameter().
20611         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
20612         TypeBuilder, return that TypeBuilder.
20613
20614 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20615
20616         * appdomain.c: removed mono_delegate_semaphore.
20617
20618         * threadpool.c:
20619         (mono_thread_pool_add): moved hash table creation inside and the thread 
20620         creation outside of the critical region.
20621         (mono_thread_pool_finish): removed obsolete code.
20622         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
20623         continue or exit the thread depending on the queue.
20624
20625 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
20626
20627         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
20628         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
20629         handle more bool marshalling options
20630
20631 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
20632
20633         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
20634         arrays of structs. Also add a more descriptive error message when
20635         a structure member is marshalled as LPArray.
20636
20637 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
20638
20639         * marshal.c (mono_marshal_get_native_wrapper): Add support for
20640         marshalling arrays of complex types. Fixes #29098. Also remove an
20641         usused and incomplete function.
20642
20643 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
20644
20645         * gc.c: report heap_size - free_bytes as total memory allocated
20646         (bug#49362).
20647
20648 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
20649
20650         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
20651         fix timezone handling problems on Windows.
20652         
20653         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
20654         asserts when the year is outside the range handled by ms the functions.
20655
20656         * class.c (setup_interface_offsets): If the class is an interface,
20657         fill out its interface_offsets slot.
20658
20659 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20660
20661         * threadpool.c: mark threadpool threads as background.
20662
20663 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
20664
20665         * decimal.c - define DECINLINE to nothing if not using GCC
20666
20667 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
20668
20669         * assembly.c: More refcount fixes.
20670
20671 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20672
20673         * string-icalls.c: if we're not trimming, return the same string.
20674         When not splitting, don't create a new string.
20675
20676 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20677
20678         * image.c:
20679         (mono_image_open): increment the ref_count inside the critical section.
20680
20681 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
20682
20683         * image.c (mono_image_open): Fix reference counting bug.
20684
20685 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
20686
20687         * marshal.c (mono_marshal_type_size) struct alignment changed for 
20688         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
20689         64bits. Avoid leak in mono_marshal_get_native_wrapper when
20690         mono_lookup_pinvoke_call throws.        
20691
20692 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
20693
20694         * reflection.c (mono_reflection_parse_type): Fix #49114.
20695
20696         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
20697         temporary workaround for cygwin header problem.
20698
20699         * object.c (mono_object_isinst): Synchronize this with the code
20700         generated by the JIT for casts.
20701
20702 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
20703
20704         * reflection.c (encode_type): Fix #38332.
20705
20706 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
20707
20708         * marshal.c (mono_marshal_method_from_wrapper): New function to return
20709         the original method from the wrapper method.
20710
20711 2003-09-25  Martin Baulig  <martin@ximian.com>
20712
20713         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
20714         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
20715         (ves_icall_Type_get_IsGenericInstance): New interncall.
20716
20717 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
20718
20719         * object.c: fix cast warning in big endian code.
20720
20721 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
20722
20723         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
20724         
20725 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20726
20727         * assembly.c: don't call check_env from mono_assembly_load. It's
20728         already done once in mono_assemblies_init and may cause headaches when
20729         multiple threads are loading assemblies.
20730
20731 2003-09-19  Martin Baulig  <martin@ximian.com>
20732
20733         * reflection.c (mono_reflection_define_generic_parameter): Don't
20734         allocate `klass->methods', set `klass->flags' to
20735         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
20736
20737 2003-09-18  Martin Baulig  <martin@ximian.com>
20738
20739         * class.c (mono_class_init): Don't create `class->methods' if it's
20740         already initialized.
20741
20742         * metadata.c (mono_metadata_load_generic_params): Make this
20743         actually work.
20744
20745         * reflection.c (mono_reflection_define_generic_parameter): Set
20746         parent class and interfaces from the constraints.
20747
20748         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
20749         to keep this struct in sync with the declaration in TypeBuilder.cs.
20750
20751 2003-09-17  Martin Baulig  <martin@ximian.com>
20752
20753         * metadata.h (MonoType): Replaced the data's `int type_param'
20754         field with `MonoGenericParam *generic_param'.
20755         (MonoGenericParam): Added `MonoClass *klass'.
20756
20757         * class.c (mono_class_from_gen_param): Removed the
20758         `MonoImage *image' and `int type_num' arguments.
20759
20760         * metadata.c (mono_metadata_parse_generic_param): New static
20761         method; creates a MonoGenericParam which just contains the index.
20762         (do_mono_metadata_parse_type): Call
20763         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
20764         MONO_TYPE_MVAR.
20765
20766         * reflection.c (mono_image_typedef_or_ref): Generic type
20767         parameters may be in the same assembly, but never use a typedef
20768         for them.
20769         (mono_reflection_define_generic_parameter): We're now creating a
20770         "real" class for the type parameter; it's now safe to call
20771         mono_class_from_mono_type() on the class'es type, it'll do the
20772         right thing.
20773
20774 2003-09-16  Martin Baulig  <martin@ximian.com>
20775
20776         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
20777         `symfile->range_entry_size' and `symfile->class_entry_size' here;
20778         the `symfile' data structure must be fully initialized before it
20779         gets added to the table.
20780
20781 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
20782
20783         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
20784
20785         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
20786         class init trampolines.
20787
20788 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
20789
20790         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
20791         to the built-in profiler to turn off time and allocation profiling
20792         respectively.
20793
20794 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
20795
20796         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
20797         g_direct_equal.
20798
20799         * debug-helpers.c (mono_method_full_name): Print the wrapper type
20800         in human readable form.
20801
20802 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
20803
20804         * reflection.c icall.c: Fixed warnings.
20805
20806         * image.c (load_class_names): Use a temporary hash table to hold the
20807         namespaces in order to avoid doing many string comparisons.
20808
20809         * image.h: Fix typo.
20810
20811         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
20812         Pass NULL instead of g_direct_equal to the GHashTable constructor 
20813         since the NULL case is short-circuited inside g_hash_table_lookup, 
20814         leading to better performance.  
20815
20816         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
20817         obtain the first custom attribute for a given index. Depends on the
20818         CustomAttribute table being sorted by the parent field.
20819
20820         * reflection.c (mono_custom_attrs_from_index): Use the new function 
20821         for better performance.
20822
20823 2003-09-07  Martin Baulig  <martin@ximian.com>
20824
20825         * class.c (mono_class_init): If we're a generic instance, inflate
20826         all our methods instead of loading them from the image.
20827         (mono_class_from_generic): Set `class->methods = gklass->methods'.
20828
20829 2003-09-07  Martin Baulig  <martin@ximian.com>
20830
20831         * mono-debug-debugger.c: Added support for constructors.
20832
20833 2003-09-06  Martin Baulig  <martin@ximian.com>
20834
20835         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
20836         New interncall.
20837
20838         * reflection.c (mono_reflection_setup_generic_class): Call
20839         ensure_runtime_vtable() to create the vtable.
20840
20841 2003-09-05  Martin Baulig  <martin@ximian.com>
20842
20843         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
20844         MONO_TYPE_MVAR.
20845
20846 2003-09-04  Martin Baulig  <martin@ximian.com>
20847
20848         * reflection.c (mono_reflection_define_generic_parameter): Generic
20849         parameters start with zero.
20850
20851 2003-09-04  Martin Baulig  <martin@ximian.com>
20852
20853         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
20854
20855         * reflection.h (MonoReflectionGenericParam): New typedef.
20856         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
20857         the generic parameters from the managed TypeBuilder.
20858
20859         * reflection.c (mono_reflection_define_generic_parameter): New function.
20860         (mono_reflection_create_runtime_class): Encode generic parameters.
20861         (mono_reflection_setup_generic_class): New function; this is
20862         called after adding adding all generic params to the TypeBuilder.
20863         (encode_type): Added MONO_TYPE_VAR.
20864
20865 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
20866
20867         * class.h class.c (mono_class_needs_cctor_run): Moved this method
20868         here from the JIT.
20869
20870         * assembly.h assembly.c: Moved the AOT loading code into an assembly
20871         load hook.
20872
20873 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
20874
20875         * reflection.h reflection.c class.h class.c: Delete duplicate 
20876         definition of mono_type_get_name () from reflection.c and export the
20877         one in class.c.
20878
20879         * class.c: Class loading fixes from Bernie Solomon 
20880         (bernard@ugsolutions.com).
20881
20882         * reflection.c: Endianness fixes from Bernie Solomon 
20883         (bernard@ugsolutions.com).
20884         
20885 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
20886
20887         * assembly.h assembly.c: Define a file format version for AOT
20888         libraries.
20889         
20890         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
20891
20892         * appdomain.h (MonoJitInfo): New field to determine whenever the
20893         code is domain neutral.
20894         
20895 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
20896
20897         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
20898
20899 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
20900
20901         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
20902         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
20903         Avoid caching the result since strings must be domain specific. Fixes
20904         #48050.
20905
20906 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
20907
20908         * marshal.c (mono_marshal_init): Make this callable multiple times
20909         since it is hard to find a correct place to call it.
20910
20911         * object.c (mono_runtime_class_init): Execute static constructors in
20912         the correct appdomain.
20913
20914         * image.c (build_guid_table): Handle the case when multiple images have
20915         the same GUID.
20916
20917 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20918
20919         * icall.c: added a couple of icalls for System.Web.
20920
20921 2003-08-28  Martin Baulig  <martin@ximian.com>
20922
20923         * icall.c (ves_icall_Type_BindGenericParameters): Use
20924         `klass->generic_inst' instead of `&klass->byval_arg' in the
20925         mono_type_get_object() call.  The returned type must be
20926         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
20927
20928 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
20929
20930         * NOTES: New file.
20931
20932         * object.c (mono_class_proxy_vtable): Make it thread safe.
20933
20934         * pedump.c: Fix warning.
20935
20936         * object.c appdomain.h: Get rid of metadata_section. 
20937         It is no longer needed and it was causing deadlocks with domain->lock.
20938
20939         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
20940
20941 2003-08-26  Martin Baulig  <martin@ximian.com>
20942
20943         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
20944
20945 2003-08-26  Martin Baulig  <martin@ximian.com>
20946
20947         * pedump.c (main): Call mono_metadata_init(),
20948         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
20949         and mono_loader_init().
20950
20951 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
20952
20953         * loader.h: Add missing include to fix build.
20954
20955         * image.h: mono_image_load_references is no more.
20956
20957         * assembly.c: Reworked assembly loading to make it really thread safe.
20958         After these changes, the assembly returned by mono_assembly_open is
20959         fully initialized, i.e. all its references assemblies are loaded.
20960
20961         * assembly.c (mono_image_load_references): Renamed to 
20962         mono_assembly_load_references, and made private, since clients no
20963         longer need to call it.
20964
20965         * class.c: Removed calls to mono_assembly_load_references, since it was
20966         a source of deadlocks.
20967
20968         * loader.h loader.c class.h class.c: Protect data structures using a 
20969         new lock, the loader lock.
20970
20971         * class.c (mono_class_setup_vtable): Create temporary hash tables and
20972         GPtrArrays only when needed.
20973
20974         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
20975         into empty structures by mcs. Fixes pinvoke7.cs.
20976         
20977         * domain.c (mono_init): Call a new initialization function.
20978
20979         * appdomain.c (mono_runtime_init): Call the new initializer function
20980         of the marshal module.
20981
20982         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
20983         inserted into empty structures by mcs. Fixes pinvoke7.cs.
20984
20985         * marshal.h marshal.c: Added locks around the wrapper caches to make
20986         this module thread safe.
20987
20988         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
20989         this argument. Fixes pinvoke1.exe.
20990
20991 2003-08-25  Lluis Sanchez <lluis@ximian.com>
20992
20993         * object.h: Added call_type field to MonoMethodMessage and the corresponding
20994         enumeration of values. Removed fields to store remote call output values in
20995         MonoAsyncResult. Not needed any more.
20996         * object.c: Initialize call_type and async_result fields in mono_message_init.
20997         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
20998         dispatching the message.
20999         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
21000         async call to finish. To do it use a message with EndInvoke call type.
21001
21002 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
21003
21004         * loader.h loader.c (mono_method_hash_marhal_info): New function which
21005         determines whenever a method has marshalling info.
21006
21007 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21008
21009         * assembly.c: fix the build on windows.
21010
21011 2003-08-22 Lluis Sanchez <lluis@ximian.com>
21012
21013         * object.cs: Fixed bug #47785.
21014
21015 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
21016
21017         * string-icalls.c (StringReplace): If their are no occurances of
21018         the old string found return a reference to the supplied
21019         string. This saves some memory and matches MS behavoir.
21020         
21021 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21022
21023         * socket-io.c: fixed compilation for systems that define AF_INET6
21024         and don't define SOL_IP/SOL_IPV6.
21025
21026 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
21027
21028         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
21029         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
21030
21031         * rawbuffer.c rawbuffer.h: Make this module thread safe.
21032
21033         * domain.c: Make this module thread safe.
21034
21035         * domain.c (mono_init): Call new initialization function.
21036
21037         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
21038         reference types too. Fixes #38812.
21039
21040         * image.c (mono_image_init): Fixed warnings.
21041
21042         * class.c (mono_class_from_typeref): Handle assembly load failure
21043         correctly.
21044
21045         * appdomain.c (add_assemblies_to_domain): Handle the case when
21046         the references of an assembly are not yet loaded.
21047
21048         * metadata.c image.c assembly.c: Moved initialization of global
21049         variables to a separate function called at startup since lazy 
21050         initialization of these variables is not thread safe.
21051         
21052         * image.c assembly.c: Made this module thread safe by adding locks in 
21053         the appropriate places.
21054
21055         * domain.c (mono_init): Call the new initialization functions of the
21056         three modules.
21057
21058 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
21059
21060         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
21061           make a direct call. It is proxy's work to make the call asynchronous.
21062           mono_delegate_end_invoke(): If the targe is a proxy, just collect
21063           the return values.
21064         * object.cs: mono_method_call_message_new(): read AsyncResult and
21065           state object from parameters list, if this info is requested.
21066         * object.h: Added fields to store remote call output values in
21067           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
21068
21069 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
21070
21071         * object.h: add needed fields to MonoThread.
21072         * threads.c, threads.h: allow registering a function to cleanup data
21073         allocated per thread by the JIT.
21074
21075 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
21076
21077         * loader.h: portability fix by Bernie Solomon
21078         * <bernard@ugsolutions.com>.
21079
21080 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
21081
21082         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
21083         return a MonoArray. This simplifies the code and also ensures that
21084         the cache allways contains an object reference as a value.
21085
21086         * icall.c (ves_icall_get_parameter_info): Simplified using the new
21087         function.
21088
21089 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21090
21091         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
21092         fixes a problem with byte ordering when getting the address family for
21093         a socket.
21094
21095 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
21096
21097         * .cvsignore: Added monosn.
21098
21099         * reflection.h reflection.c loader.c: Added support for parameter
21100         marshalling to dynamically created types. Fixes #47295.
21101
21102 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
21103
21104         * rand.c: remove useless warnings.
21105
21106 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
21107
21108         * class.c: implemented ldtoken for methods and fieldrefs.
21109
21110 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21111
21112         * threadpool.c: when mono_async_invoke was called, no one took care of
21113         monitoring the queue. So if the method invoked took some time and we
21114         got new async invoke requests after 500 ms (the thread created waited
21115         that long in WaitForSingleObject), the new async invoke was not called
21116         until the previous one finished.
21117
21118         This is fixed now. Thanks to Totte for helping with it.
21119
21120 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21121
21122         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
21123
21124 2003-08-11  Martin Baulig  <martin@ximian.com>
21125
21126         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
21127
21128 2003-08-06  Martin Baulig  <martin@ximian.com>
21129
21130         * mono-debug-debugger.c: Added support for static fields,
21131         properties and methods.
21132
21133 2003-08-06  Martin Baulig  <martin@ximian.com>
21134
21135         * mono-debug-debugger.c: Don't store the MonoString's vtable to
21136         make this work for applications with multiple application domains.
21137
21138 2003-08-04  Martin Baulig  <martin@ximian.com>
21139
21140         * mono-debug-debugger.c: Completely reworked the type support; the
21141         most important thing is that we're now just using one single
21142         `MonoType' instance per type.
21143
21144 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
21145
21146         * mono-endian.h, mono-endian.c, icall.c: Added icall
21147         ves_icall_System_Double_AssertEndianity to assert double word endianity
21148         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
21149
21150 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
21151
21152         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
21153         support, icalls and fixes.
21154
21155 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
21156
21157         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
21158         classes that are a punctuation character in .NET is not the same a
21159         g_unichar_ispunct.
21160
21161 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
21162
21163         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
21164
21165 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
21166
21167         * icall.c: Add new MemCopy internalcall.
21168         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
21169         Simplified code; It is not necessary to handle all the cases here,
21170         as the C# code takes care of it.  Only handle the case of the name
21171         resource embedded into the assembly.
21172
21173         Changed signature to return the data pointer and the size of the
21174         data. 
21175
21176 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
21177
21178         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
21179         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
21180
21181 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
21182
21183         * socket-io.c: ignore EINTR error in select.
21184
21185 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
21186
21187         * class.h, class.c: removed unused subclasses field in MonoClass.
21188
21189 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
21190
21191         * icall.c: improve fix of get_base_definition(). If the parent class
21192           doesn't have the mehod, look at the parent of the parent.
21193         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
21194           to check if a parameter is an in or out parameter
21195           (PARAM_ATTRIBUTE_IN is not set by default).
21196           mono_method_return_message_restore(): Use mono_class_value_size to
21197           get the size of a value type. mono_type_stack_size (parameterType)
21198           does not return the correct value if parameterType is byRef.
21199           mono_load_remote_field(), mono_load_remote_field_new(),
21200           mono_store_remote_field(), mono_store_remote_field_new():
21201           raise exception if the remote call returns an exception.
21202
21203 2003-07-28  Martin Baulig  <martin@ximian.com>
21204
21205         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
21206         method.  This is a wrapper around mono_runtime_invoke() which
21207         boxes the instance object if neccessary.
21208
21209 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
21210
21211         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
21212         metadata.h, row-indexes.h, verify.c: first cut of generics support.
21213
21214 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
21215
21216         * icall.c: disable mcs bug workaround.
21217
21218 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
21219
21220         * object.c (mono_runtime_class_init): Take the metadata_section
21221         mutex before obtaining the domain mutex.
21222
21223         * appdomain.h: Added definition of metadata_section mutex here. 
21224
21225         * object.c: define metadata_mutex here.
21226
21227 2003-07-24  Ravi Pratap  <ravi@ximian.com>
21228
21229         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
21230         fixed.
21231
21232 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
21233
21234         * reflection.c: Fix bug #46669
21235
21236 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21237
21238         * exception.c:
21239         * exception.h:
21240         * icall.c:
21241         * object.h: fill in the type name for TypeLoadException.
21242
21243 2003-07-23  Ravi Pratap  <ravi@ximian.com>
21244
21245         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
21246         relationship between TypeBuilders while compiling corlib) and bug
21247         45993 (Array types returned from the runtime while compiling
21248         corlib were from the loaded corlib).
21249
21250 2003-07-22  Martin Baulig  <martin@ximian.com>
21251
21252         * mono-debug-debugger.c: Reworked the type support a bit more;
21253         distinguish between types and classes.
21254
21255 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
21256
21257         * icall.c: add IsArrayImpl icall.
21258
21259 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
21260
21261         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
21262         initializing real_size only once. Also fix bug #46602.
21263
21264 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
21265
21266         * object.c: Renamed mono_metadata_section to metadata_section.
21267
21268 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
21269
21270         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
21271           empty array if the type is an array. Fixed.
21272           ves_icall_MonoMethod_get_base_definition: if the base method
21273           is abstract, get the MethodInfo from the list of methods of
21274           the class.
21275         * reflection.c: ParameterInfo.PositionImpl should be zero-based
21276           and it was 1-based. Fixed in mono_param_get_objects.
21277
21278 2003-07-20  Martin Baulig  <martin@ximian.com>
21279
21280         * mono-debug.h: Set version number to 31.
21281         (mono_debug_init): Added `MonoDomain *' argument.
21282
21283         * mono-debug-debugger.c: Reworked the type support; explicitly
21284         tell the debugger about builtin types; pass the `klass' address to
21285         the debugger.
21286
21287 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
21288
21289         * image.c: Allow new metadata tables to be loaded without a
21290         warning. Also update the warning message to give the new constant value.
21291                 
21292 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
21293
21294         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
21295         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
21296         array type representation changes.
21297
21298 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
21299
21300         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
21301         on Environment.Exit () call.
21302
21303 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
21304
21305         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
21306         requires a matching corlib.
21307
21308 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
21309
21310         * Changelog: My editor decided to add a CR to each line. Sorry about that.
21311           Committed again without the CRs.
21312         
21313 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
21314
21315         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
21316           getting it from the "this" socket instance. Did not work
21317           if the socket is a subclass of Socket.
21318           Also fixed bug #35371.
21319
21320 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
21321
21322         * metadata.c: fixed size for TypedByRef.
21323         * loader.c: when searching for a method, consider the vararg amrker.
21324         * unicode.c, decimal.c: constify some arrays.
21325
21326 2003-07-15  Dick Porter  <dick@ximian.com>
21327
21328         * socket-io.c: Fixed compilation for gcc < 3.2.
21329
21330         Fixed compilation for machines that don't have AF_INET6 (thanks to
21331         Bernie Solomon <bernard@ugsolutions.com> for that part.)
21332
21333         Fixed compile warnings.
21334         
21335         Fixed formatting and line endings.
21336
21337 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
21338
21339         * socket-io.h:
21340         * socket-io.c: Added IPv6 support.
21341
21342 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
21343
21344         * class.c (mono_class_is_assignable_from): New function to implement
21345         the is_assignable_from logic. Used by mono_object_isinst, 
21346         Type::IsAssignableFrom () and the interpreter.
21347
21348         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
21349         Object, even interfaces.
21350         
21351         * object.c (mono_object_isinst): Implement in terms of 
21352         is_assignable_from.
21353
21354         * icall.c (ves_icall_type_is_assignable_from): New icall.
21355
21356 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
21357
21358         * domain.c (foreach_domain): fix compiler warning.
21359
21360 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
21361
21362         * image.c (load_metadata_ptrs): use g_strndup because strndup is
21363         not available on all plattforms
21364
21365 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
21366
21367         * image.h image.c: Store the metadata version string in MonoImage.
21368         * icall.c: New icall to retrieve the image version.
21369         * reflection.c (create_dynamic_image): Fill in the image version field
21370         * reflection.c (build_compressed_metadata): Use the image version
21371         from the image structure.
21372
21373 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21374
21375         * appdomain.c: modified comment.
21376         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
21377         That will be its last iteration when mono_gc_cleanup is called from
21378         mono_runtime_cleanup and before the domain is unloaded.
21379
21380         Fixes bug #45962.
21381
21382 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
21383
21384         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
21385         attributes.
21386
21387 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
21388
21389         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
21390         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
21391         Bernie Solomon <bernard@ugsolutions.com>.
21392
21393 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
21394
21395         * object.c, object.h: provide mono_object_new_fast() for faster
21396         allocation in some special cases.
21397
21398 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
21399
21400         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
21401         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
21402
21403 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
21404
21405         * threadpool.c: fix leaks.
21406
21407 2003-07-01  Dick Porter  <dick@ximian.com>
21408
21409         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
21410         using MonoGHashTables.  Fixes threadpool bug posted to list.
21411
21412 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
21413
21414         * image.h, image.c: added support to load an assembly from a byte array.
21415         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
21416         assembly bundle support.
21417
21418 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
21419
21420         * threadpool.c (mono_thread_pool_add): keep a reference to the
21421         AsyncResult to prevent GC
21422
21423 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
21424
21425         * class.c: leak fix.
21426
21427 2003-06-25  Dick Porter  <dick@ximian.com>
21428
21429         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
21430         for the async object, the WaitHandle object will close the handle.
21431         Fixes bug 45321.
21432
21433 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
21434
21435         * class.c: in mono_array_class_get (), lookup from the hash with the
21436         same type we insert: this works around a bug in
21437         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
21438         lluis. The real fix will have to wait for after the release.
21439
21440 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
21441
21442         * icall.c: fix memory leak when getting type members.
21443
21444 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
21445
21446         * reflection.c: added more pubtoken special cases.
21447
21448 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
21449
21450         * class.c: handle field offset correctly when class size
21451         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
21452
21453 2003-06-20  Martin Baulig  <martin@ximian.com>
21454
21455         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
21456         *image' field.
21457
21458 2003-06-20  Martin Baulig  <martin@ximian.com>
21459
21460         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
21461
21462 2003-06-20  Martin Baulig  <martin@ximian.com>
21463
21464         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
21465         just distinguish between variables in registers and variables at
21466         an offset relative to a register.
21467
21468 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21469
21470         * icall.c: #ifdef out latest changes until mcs is fixed.
21471
21472 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
21473
21474         * icall.c: return members in metadata order.
21475
21476 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
21477
21478         * icall.c: avoid infinite loop in GetTimeZoneData.
21479
21480 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
21481
21482         * icall.c: added Marshal.Prelink/All icalls.
21483
21484 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
21485
21486         * object.c, object.h: fix warnings and do some overflow checking
21487         when creating arrays.
21488
21489 2003-06-17  Dick Porter  <dick@ximian.com>
21490
21491         * file-io.h:
21492         * file-io.c: File attributes need to be tweaked slightly when
21493         passed from the managed to the w32 world.
21494
21495 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
21496         * profiler.h profiler-private.h profiler.c: Rework last patch
21497         based on suggestion by Paolo.
21498         
21499 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
21500
21501         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
21502         instruction level coverage data collection.
21503         * profiler.h profiler.c (: Added new callback function which can be
21504         used by the profiler to limit which functions should have coverage
21505         instrumentation.
21506         * profiler.c (mono_profiler_load): Call g_module_build_path to
21507         generate the file name of the profiler library.
21508
21509 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
21510
21511         * profiler.c, profiler.h, profiler-private.h: added basic block 
21512         coverage profiling API.
21513
21514 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
21515
21516         * reflection.c (mono_reflection_create_runtime_class): Add support
21517         for events in dynamically generated code.
21518
21519         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
21520         not allocated.
21521
21522 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
21523
21524         * icall.c: when getting timezone info, return reasonable values if we
21525         can't get the actual data.
21526
21527 2003-06-14  Dick Porter  <dick@ximian.com>
21528
21529         * threads.c (start_wrapper): Remove the reference to the thread
21530         object in the TLS data, so the thread object can be finalized.
21531         This won't be reached if the thread threw an uncaught exception,
21532         so those thread handles will stay referenced :-( (This is due to
21533         missing support for scanning thread-specific data in the Boehm GC
21534         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
21535
21536 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
21537
21538         * reflection.c: ensure streams and tables are first allocated with
21539         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
21540
21541 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
21542
21543         * icall.c: fixed GetElementType for byrefs (bug# 44792).
21544
21545 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
21546
21547         * reflection.c (mono_reflection_create_runtime_class): Add support for
21548         properties to dynamically created classes.
21549         * reflection.c: Fix a few places where non-MonoObjects were inserted
21550         into the tokens hashtable.
21551
21552 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
21553
21554         * object.c: some support to handle out of memory exceptions.
21555
21556 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
21557
21558         * marshal.c (mono_marshal_get_native_wrapper): support reference
21559         return types
21560
21561 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
21562
21563         * object.h, object.c: more portability stuff from Bernie Solomon.
21564         Unexport mono_object_allocate(). Added mono_object_unbox ().
21565         Set exitcode when an unhandled exception is thrown.
21566
21567 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
21568
21569         * marshal.c (mono_marshal_get_native_wrapper): use custom
21570         marshaler for return types.
21571
21572 2003-06-10  Dick Porter  <dick@ximian.com>
21573
21574         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
21575         ip_mreq is available
21576
21577 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
21578
21579         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
21580         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
21581         by Bernie Solomon <bernard@ugsolutions.com>.
21582
21583 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
21584
21585         * gc.c (mono_gc_init): Avoid error message on shutdown when
21586         GC_DONT_GC=1 is used.
21587
21588         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
21589         New icall to return the GUID of a module.
21590
21591 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
21592
21593         * class.c: ensure instance size always includes the parent's size
21594         even whem class size is set explicitly (fixes bug#44294).
21595
21596 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
21597
21598         * profiler.h, profiler.c: made the simple profiler thread-safe,
21599         get more accurate timing info. Allow the loading of an
21600         externally-developed profiler module.
21601
21602 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
21603
21604         * marshal.c (mono_marshal_get_native_wrapper): improved
21605         class/byref arguments.
21606         (mono_marshal_get_native_wrapper): better string marshaling support.
21607
21608 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
21609
21610         * class.c: ensure .pack and .size are handled correctly and
21611         simplified layout of static fields.
21612
21613 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
21614
21615         * appdomain.c
21616         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
21617
21618         * loader.c (mono_lookup_pinvoke_call): look for modules in the
21619         current directory (fix bug 44008)
21620
21621 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
21622
21623         * marshal.c (mono_marshal_get_native_wrapper): started support for
21624         custom marshalers.
21625         (mono_delegate_to_ftnptr): consider marshalling specifications
21626
21627 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
21628
21629         * reflection.c, reflection.h: emit custom marshal info.
21630
21631 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21632
21633         * object.c: free the GError.
21634         * icall.c: added CloseEvent_internal.
21635         * threads.[ch]:
21636         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
21637         call.
21638
21639 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
21640
21641         * loader.c (mono_method_get_signature): Add support for dynamic
21642         assemblies.
21643
21644 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
21645
21646         * reflection.c: fixed bug #43905.
21647
21648 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
21649
21650         * class.c, domain.c, icall.c, metadata.h, object.h: support for
21651         handling TypedReference and ArgIterator.
21652         * loader.c, loader.h: added function to get signature at call site.
21653
21654 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
21655
21656         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
21657         data readonly. Buglets and warning fixes. Some MethodSpec support.
21658
21659 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
21660
21661         * class.h, class.c, object.c: remove relative numbering support.
21662
21663 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
21664
21665         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
21666         free the string, until we get a chance to fix Gtk#
21667
21668 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21669
21670         * marshal.c: revert last patch.
21671
21672 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
21673
21674         * icall.c: updates for new mono_class_vtable() not calling
21675         the type constructor anymore.
21676
21677 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
21678
21679         * object.h, object.c: separate vtable creation from type
21680         initialization. Make running the .cctor thread safe.
21681
21682 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
21683
21684         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
21685
21686 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
21687
21688         * loader.c (mono_get_method): consider calling convention
21689
21690 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
21691
21692         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
21693         to return the invisible global type for a module.
21694
21695         * reflection.c (mono_image_build_metadata): Emit global fields too.
21696
21697 2003-05-20  Peter Williams  <peterw@ximian.com>
21698
21699         * loader.c (mono_lookup_internal_call): Add a few newlines.
21700
21701 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
21702
21703         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
21704         literal strings.
21705
21706         * appdomain.c (set_domain_search_path): Recalculate search path when
21707         AppDomainSetup.PrivateBinPath changes.
21708
21709         * object.c (mono_class_compute_gc_descriptor): It turns out some
21710         parts of the class libs (like System.Thread) holds pointers to
21711         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
21712         to treat native int a pointer type here.
21713         
21714 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
21715
21716         * appdomain.h, domain.c: add hashtable for jump target resolution.
21717
21718 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
21719
21720         * reflection.h reflection.c icall.c: Added new icalls 
21721         GetManifestResourceInfoInternal, GetModulesInternal and support
21722         infrastructure.
21723
21724 2003-05-16  Dick Porter  <dick@ximian.com>
21725
21726         * icall.c:
21727         * file-io.h:
21728         * file-io.c: Implement System.IO.MonoIO::GetTempPath
21729
21730 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
21731
21732         * object.c: mono_store_remote_field: little fix to previous patch.
21733
21734 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
21735
21736         * class.c: add constructors to array classes.
21737         * icall.c: special case array construction for InternalInvoke (),
21738
21739 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
21740
21741         * class.h class.c reflection.c object.c: Added support for field
21742         defaults in dynamically generated classes.
21743
21744 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
21745
21746         * reflection.c: properly encode charset for ddlimport.
21747
21748 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
21749
21750         * threads.c: allow compiling without GC.
21751
21752 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
21753
21754         * appdomain.h, object.c, object.h, threads.c, threads.h: added
21755         handling of thread static data.
21756
21757 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
21758
21759         * reflection.h, reflection.c: added mono_custom_attrs_free ().
21760
21761 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
21762
21763         * class.c (mono_array_class_get): always set the serializable flags
21764         (mono_array_class_get): always set the SEALED attribute for array types
21765
21766 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
21767
21768         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
21769         attributes (fix for bug 42021).
21770
21771 2003-05-12  Dick Porter  <dick@ximian.com>
21772
21773         * gc.c: Don't run finalizers when the finalizer thread is
21774         finishing up, because the default domain has already been
21775         destroyed.
21776
21777 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
21778
21779         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
21780         value is null, we should throw an exception.   This is slightly
21781         different than the other conventions used for the constructor.
21782
21783 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21784
21785         * socket-io.c: fixed windows build.
21786
21787 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21788
21789         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
21790
21791 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
21792
21793         * object.c (mono_string_new_wrapper): Compatibility fix for MS
21794         compilers.
21795
21796 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
21797
21798         * class.c (mono_class_layout_fields): Add experimental GC aware
21799         auto layout facility. Requires class library changes to work correctly.
21800
21801         (mono_class_setup_vtable): Avoid overriding explicit interface
21802         method implementations. Fixes iface3.exe test.
21803
21804         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
21805         object reference.
21806         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
21807         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
21808
21809         * metadata.h: Add new type classification macro which determines
21810         whenever the type holds an object reference.
21811
21812 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
21813
21814         * marshal.c (mono_marshal_get_native_wrapper): cleanups
21815
21816 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
21817
21818         * gc.c (finalizer_thread): Work around a GC bug.
21819
21820 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
21821
21822         * marshal.c (emit_struct_conv): allow unions
21823
21824         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
21825
21826 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
21827
21828         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
21829
21830 2003-05-06  Martin Baulig  <martin@ximian.com>
21831
21832         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
21833
21834 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21835
21836         * socket-io.c:
21837         (Select_internal): allow NULLs, don't create arrays if not needed.
21838         Coupled with Socket.cs changes.
21839
21840         * threadpool.c:
21841         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
21842         register a finalizer for it that will close the semaphore handle. This
21843         fixes the leak and make Lupus' test run with > 4080 loops.
21844
21845 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
21846
21847         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
21848         Jerome Laban (bug #42287)
21849
21850 2003-05-02  Martin Baulig  <martin@ximian.com>
21851
21852         * debug-mono-symfile.h
21853         (MonoSymbolFile): Moved declaration into mono-debug.h.
21854         (MonoDebugMethodJitInfo): Likewise.
21855         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
21856         argument.
21857         (_mono_debug_address_from_il_offset): Take a
21858         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
21859
21860         * mono-debug.h
21861         (MonoDebugDomainData): New struct.
21862         (mono_debug_get_domain_data): New function.
21863         (mono_debug_add_method): Take an additional `MonoDomain *'
21864         argument.
21865         (mono_debug_source_location_from_address): Likewise.
21866         (mono_debug_il_offset_from_address): Likewise.
21867         (mono_debug_address_from_il_offset): Likewise.
21868
21869 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
21870
21871         * reflection.c: one more check for null type in custom attrs.
21872
21873 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21874
21875         * reflection.c: avoid warning (comparison is always false due to limited
21876         range of data type).
21877
21878 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21879
21880         * icall.c: throw an exception in Type.GetField if the argument 'name'
21881         is NULL.
21882
21883 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
21884
21885         * reflection.c: fixed handling of enums in named arguments to custom
21886         attributes (bug #42123).
21887
21888 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
21889
21890         * reflection.c: use the right array element type and handle
21891         a null for a Type argument, too.
21892
21893 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
21894
21895         * reflection.c: handle arrays as arguments to custom attributes.
21896
21897 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
21898
21899         * reflection.c: handle a string value in a custom attr
21900         ctor that takes an object.
21901
21902 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
21903
21904         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
21905         (fix bug #42063)
21906
21907 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
21908
21909         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
21910
21911 2003-04-27  Martin Baulig  <martin@ximian.com>
21912
21913         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
21914         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
21915         MONO_DEBUGGER_EVENT_BREAKPOINT.
21916         (mono_breakpoint_trampoline_code): Removed.
21917         (mono_debugger_event_handler): The last argument is now a
21918         `guint32'.
21919         (mono_debugger_insert_breakpoint_full): Removed the
21920         `use_trampoline' argument.
21921         (mono_debugger_method_has_breakpoint): Likewise.
21922         (mono_debugger_trampoline_breakpoint_callback): Renamed to
21923         mono_debugger_breakpoint_callback(); take the method and
21924         breakpoint number as arguments.
21925
21926 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
21927
21928         * metadata.c: fix off by one when loading parameters attributes.
21929
21930 2003-04-24  Martin Baulig  <martin@ximian.com>
21931
21932         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
21933
21934 2003-04-24  Martin Baulig  <martin@ximian.com>
21935
21936         * mono-debug-debugger.c: Moved all code which interacts with the
21937         Mono Debugger here.
21938
21939         * debug-mono-symfile.c: This code now just deals with the symbol
21940         file itself, the debugger code is now in mono-debug-debugger.c.
21941
21942 2003-04-23  Martin Baulig  <martin@ximian.com>
21943
21944         * mono-debug.c (mono_debug_source_location_from_il_offset):
21945         New method; like mono_debug_source_location_from_address(), but
21946         takes an IL offset instead of a machine address.
21947
21948 2003-04-23  Martin Baulig  <martin@ximian.com>
21949
21950         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
21951         `line' field; this is now computed by the debugger.
21952
21953 2003-04-23  Martin Baulig  <martin@ximian.com>
21954
21955         * mono-debug.[ch]: New files.  This is the new debugging interface.
21956
21957         * mono-debug-debugger.[ch]: New files.  Moved all code which
21958         interacts with the Mono Debugger here.
21959
21960 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
21961
21962         * domain.c (mono_init): initialize mono_defaults.monitor_class
21963
21964 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
21965
21966         * reflection.c (method_encode_code): Add a spicy exception to help
21967         future compiler authors.
21968
21969 2003-04-21  Martin Baulig  <martin@ximian.com>
21970
21971         * icall.c
21972         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
21973         Make this work with relative pathnames; g_filename_to_uri() needs
21974         an absolute filename.
21975
21976 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
21977
21978         * icall.c: Track name changes in Object and ValueType.
21979
21980 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
21981
21982         * metadata.c (mono_type_stack_size): size should be a multiple of
21983         sizeof (gpointer)
21984
21985 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21986
21987         * gc.c:
21988         (internal_domain_finalize): moved into mono_domain_finalize. No need
21989         to create another thread because the finalizers will be run in the
21990         finalizer thread.
21991         
21992         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
21993         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
21994         to be run (MS does this too).
21995
21996 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
21997
21998         * object.c (mono_class_compute_gc_descriptor): Update comment.
21999
22000         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
22001
22002         * image.h: Add synchronized wrapper cache.
22003
22004         * image.c (do_mono_image_open): Initialize cache.
22005
22006         * reflection.c (create_dynamic_mono_image): Initialize cache.
22007
22008 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22009
22010         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
22011         ves_icall_System_Buffer_ByteLengthInternal.
22012
22013 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
22014
22015         * reflection.c: setup klass->nested_in earlier. Allow
22016         a dash in the assembly name.
22017
22018 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
22019
22020         * metadata.c (mono_type_to_unmanaged): dont access
22021         type->data.klass for MONO_TYPE_OBJECT
22022         (mono_type_to_unmanaged): consider System.Delegate class
22023
22024 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
22025
22026         * class.c: just setup supertypes in the proper place instead of
22027         initializing the full element class for arrays.
22028
22029 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
22030
22031         * class.c: ensure the element class of arrays is initialized.
22032         Setup the supertype info for array classes, too.
22033
22034 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
22035
22036         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
22037
22038 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22039
22040         * Makefile.am: re-added -m option when running cygpath. This way,
22041         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
22042         separator.
22043         * mono-config.c: same codepath for locating mono config file for WIN32
22044         and the rest.
22045         * assembly.c: if mono_assembly_setrootdir is called, don't override
22046         the value set.
22047
22048 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22049
22050         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
22051         MONO_ASSEMBLIES variable.
22052
22053 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
22054
22055         * icall.c: added Assembly::GetNamespaces() icall.
22056
22057 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22058
22059         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
22060
22061 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
22062
22063         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
22064         * object.c: fixed bug in the construction of vtable for proxies
22065
22066 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
22067
22068         * object.c (mono_array_new): Mark mono_array_new as an icall.
22069
22070 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22071
22072         * class.c: fixed test for public method when overriding interfaces.
22073         Closes bug #40970.
22074
22075 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
22076
22077         * appdomain.h, domain.c: added mono_domain_foreach() to
22078         be able to access the currently loaded appdomains.
22079         * object.c: make string interning work across sppdomains.
22080         Mark some functions for use as icalls.
22081
22082 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
22083
22084         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
22085
22086         * reflection.h reflection.c: Allocate long living data using 
22087         GC_MALLOC_ATOMIC so the collector does not need to scan it.
22088
22089         * reflection.c: Double the allocation size in streams instead of
22090         increasing it, to prevent unneccesary copying on large assemblies.
22091         
22092         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
22093         creation if the assembly does not have the Run flag set.
22094
22095 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
22096
22097         * class.h: avoid the C++ keywords in header files (Jerome Laban
22098         spotted and fixed this).
22099
22100 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22101
22102         * object.c:
22103         (mono_unhandled_exception): fill in the arguments for the
22104         UnhandledException event. Only trigger that event for the default
22105         domain (as MS does).
22106
22107 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
22108
22109         * object.c: Improve typed allocation stuff based on suggestions from
22110         Paolo. Also turn it on if the GC library supports it.
22111
22112 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
22113
22114         * object.c object.h class.h: Added experimental typed allocation
22115         facility using the interfaces in gc_gcj.h.
22116
22117         * os/gc_wrapper.h: Added new include files.
22118         
22119 2003-04-03  Martin Baulig  <martin@ximian.com>
22120
22121         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
22122         which is not yet enabled by default.
22123
22124         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
22125         functions.
22126         (mono_gc_lock, mono_gc_unlock): New static functions.
22127
22128         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
22129         functions; stop/start the world for the garbage collector.  This
22130         is using the windows API; we need to complete the SuspendThread()/
22131         ResumeThread() implementation in the io-layer to make this work on Unix.
22132         (mono_gc_push_all_stacks): New public function; tells the garbage
22133         collector about the stack pointers from all managed threads.
22134
22135 2003-04-03  Martin Baulig  <martin@ximian.com>
22136
22137         * object.h (MonoThread): Added `gpointer stack_ptr'.
22138
22139         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
22140
22141 2003-04-03  Martin Baulig  <martin@ximian.com>
22142
22143         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
22144
22145 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
22146
22147         * reflection.c (typebuilder_setup_fields): Initialize field.first and
22148         field.last.
22149
22150 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
22151
22152         * loader.c (mono_lookup_internal_call): Report the corlib that is
22153         out of sync.
22154
22155 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
22156
22157         * icall.c (ves_icall_type_GetTypeCode): fixed check for
22158         System.DBNull (it's class not valuetype).
22159
22160 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
22161
22162         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
22163         if the array method was already assigned a token (fixes bug#40646).
22164
22165 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
22166
22167         * reflection.c (mono_reflection_get_type): Attempt type resolve even
22168         if no assembly is given.
22169
22170 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
22171
22172         * metadata.h: Added the new tables.
22173
22174         * row-indexes.h: Added definitions for new tables.
22175
22176         * metadata.c: Add schemas for new tables, and add support for
22177         computing the sizes of them.
22178
22179         * class.c: Update for handling the new type cases.
22180
22181 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
22182
22183         * metadata.h (MONO_TYPE_IS_VOID): new macro
22184
22185 2003-03-31  Martin Baulig  <martin@ximian.com>
22186
22187         * threads.h (MonoThreadCallbacks): Added `thread_created'.
22188
22189         * threads.c (mono_thread_new_init): Call `thread_created' in the
22190         mono_thread_callbacks.
22191
22192 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
22193
22194         * loader.h: added marshalbyrefobject_class to mono_defaults
22195         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
22196         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
22197           generation of output parameters.
22198           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
22199         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
22200           contextbound and the target object belongs to the context of the caller.
22201         * object.h: added context and unwrapped_server variables in MonoRealProxy.
22202         * object.c: Implemented support for interfaces and abstract classes
22203           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
22204           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
22205
22206 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
22207
22208         * class.h class.c (mono_class_is_subclass_of): New function.
22209         
22210         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
22211         routines for most common case (calls from ArrayList::ToArray).
22212
22213         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
22214         routine so programs which call Environment::Exit() can be profiled.
22215
22216         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
22217         Added MONO_ARCH_SAVE_REGS.
22218
22219         * icall.c (ves_icall_type_is_subtype_of): Use new function.
22220
22221 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
22222
22223         * blob.h: Add a couple of new MonoType types definitions.
22224
22225         * tabledefs.h: Add a couple of new call convs.
22226
22227 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
22228
22229         * reflection.h (MonoReflectionDynamicAssembly): track changes in
22230         the layout of the class.
22231
22232         * reflection.c (alloc_table): double the size on overflow to avoid
22233         unnecessary copying.
22234
22235         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
22236         avoid filling out metadata tables and blobs. Also set mb->ilgen to
22237         null so it can be garbage collected.
22238         
22239 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
22240
22241         * reflection.c (mono_reflection_get_type): Return the resolved type
22242         only if it is in the assembly we searched.
22243
22244         * reflection.c (ensure_runtime_vtable): Initialize method slots.
22245
22246         * class.c (mono_class_setup_vtable): Set the slot of the overriding
22247         method.
22248
22249 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22250
22251         * appdomain.c:
22252         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
22253         the right one is 'file:///blah', but MS allows it.
22254         * assembly.c:
22255         (mono_assembly_open): allow 'file://blah'
22256
22257         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
22258
22259 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
22260
22261         * socket-io.c: fixes bug #40310.
22262
22263 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
22264
22265         * reflection.c (mono_reflection_parse_type): handle deeply nested
22266         types correctly.
22267
22268         * reflection.c (mono_image_create_token): Use unique token values
22269         since they will be put into a hash table.
22270
22271         * class.c (mono_class_setup_vtable): If a method occurs in more than
22272         one place in the vtable, and it gets overriden, then change the
22273         other occurances too.
22274
22275         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
22276         object as return type.
22277
22278 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
22279
22280         * icall.c: Deleted "ToString" implementation for double and float
22281         because they are full implemented in managed code.
22282
22283 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
22284
22285         * reflection.c, reflection.h: implemented and exported functions
22286         to retrieve info about custom attributes.
22287
22288 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22289
22290         * appdomain.c: moved Uri handling to assembly.c
22291         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
22292         work when using a file Uri in *nix and windows.
22293
22294         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
22295         GetReferencedAssemblies.
22296
22297 2003-03-18  Dick Porter  <dick@ximian.com>
22298
22299         * icall.c: Rename a couple of internal calls
22300
22301         * threads.c: Set the thread state to Stopped when a thread exits.
22302         Fixes bug 39377.
22303
22304 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
22305
22306         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
22307         New icall.
22308
22309         * object.c (mono_class_vtable): fix warning.
22310
22311 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
22312
22313         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
22314
22315         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
22316         memory.
22317         (method_encode_clauses): Create exception info structures in the right
22318         order.
22319         (mono_reflection_setup_internal_class): Initialize supertypes field.
22320
22321         * class.c object.c: Handle interfaces which implement other interfaces 
22322         correctly.
22323
22324         * class.h class.c: Move the supertypes array initialization code into 
22325         a separate function so it can be used for dynamic types too. Also call
22326         it earlier, in mono_class_init(), since it can be used before the
22327         type is initialized.
22328
22329 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22330
22331         * Makefile.am:
22332         * assembly.c:
22333         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
22334
22335         * appdomain.c:
22336         * appdomain.h:
22337         * marshal.c:
22338         * object.c: remove warnings.
22339
22340 2003-03-13  Martin Baulig  <martin@ximian.com>
22341
22342         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
22343         (MonoDebugLexicalBlockEntry): New types.
22344
22345         * debug-mono-symfile.c
22346         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
22347
22348 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22349
22350         * process.c: ret can be any non-zero value accroding to MS doc.
22351
22352 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
22353
22354         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
22355         fixing a warning for a miss-used prototype, would have cause
22356         random memory corruption.
22357
22358 2003-03-07  Martin Baulig  <martin@ximian.com>
22359
22360         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
22361         getting really annoying ....
22362
22363 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
22364
22365         * reflection.c (fixup_method): added support for array methods.
22366
22367 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
22368
22369         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
22370         (pointed out by Michael Adams).
22371
22372 2003-03-04  Dick Porter  <dick@ximian.com>
22373
22374         * icall.c: Temporarily reverted the Double and Single ToString()
22375         change, because it broke nunit.
22376
22377 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
22378
22379         * object.h, threads.h: make include files compatible with C++
22380         (patch by Jerome Laban <jlaban@wanadoo.fr>).
22381
22382 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
22383
22384         * icall.c: Erased ToString helper functions for Double and Single.
22385         Now, that implementations ar all in managed code (Double and Single
22386         Formatters).
22387
22388 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
22389
22390         * appdomain.c: Added method for initializing the default context of
22391         a domain. Added internal call for getting the default context.
22392         * appdomain.h: Added context variable in MonoDomain struct.
22393         * domain.c: mono_domain_set also sets the default context of the domain
22394         * icall.c: Mapped internal method InternalGetDefaultContext.
22395         * object.c: mono_object_get_virtual_method returns always a remoting
22396         wrapper if the object is a transparent proxy.
22397         mono_runtime_invoke_array: when creating an object by calling the
22398         constructor, if the created object is a proxy, then the constructor should
22399         be called using the a remoting wrapper.
22400
22401 2003-03-03  Dick Porter  <dick@ximian.com>
22402
22403         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
22404         variable so it compiles on solaris.  Problem spotted by
22405         Christopher Taylor <ct@cs.clemson.edu>
22406
22407 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22408
22409         * appdomain.c:
22410         (get_info_from_assembly_name): don't leak value.
22411
22412         * icall.c:
22413         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
22414         result.
22415
22416 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
22417
22418         * assembly.c: export mono_image_load_references ().
22419         * class.c: handle function pointers. mono_class_from_name() now
22420         supports nested type names directly.
22421
22422 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
22423
22424         * reflection.h reflection.c: Encode already created dynamic methods 
22425         and fields correctly as a DEF instead of a REF.
22426
22427         * reflection.c: Get rid of the force_ref argument to 
22428         mono_image_typedef_or_ref since it was wrong in the first place.
22429
22430         * string-icalls.c: add error checking to string constructors according
22431         to the MSDN docs.
22432
22433         * reflection.c: Emit types in the order their TypeBuilders were 
22434         created. Previously, a new table index was assigned to each type before
22435         the tables were emitted. This was wrong because the signature blob
22436         might already refer to a type by its original table index.
22437
22438 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
22439
22440         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
22441         change.
22442         
22443 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22444
22445         * Makefile.am: make assemblies dir have \ instead of / on windows.
22446
22447 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
22448
22449         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
22450         iterate over the NESTEDCLASS table using a linear search since the
22451         table is not guaranteed to be sorted by the secondary key.
22452
22453         * class.c (mono_class_create_from_typedef): fixed up call to
22454         mono_metadata_nesting_typedef.
22455         
22456 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
22457
22458         * marshal.c (mono_string_to_byvalstr): clear the memory as
22459         suggested by Jerome Laban <jlaban@wanadoo.fr>
22460
22461 2003-02-26  Dick Porter  <dick@ximian.com>
22462
22463         * process.c: Cope with padding in .rsrc blocks
22464
22465 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
22466
22467         * metadata.h: reverted the filter_len change, it breaks reflection
22468         
22469 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
22470
22471         * metadata.h: added a new field to store the filter_len
22472         
22473
22474 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
22475
22476         * reflection.c: handle custom attributes for types and members
22477         created with Reflection.Emit (bug#38422).
22478
22479 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
22480
22481         * reflection.c: define RTSpecialName automatically for constructors for
22482         compatibility with MS.NET.
22483
22484         * reflection.c (mono_reflection_create_runtime_class): initialize
22485         nested_in field of dynamically created classes.
22486
22487 2003-02-22  Martin Baulig  <martin@ximian.com>
22488
22489         * debug-mono-symfile.h: Incremented version number.
22490
22491 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
22492
22493         * object.h icall.c process.c: fix warnings.
22494
22495 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
22496
22497         * appdomain.h appdomain.c:
22498         (mono_domain_try_type_resolve): split the 
22499         name_or_tb argument into a name and a tb argument.
22500         (mono_domain_has_type_resolve): new function to check whenever the
22501         application has registered a TypeResolve event handler.
22502         
22503         * icall.c reflection.h reflection.c: move the type resolve logic into
22504         mono_reflection_get_type () so it will be invoked when 
22505         Assembly::GetType () is called.
22506
22507         * reflection.c:
22508         (mono_reflection_get_type): renamed to get_type_internal.
22509         (mono_reflection_get_type): fixed type name generation so it works 
22510         for nested types too.
22511         (mono_reflection_get_type): call has_type_resolve () to avoid the 
22512         costly type name generation if there is no resolve event handler.
22513
22514 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
22515
22516         * class.c, image.c: load exported types from file references.
22517
22518 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
22519
22520         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
22521           used to cache the managed methods used to create proxies and make 
22522           remote invocation of methods.
22523         * class.h: Added in MonoVTable a flag to indicate that a class needs 
22524           to be remotely created.
22525         * object.c: Modified the method mono_class_vtable(). It now initializes 
22526           the remote flag of the vtable. Modified mono_object_new_specific(), 
22527           so now it checks the remote flag.
22528         * icall.c: Added a couple of internal methods, one for enabling instance 
22529           creation interception for a type, and one for creating objects bypassing
22530           the remote check.
22531
22532 2003-02-18  Martin Baulig  <martin@ximian.com>
22533
22534         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
22535         New interncall to get a method's metadata token.
22536
22537         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
22538         New interncall for the debugger.
22539
22540 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
22541
22542         * class.c (mono_class_setup_vtable): allocate supertype array
22543
22544 2003-02-18  Martin Baulig  <martin@ximian.com>
22545
22546         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
22547
22548 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22549
22550         * reflection.c:
22551         (assembly_name_to_aname): jump over unknown properties (i've found
22552         something like: 'type, assembly, version=xxx, custom=null, public...',
22553         so now will ignore custom=null and still get the rest of the values).
22554
22555 2003-02-17  Dick Porter  <dick@ximian.com>
22556
22557         * threads.c: Have Thread.Start() wait for a semaphore to signal
22558         that the thread has set up all its local data.  This fixes bug
22559         34323, where Abort() raced the new thread's TLS data.
22560
22561         Also removes the handle_store() call from start_wrapper, because
22562         threads are now always created suspended and there is no longer a
22563         race between the parent and child threads to store the info.
22564
22565 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
22566
22567         * image.c: explain the #- heap issue in a message, hopefully
22568         avoiding FAQs on mono-list.
22569
22570 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22571
22572         * icall.c:
22573         (GetEntryAssembly): if the domain has not invoked
22574         AppDomain.ExecuteAssembly yet, return the assembly of the default
22575         AppDomain.
22576
22577 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
22578
22579         * class.c (mono_ldtoken): make it work in dynamic assemblies.
22580
22581 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
22582
22583         * metadata.c, reflection.c: simple speedup to type hash
22584         and equals code.
22585
22586 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
22587
22588         * image.c, image.h, class.c, assembly.c: move module loading
22589         to MonoImage. When loading metadata, consider alignemnet from
22590         the start of metadata, not from the metadata address in memory.
22591
22592 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
22593
22594         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
22595         AssemblyBuilder objects. Factored out custom attribute creation into
22596         a separate function.
22597         (create_custom_attr): new function to create custom attributes.
22598
22599 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
22600
22601         * Makefile.am: Got tired of typing the full pathname to pedump.
22602         Until there is another option, am installing this.
22603
22604 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
22605
22606         * class.c (class_compute_field_layout): always set field->parent 
22607         (mono_ldtoken): use mono_defaults.fieldhandle_class;
22608
22609 2003-02-11  Dick Porter  <dick@ximian.com>
22610
22611         * threads-types.h:
22612         * monitor.c: Rewrote Monitor, making lock much faster and
22613         Pulse/Wait work as specified.  Also uses much fewer handles, and only
22614         creates them as needed.
22615
22616         * exception.c: Added SynchronizationLockException
22617
22618         * threads.c: Deleted old Monitor implementation.  The new one is
22619         in a new file.
22620
22621 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
22622
22623         * class.c: handled TypedReference type code. Set the correct size for
22624         class data. Setup interface_offsets for interface classes, too.
22625
22626 2003-02-09  Martin Baulig  <martin@ximian.com>
22627
22628         * debug-mono-symfile.h: Reflect latest symbol writer changes.
22629
22630 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
22631
22632         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
22633         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
22634         * object.c: fixed mono_object_get_virtual_method () for interfaces.
22635         * verify.c: check for code that runs after the end of the method.
22636
22637 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
22638
22639         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
22640         "System.Math::Round2".
22641         * sysmath.h: Added Floor, Round and Round2 definitions.
22642         * sysmath.c: Modified certain functions that were not 100% compliant
22643         with MS.NET (math precision) and added the implementation of Floor,
22644         Round and Round2.
22645
22646 2003-02-07  Martin Baulig  <martin@ximian.com>
22647
22648         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
22649
22650 2003-02-07  Martin Baulig  <martin@ximian.com>
22651
22652         * debug-mono-symfile.c: Reflected latest symwriter changes.
22653         (mono_debug_create_mono_symbol_file): Removed.
22654         (mono_debug_open_mono_symbol_file): Take an argument which
22655         specifies whether to create a dynamic symbol file.
22656
22657 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
22658
22659         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
22660
22661 2003-02-05  Martin Baulig  <martin@ximian.com>
22662
22663         * reflection.c (mono_image_build_metadata): Make this public,
22664         protect it against being called multiple times, don't create
22665         resources and don't build the compressed metadata here.
22666         (mono_image_create_pefile): Do this here.
22667
22668         * icall.c
22669         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
22670
22671 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22672
22673         * socket-io.c: fixed bug #36322.
22674
22675 2003-02-06  Piers Haken <piersh@friskit.com>
22676
22677         * appdomain.[ch]:
22678         * class.h:
22679         * debug-mono-symfile.c:
22680         * icall.c:
22681         * loader.c:
22682         * mono-config.c:
22683         * monosn.c:
22684         * reflection.c:
22685         * socket-io.c: warning cleanups
22686
22687 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
22688
22689         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
22690         function. works like remoting invoke, but does a check for the Proxy first.
22691
22692 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
22693
22694         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
22695
22696 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
22697
22698         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
22699         array of pointers.
22700         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
22701         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
22702
22703         * object.c (mono_store_remote_field_new): used by the new jit
22704         instead of mono_store_remote_field
22705         (mono_load_remote_field_new): used by the new jit
22706         instead of mono_load_remote_field
22707
22708 2003-02-05  Patrik Torstensson
22709
22710         * appdomain.c: changed unload to take the domain id instead
22711         of domain
22712         
22713         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
22714
22715
22716 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22717
22718         * appdomain.c: don't look for assemblies in ApplicationBase if
22719         PrivateBinPathProbe is set.
22720
22721 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22722
22723         * object.c: make the first argument in main_args contain the absolute
22724         path to the assembly. Fixes bug #37511.
22725
22726 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22727
22728         * icall.c: get correct UTC offset for countries not using daylight
22729         time saving. Fixes bug #30030.
22730
22731 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22732
22733         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
22734         and 1 are the family).
22735
22736 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
22737
22738         * icall.c (ves_icall_InternalExecute): removed wrong assertion
22739
22740         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
22741
22742 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
22743
22744         * reflection.c: added support for SignatureHelper tokens, which is
22745         needed by the Calli opcode.
22746
22747         * reflection.h: track changes to SignatureHelper class.
22748
22749         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
22750
22751 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22752
22753         * appdomain.c: fixed loading assemblies from PrivateBinPath.
22754
22755 2003-02-03  Patrik Torstensson
22756         * appdomain.[c|h], domain.c : 
22757          - Added support for getting a domain via domain id
22758          - Support for setting and getting domain from System.AppDomain 
22759            (used in cross appdomain channel)
22760          - Added support for get/set for a MonoAppContext on a thread 
22761            (Context class in System.Runtime.Remoting.Contexts),
22762          - Removed hack in Get/SetData and ExecuteAssembly.
22763         
22764         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
22765         the managed world to get control when a proxy is created.
22766
22767         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
22768         
22769 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
22770
22771         * icall.c
22772         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
22773         Populate the codebase field as well.
22774
22775 2003-02-02  Martin Baulig  <martin@ximian.com>
22776
22777         * debug-mono-symfile.c
22778         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
22779         (mono_debug_symfile_add_method): Allow interncalls.
22780
22781 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22782
22783         * icall.c: throw parse exception if strtod fails or the string is empty.
22784
22785 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
22786
22787         * marshal.c: handle object type separately from defined
22788         class types.
22789
22790 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
22791
22792         * marshal.c: handle NATIVE_LPSTR for strings when it's
22793         explicitly specified.
22794
22795 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
22796
22797         * reflection.c, reflection.h, icall.c: setup the reflection
22798         handle cache for ModuleBuilders and AssemblyBuilders.
22799
22800 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
22801
22802         * reflection.c (reflection_methodbuilder_to_mono_method): set
22803         pinvoke flag
22804
22805 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22806
22807         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
22808
22809 2003-01-29  Dick Porter  <dick@ximian.com>
22810
22811         * threads.c: No need for the fake_thread kludge now that Thread
22812         doesn't run a class constructor
22813         
22814 2003-01-29  Dick Porter  <dick@ximian.com>
22815
22816         * threads.c: Use g_direct_hash instead of the rather bogus
22817         g_int_hash
22818
22819 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
22820
22821         * marshal.c (mono_marshal_get_native_wrapper): add check for null
22822         (fix pinvoke12.exe)
22823         (mono_marshal_get_struct_to_ptr): generate valid IL code
22824         (mono_marshal_get_ptr_to_struct): generate valid IL code
22825         (*): correctly set sig->pinvoke, we need to memdup the signature
22826         to do that
22827
22828 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
22829
22830         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
22831         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
22832
22833 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
22834
22835         * profiler.c: provide more callers information.
22836
22837 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
22838
22839         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
22840
22841         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
22842
22843         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
22844
22845 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
22846
22847         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
22848         exception instead of going into an infinite loop on dates which it 
22849         can't yet handle.
22850
22851         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
22852         out-of-range exception if needed.
22853
22854         * class.c (mono_class_setup_vtable): allow a virtual method to provide
22855         an implementation for an interface method and to override an inherited
22856         method at the same time. 
22857         Imagine a scenario when a virtual method is used to override a
22858         virtual abstract method in a parent class, and this same method 
22859         provides an implementation for an method inherited from an interface. 
22860         In this case, the interface resolution code will set im->slot, which 
22861         means that the virtual method override pass will skip this method 
22862         which means a pointer to the abstract method inherited from the parent
22863         will remain in the vtable of this non-abstract class.
22864
22865         * class.c: (mono_class_setup_vtable): continue search for a real 
22866         method if only an abstract method is found.     
22867
22868 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
22869
22870         * reflection.c: add size to encoding for ByValStr and ByValArray
22871         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
22872
22873 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
22874
22875         * class.c (mono_class_setup_vtable): pass the override info as an
22876         argument.
22877
22878         * class.c (mono_class_setup_vtable): set the slot of overriding methods
22879         correctly.
22880         
22881         * reflection.c (ensure_runtime_vtable); add support for method 
22882         overrides.
22883         
22884 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
22885
22886         * reflection.c (resolution_scope_from_image): Hack to work to work with
22887         dynamic assemblies.
22888
22889         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
22890         added a 'force_ref' argument to force this function to allways return 
22891         a TypeRef. This is needed by mono_image_get_memberref_token ().
22892         
22893 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
22894
22895         * reflection.c (mono_image_get_type_info): interfaces really don't have
22896         a parent.
22897
22898         * reflection.c (mono_image_basic_init): fill out missing fields of
22899         image structure.
22900
22901         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
22902         dynamic assemblies. This is required so dynamic assemblies show up in
22903         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
22904         Type::GetType() etc. This is consistent with MS behaviour.
22905
22906         * image.c image.h reflection.c: add newly created classes to the name 
22907         cache so mono_class_get () will find them.      
22908
22909 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
22910
22911         First part of changes to get IKVM.NET running under mono.
22912         
22913         * appdomain.h, appdomain.c: added new function 
22914         mono_domain_try_type_resolve() which will emit TypeResolve events. 
22915         This function will call AppDomain::DoTypeResolve to do the actual work.
22916
22917         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
22918         moved existing code dealing with dynamic tokens to a new function 
22919         called mono_reflection_lookup_dynamic_token (). This function will 
22920         raise TypeResolve events when appropriate. Since reflection.c is not 
22921         part of libmetadata, a new hook function called 
22922         mono_lookup_dynamic_token() is added to class.c which will call this.
22923
22924         * assembly.h assembly.c: make the invoke_load_hook function public,
22925         so it can be called for dynamic assemblies.
22926
22927         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
22928
22929         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
22930         type isn't found.
22931
22932         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
22933         MonoGHashTable, since it contains pointers to objects which the GC 
22934         needs to track.
22935
22936         * assembly.c (search_loaded): remove unused variable.
22937         
22938 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
22939
22940         * object.c: fixed issue exposed by gcc-generated IL programs
22941         that use RVA data for pointers.
22942
22943 2003-01-25  Martin Baulig  <martin@ximian.com>
22944
22945         * threads.c (start_wrapper): Moved the initialization of
22946         `start_func' above the mono_new_thread_init() call to which we
22947         pass it as argument.
22948
22949 2003-01-24  Martin Baulig  <martin@ximian.com>
22950
22951         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
22952         the MonoThread pointer.
22953
22954 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
22955
22956         * icall.c: Rename `PowImpl' to Pow.
22957
22958 2003-01-23  Dick Porter  <dick@ximian.com>
22959
22960         * threads.c (start_wrapper): Create a Thread object if needed, so
22961         the Main() thread can do the class initialisation in a subthread
22962         that has been set up to allow managed code execution.
22963
22964         Pass the thread ID instead of the MonoThread pointer to the thread
22965         start and attach callbacks.  This change is required, because the
22966         jit thread start callback must be called _before_ the Thread
22967         object can be created.
22968         
22969         (mono_thread_init): Removed much object creation code that is no
22970         longer needed.  No managed code is called from here now.
22971
22972         * object.c (mono_runtime_exec_managed_code): Create a subthread
22973         for Main, and call back to the runtime to use it.
22974         Set the exit code when Main exits.
22975
22976         * gc.c: Make sure domain finalisation happens in a subthread.
22977         Re-enable threaded GC, fixing bug 31333 (again).
22978
22979         * environment.c: System.Environment internall calls (so far just
22980         ExitCode is here, the others are still in icall.c)
22981
22982         * appdomain.c (mono_runtime_cleanup): All threads running managed
22983         code should have finished before mono_runtime_cleanup() is
22984         reached, so no need to clean up threads.
22985
22986 2003-01-22  Martin Baulig  <martin@ximian.com>
22987
22988         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
22989         `gpointer func' arguments.      
22990         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
22991         but added `MonoThread *thread' argument.
22992         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
22993
22994         * threads.c (mono_new_thread_init): Added `gpointer func' argument
22995         and pass it to the mono_thread_start_cb callback.
22996         (mono_install_thread_callbacks): New public function to install a
22997         set of callbacks which are set by the debugger.
22998         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
22999
23000 2003-01-22  Martin Baulig  <martin@ximian.com>
23001
23002         * Makefile.am: Install debug-mono-symfile.h.
23003
23004 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
23005
23006         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
23007
23008 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
23009
23010         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
23011         * class.c (mono_ptr_class_get): correctly set access levels of pointers
23012         (mono_array_class_get): correctly set access levels of arrays
23013
23014 2003-01-20      Patrik Torstensson
23015         * image.h (MonoAssemblyName): changed major, minor, build, revision
23016         from signed to unsigned.
23017
23018 2003-01-20  sean kasun <skasun@azstarnet.com>
23019
23020         * reflection.c (load_cattr_value): Now this handles
23021         MONO_TYPE_SZARRAY.  Fixes bug #35629
23022
23023 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
23024
23025         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
23026         integer value
23027
23028 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23029
23030         * decimal.c: fixed bug #26056.
23031
23032 2003-01-17  Martin Baulig  <martin@ximian.com>
23033
23034         * gc.c: Raise an ExecutionEngineException instead of using g_error().
23035
23036 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23037
23038         * exception.[ch]:
23039         (mono_get_exception_type_initialization): new function.
23040
23041         * object.c: throw a TypeInitializationException when an exception is
23042         thrown invoking the class constructor.
23043
23044 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23045
23046         * reflection.c: fixed attribute reading.
23047
23048 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23049
23050         * icall.c:
23051         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
23052         provided, look for the type in the calling assembly and then in
23053         mscorlib; if the assembly name is provided, only try that one.
23054
23055 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
23056
23057         * object.c: register the vtable before there is a chance it's
23058         queried again recursively.
23059
23060 2003-01-13  Duncan Mak  <duncan@ximian.com>
23061
23062         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
23063         gc-internal.h. 
23064         
23065 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
23066
23067         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
23068
23069 2003-01-11  Martin Baulig  <martin@ximian.com>
23070
23071         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
23072         this to 20 for the release.
23073
23074 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
23075
23076         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
23077
23078         * loader.c (mono_method_get_marshal_info): bug fix
23079
23080         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
23081         structures with explicit layout
23082
23083 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
23084
23085         * profiler.c: made the output more readable (and sorted). 
23086         Added caller information for the allocation profiler.
23087
23088 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
23089
23090         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
23091
23092 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23093
23094         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
23095         to get value types.
23096         
23097 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
23098
23099         * object.c, profiler.h, profiler.c, profiler-private.h:
23100         Added object allocation profiler.
23101
23102 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
23103
23104         * reflection.h, reflection.c: handle global methods.
23105         Compress blob entries.
23106
23107 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
23108
23109         * marshal.c: fix compilation.
23110
23111 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
23112
23113         * loader.c (mono_method_get_marshal_info): impl.
23114
23115         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
23116
23117 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23118
23119         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
23120         for reference types.
23121
23122 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
23123
23124         * loader.c: fixed off by one error in loaded parameter names.
23125
23126 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
23127
23128         * marshal.c (mono_marshal_get_icall_wrapper): like
23129         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
23130         instead of a MonoMethod.
23131
23132 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23133
23134         * decimal.c: fixed bug #36537.
23135
23136 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
23137
23138         * marshal.c: throw a missing method exception if a
23139         P/Invoke method is not found.
23140
23141 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
23142
23143         * icall.c: allow a null this for constructors.
23144
23145 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
23146
23147         * icall.c: raise the proper exceptions if the arguments to the
23148         internal Invoke are incorrect.
23149
23150 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
23151
23152         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
23153
23154 2003-01-03  Martin Baulig  <martin@ximian.com>
23155
23156         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
23157
23158 2002-12-31  Martin Baulig  <martin@ximian.com>
23159
23160         * debug-mono-symfile.c: Completely rewrote the type section.
23161         Instead of using individual malloc()ed fields, we use one big
23162         continuous memory area and offsets into this area.
23163         See the comments in the source code for details.
23164
23165 2002-12-30  Martin Baulig  <martin@ximian.com>
23166
23167         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
23168
23169 2002-12-30  Martin Baulig  <martin@ximian.com>
23170
23171         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
23172         line number table in this data blob instead of using an external
23173         pointer.
23174
23175 2002-12-28  Martin Baulig  <martin@ximian.com>
23176
23177         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
23178
23179 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
23180
23181         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
23182         as a boxed return type.
23183
23184 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
23185
23186         * appdomain.c
23187         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
23188         g_build_filename to properly get separators on the filename created.
23189
23190         * object.h: Small change, introduce MonoMarshalByRefObject to
23191         track the layout of that structure in the C# universe as we make
23192         changes there.
23193
23194 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
23195
23196         * object.c: removed assert to allow static fields on interfaces.
23197         * loader.c: a TypeSpec may be used for any type, not just arrays.
23198
23199 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
23200
23201         * class.c, class.h: added mono_class_array_element_size ().
23202         Ignore static methods in interfaces.
23203
23204 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23205
23206         * threads.c: fixed the build under cygwin.
23207
23208 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
23209
23210         * reflection.c: handle nullref constants. Allocate keys for
23211         reflection handles with the GC.
23212
23213 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
23214
23215         * threads.c, threads.h: added mono_thread_get_abort_signal()
23216         to get a suitable signal for thread abort.
23217
23218 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
23219
23220         * metadata.c: fix handling of ExportedType table.
23221
23222 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23223
23224         * icall.c: added WriteWindowsDebugString internal call.
23225
23226 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23227
23228         * reflection.h: added fields to match C# implementation.
23229
23230 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23231
23232         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
23233
23234 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
23235
23236         * gc.h, gc-internal.h: Rename header for GC internal calls to
23237         gc-internal.h from gc.h as to not clash with Boehm GC having its
23238         header installed as <gc.h> in outside include paths.
23239         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
23240         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
23241
23242 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23243
23244         * icall.c: assign minor, build and revision in FillName.
23245
23246 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
23247
23248         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
23249         Added support for running code generated by Reflection.Emit.
23250
23251 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23252
23253         * appdomain.c: check for NULL argument in LoadFrom.
23254
23255 2002-12-10  Dick Porter  <dick@ximian.com>
23256
23257         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
23258
23259 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23260
23261         * appdomain.c: fix buglet when building exe file name.  Handle full
23262         assembly name (needed after latest changes to AssemblyName).
23263         * image.c:
23264         (mono_image_close): free some hashtables.
23265
23266 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
23267
23268         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
23269         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
23270         on some systems (redhat 7.3) 
23271
23272 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
23273
23274         * threads.c: delete the critical section of a sync block,
23275         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
23276
23277 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
23278
23279         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
23280
23281 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23282
23283         * appdomain.[ch]: handle the assembly preload event to try loading the
23284         assemblies using the paths we have in the current domain.
23285
23286         * assembly.[ch]: created an assembly preload hook that is called to try
23287         loading the assembly by other means that the ones provided here.
23288
23289         * domain.c: initialize the domain search path.
23290
23291         From now on, assemblies (TODO: except corlib and System) are loaded
23292         according to these rules when using mono_assembly_load ():
23293
23294                 1. It tries to load the assembly from the ApplicationBase
23295                 of the current domain appending .dll and .exe (TODO: have to
23296                 try loading from name/name.dll and name/name.exe).
23297
23298                 2. It tries the search path specified in PrivateBinPath for the
23299                 current domain (if any).
23300
23301                 3. Previous behavior.
23302
23303 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
23304
23305         * icall.c: implemented GetInterfaceMap() related icall.
23306         * domain.c, loader.h: load MethodInfo in mono_defaults.
23307
23308 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
23309
23310         * gc.c: disable the finalizer thread for now, untill all the issues
23311         with it are resolved.
23312
23313 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
23314
23315         * string-icalls.c: handle embedded nulls in string ctor when the
23316         length is specified.
23317
23318 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
23319
23320         * class.c: look for explicit interface implementation in parent
23321         classes, too.
23322
23323 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
23324
23325         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
23326
23327 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
23328
23329         * gc.c: protect handles with a critical section.
23330
23331 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23332
23333         * icall.c:
23334         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
23335         parameters. If no assembly specified, try getting the type from all
23336         the assemblies in the current domain, else, load the assembly and get
23337         the type from it.
23338
23339 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23340
23341         * marshal.c: applied patch from Aleksey Demakov that fixes
23342         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
23343
23344 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23345
23346         * icall.c: fixed get_location.
23347
23348 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
23349
23350         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
23351         declarations to make it work with older gcc. 
23352
23353         * loader.c (mono_get_method): set signature->pinvoke for native calls
23354
23355 2002-11-20  Dick Porter  <dick@ximian.com>
23356
23357         * threads.c (mono_thread_init): Set the main thread's handle
23358
23359 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
23360
23361         * gc.c: allow compilation without GC support. Changed to match the
23362         mono coding style.
23363
23364 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
23365
23366         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
23367
23368 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
23369
23370         * reflection.c: set a public key token on the core assemblies.
23371
23372 2002-11-18  Dick Porter  <dick@ximian.com>
23373
23374         * threads.c: Split out some thread initialisation so that other
23375         files can set the start callback function.
23376
23377         * gc.c: Run finalisers in a separate thread, to avoid stack
23378         overflow.  Fixes bug 31333.
23379
23380         * appdomain.c: Set up GC finalisation thread.
23381
23382         * reflection.c: 
23383         * object.c: 
23384         * domain.c: Use gc.h macros for GC_malloc
23385         
23386 2002-11-15  Dick Porter  <dick@ximian.com>
23387
23388         * threadpool.c: 
23389         * threads.c:
23390         * appdomain.c: Removed mono_runtime_init_with_attach(),
23391         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
23392         merging the extra parameter with the existing function.  Removed
23393         unneeded code in mono_thread_attach().
23394
23395 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
23396
23397         * image.c (mono_image_loaded_by_guid): a method to get loaded
23398         images by guid. 
23399         (load_metadata_ptrs): we store the guid as string.
23400
23401 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
23402
23403         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
23404
23405         * metadata.c (mono_guid_to_string): imported method form Zoltan
23406         Varga (slightly modified)
23407
23408         * assembly.c (mono_assembly_open): load precompiled code
23409
23410         * loader.h (MonoMethod): we store the method token for use in the
23411         aot compiler. 
23412
23413 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23414
23415         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
23416         the hook function called when an assembly is loaded.
23417         
23418         * domain.c: Modified file.
23419         (mono_domain_assembly_load): removed hash table insertion of assemblies.
23420
23421         Fixes bug #33196.
23422
23423 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
23424
23425         * reflection.c: Map PEFileKind to the value expected by the WinNT
23426         image loader. 
23427
23428 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23429
23430         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
23431         Read until the buffer is filled completely.
23432
23433 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23434
23435         * icall.c: implemented MonoType.InternalGetEvent ().
23436
23437 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23438
23439         * appdomain.c: implemented InitAppDomainSetup. Delayed
23440         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
23441         the entry_assembly.
23442
23443         * assembly.c: base_dir is now an absolute path ending with
23444         G_DIR_SEPARATOR.
23445
23446         * icall.c: modified get_location according to the above changes.
23447
23448         * object.c: init AppDomain.SetupInformation for the default domain after
23449         we have the entry assembly.
23450
23451         * domain.c: when unloading a domain, setup = NULL.
23452
23453 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
23454
23455         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
23456
23457 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
23458
23459         * object.h, object.c: introduced mono_object_get_virtual_method ()
23460         to lookup the method invoked on an object when a callvirt is done on
23461         a method.
23462         * icall.c: make MethodInfo::Invoke() always do a virtual call.
23463
23464 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23465
23466         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
23467         current domain when loaded an assembly and failed to load it.
23468
23469         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
23470
23471 2002-10-31  Dick Porter  <dick@ximian.com>
23472
23473         * icall.c: 
23474         * file-io.h: 
23475         * file-io.c: Return the error status in a parameter, as the
23476         GetLastError() value has long since been blown away if we try and
23477         look it up in a subsequent internal call invocation.  Delete the
23478         GetLastError() internal call, because it's useless.
23479
23480 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
23481
23482         * class.[ch]: added cast_class to fix bug 29517
23483
23484 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
23485
23486         * marshal.c: create valid IL code in the filter clause:
23487         the new JIT is less forgiving:-)
23488
23489 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23490
23491         * icall.c: removed get_property internal call.
23492
23493 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
23494
23495         * appdomain.h domain.c: Added an ID to appdomains.
23496         
23497         * threads.c threads.h icall.c: Implement icall
23498         Thread:GetDomainID(), and remove unused icall 
23499         CurrentThreadDomain_internal.
23500
23501 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23502
23503         * icall.c: Don't recurse through the base types in GetConstructor.
23504         Fixes bug #32063. 
23505
23506 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
23507
23508         * mempool.h, mempool.c: added mono_mempool_empty() and
23509         mono_mempool_stats().
23510
23511 2002-10-23  Dick Porter  <dick@ximian.com>
23512
23513         * file-io.c: 
23514         * file-io.h: 
23515         * icall.c: Added MonoIO.GetFileType internal call
23516
23517 2002-10-17  Dick Porter  <dick@ximian.com>
23518
23519         * appdomain.c (mono_runtime_cleanup): Don't signal the async
23520         delegate semaphore before waiting for all threads to finish,
23521         because new threads can also call async delegates.  Fixes bug
23522         32004.
23523
23524         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
23525         of 3 seconds, in case another async job is queued.  (This part is
23526         needed because the bug fix reintroduced the 3s exit lag.)  This
23527         makes the mono_runtime_shutdown flag superfluous.
23528
23529 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
23530
23531         * reflection.c: include ehader size in method section headers.
23532         Really check for suplicated modules entries.
23533
23534 2002-10-17  Martin Baulig  <martin@gnome.org>
23535
23536         * debug-mono-symfile.c: Added back support for locals.
23537
23538 2002-10-14  Martin Baulig  <martin@gnome.org>
23539
23540         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
23541         MONO_TYPE_VOID.
23542
23543 2002-10-14  Martin Baulig  <martin@gnome.org>
23544
23545         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
23546         mono_class_get() instead of looking in the class cache. 
23547
23548 2002-10-13  Martin Baulig  <martin@gnome.org>
23549
23550         * debug-mono-symfile.c: Set version number to 28, include the
23551         signature in method names.
23552
23553 2002-10-13  Martin Baulig  <martin@gnome.org>
23554
23555         * debug-mono-symfile.h: Set version number to 27.
23556
23557 2002-10-11  Martin Baulig  <martin@gnome.org>
23558
23559         * gc.c: Don't register/unregister NULL pointers as disappearing links.
23560
23561 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
23562
23563         * metadata.c, metadata.h: added helper function to allocate signatures.
23564
23565 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23566
23567         * icall.c: added internal call to get the location of machine.config.
23568
23569 2002-10-08  Martin Baulig  <martin@gnome.org>
23570
23571         * debug-mono-symfile.c: Ignore classes with a pending init for the
23572         moment.
23573
23574 2002-10-03  Dick Porter  <dick@ximian.com>
23575
23576         * threads.c: Freebsd pthread_t is a pointer
23577
23578 2002-10-03  Dick Porter  <dick@ximian.com>
23579
23580         * socket-io.c: Implemented GetHostName_internal
23581
23582 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23583
23584         * mono-config.c:
23585         (mono_config_parse_file): don't leak the text.
23586
23587 2002-10-02  Martin Baulig  <martin@gnome.org>
23588
23589         * debug-mono-symfile.c: Added support for methods.
23590
23591 2002-10-01  Martin Baulig  <martin@gnome.org>
23592
23593         * debug-mono-symfile.c: Don't emit methods and line numbers for
23594         the dynamic symbol file, just write the type table.  We can easily
23595         have an external helper program which creates a symbol file for an
23596         IL file.        
23597
23598 2002-10-01  Dick Porter  <dick@ximian.com>
23599
23600         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
23601         Only add the handle to the cleanup array when we're about to
23602         launch the thread.  Bug 31425 deadlocked when the test was run on
23603         mono under w32.
23604
23605 2002-10-01  Martin Baulig  <martin@gnome.org>
23606
23607         * debug-mono-symfile.c: Added support for properties.
23608
23609 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
23610
23611         * reflection.c: unaligned store fix from Mark Crichton
23612         <crichton@gimp.org>.
23613
23614 2002-09-27  Martin Baulig  <martin@gnome.org>
23615
23616         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
23617         New interncall.
23618
23619 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
23620
23621         * assembly.h, assembly.c: use a sane API to hook into the assembly
23622         loading process instead of a useless special-purpouse hack
23623         (ngen needs a hook, too, for example).
23624
23625 2002-09-27  Dick Porter  <dick@ximian.com>
23626
23627         * threads.c (mono_thread_init): Call GetCurrentProcess() so
23628         io-layer can set up some process handle info.  Not needed on w32,
23629         but doesn't hurt either.
23630
23631         * process.c: Pass the program name in the second parameter to
23632         CreateProcess, so the path is searched.  Include the working
23633         directory. Implemented process name, process enumeration, and some
23634         process detail internal calls.
23635         
23636         * icall.c: Added internal calls for process lookup, and some
23637         process details
23638
23639 2002-09-26  Martin Baulig  <martin@gnome.org>
23640
23641         * assembly.c (mono_install_open_assembly_hook): New global
23642         function to install a function to be invoked each time a new
23643         assembly is loaded.
23644         (mono_assembly_open): Run this callback function if set.
23645
23646         * debug-mono-symfile.c: Put back line numbers for the dynamic
23647         symbol file and also record the .il file as source file.  This
23648         allows us to install the temporary symbol file as `file.dbg' just
23649         like a compiler-generated one.
23650
23651 2002-09-26  Nick Zigarovich <nick@chemlab.org>
23652
23653         * Corrected typo in gc.c (BOHEM vs BOEHM).
23654
23655 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23656
23657         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
23658         GetProperties. Also avoid calling g_slist_length in GetProperties and
23659         GetMethods.
23660
23661 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
23662
23663         * reflection.c: avoid unaligned stores (bug spotted by
23664         Mark Crichton  <crichton@gimp.org>).
23665
23666 2002-09-25  Martin Baulig  <martin@gnome.org>
23667
23668         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
23669         instead of guint64 for addresses and added prologue/epilogue info.
23670
23671 2002-09-25  Martin Baulig  <martin@gnome.org>
23672
23673         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
23674         store line number info.  For the dynamic symbol file, we only need
23675         to provide the JIT generated dynamic line number info for the dynamic
23676         symbol file.
23677
23678 2002-09-25  Martin Baulig  <martin@gnome.org>
23679
23680         * debug-mono-symfile.h: Incremented version number.
23681
23682 2002-09-24  Martin Baulig  <martin@gnome.org>
23683
23684         * class.c (mono_debugger_class_init_func): New global function
23685         pointer variable.
23686         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
23687         call it.
23688
23689         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
23690         function.  This is called via the mono_debugger_class_init_func
23691         hook to add all types to the dynamic type table.
23692         (ves_icall_MonoDebugger_GetType): New interncall to get a class
23693         from its metadata token.
23694
23695         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
23696         New interncall for the debugger.
23697
23698 2002-09-24  Nick Drochak <ndrochak@gol.com>
23699
23700         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
23701         before using it in case it is null.
23702         
23703 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
23704
23705         * metadata.c: allow custom modifiers in local var signatures
23706         (bug spotted by Zoltan Varga).
23707
23708 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
23709
23710         * class.c: deal with the <Module> class that may have a NULL vtable.
23711         Eliminate warnings.
23712
23713 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
23714
23715         * image.c, image.h: more strong name helpers.
23716         * monosn.c: more work: convert pem keys to cryptoapi format.
23717
23718 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
23719
23720         * string-icalls.c: speedup IndexOf.
23721
23722 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
23723
23724         * icall.c: updates from Zoltan.2.Varga@nokia.com.
23725
23726 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
23727
23728         * icall.c: cleanup: use mono_object_domain ().
23729
23730 2002-09-23  Martin Baulig  <martin@gnome.org>
23731
23732         * debug-mono-symfile.c: Improved type support.
23733
23734 2002-09-22  Martin Baulig  <martin@gnome.org>
23735
23736         * debug-mono-symfile.c: Added support for reference types and strings.
23737
23738 2002-09-22  Martin Baulig  <martin@gnome.org>
23739
23740         * debug-mono-symfile.c: Started to work on the type table.
23741
23742 2002-09-21  Martin Baulig  <martin@gnome.org>
23743
23744         * debug-mono-symfile.c: Largely reworked the symbol table format.
23745         The symbol table is now incrementally updated each time a new
23746         method is added.  We're now also using our own magic and version
23747         so that you don't need to recompile all your classes if the
23748         dynamic table changes.
23749         (mono_debug_update_mono_symbol_file): Removed.
23750         (mono_debug_symfile_add_method): New function to add a method.
23751
23752 2002-09-21  Martin Baulig  <martin@gnome.org>
23753
23754         * icall.c
23755         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
23756         New interncall.
23757
23758         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
23759         New interncall to get a method from its metadata token.
23760
23761 2002-09-21  Martin Baulig  <martin@gnome.org>
23762
23763         * debug-mono-symfile.c: Create type table.
23764
23765 2002-09-20  Martin Baulig  <martin@gnome.org>
23766
23767         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
23768
23769 2002-09-20  Martin Baulig  <martin@gnome.org>
23770
23771         * debug-mono-symfile.c: Provide information about params and locals.
23772
23773 2002-09-20  Martin Baulig  <martin@gnome.org>
23774
23775         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
23776         New interncall.
23777
23778         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
23779         interncall to get a method from its metadata token.
23780
23781 2002-09-20  Martin Baulig  <martin@gnome.org>
23782
23783         * debug-mono-symfile.c: Added a few checks for method->header
23784         being non-NULL.  This should never happen, but for the moment
23785         let's use a g_warning() rather than a g_assert().
23786
23787 2002-09-19  Mark Crichton  <crichton@gimp.org>
23788
23789         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
23790         even if support for it isn't present.  Added an #ifdef to fix this.
23791
23792         * socket-io.c: Added checks back for Solaris support.
23793
23794 2002-09-19  Martin Baulig  <martin@gnome.org>
23795
23796         * debug-mono-symfile.c (read_string, write_string): Reflect latest
23797         changes in the symbol file format.
23798
23799 2002-09-18  Martin Baulig  <martin@gnome.org>
23800
23801         * debug-mono-symfile.c: Set version number to 21.
23802
23803 2002-09-18  Dick Porter  <dick@ximian.com>
23804
23805         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
23806         on netbsd.  Fixes bug 30051.
23807
23808 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23809
23810         * reflection.c:
23811         (set_version_from_string): little fix.
23812
23813 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
23814
23815         * monosn.c, Makefile.am: added strong name utility.
23816         * reflection.h, reflection.c: implemented delayed signing,
23817         locale, version and hash id assembly attributes.
23818
23819 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
23820
23821         * loader.c, metadata.c: load param attributes in signatures.
23822
23823 2002-09-16  Martin Baulig  <martin@gnome.org>
23824
23825         * debug-mono-symfile.c: Added string table with all method names.
23826
23827 2002-09-14  Martin Baulig  <martin@gnome.org>
23828
23829         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
23830         fast method lookup.
23831
23832 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
23833
23834         * reflection.c: record the public key token of referenced assemblies.
23835
23836 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
23837
23838         * image.c, image.h: added functions to get the strong name and the
23839         public key of an assembly.
23840         * pedump.c: use them.
23841
23842 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
23843
23844         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
23845
23846 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
23847
23848         * marshal.c (mono_marshal_get_managed_wrapper): Added
23849         MONO_TYPE_BOOLEAN 
23850
23851 2002-09-11  Martin Baulig  <martin@gnome.org>
23852
23853         * gc.c: Call GC_unregister_disappearing_link() on all links when
23854         finalizing them, this is necessary to aviod a crash in boehm's
23855         finalize handler.
23856
23857 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
23858
23859         * gc.c: handle GetTarget for finalized objects spotted and fixed by
23860         nick@chemlab.org.
23861
23862 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
23863
23864         * icall.c: implemented MonoType::Module.
23865         * reflection.c, reflection.h: mono_module_get_object () from
23866         Tomi Pakarinen <tomi.pakarinen@welho.com>.
23867
23868 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
23869
23870         * icall.c: ignore overridden methods in GetMethods ().
23871         Fix for FieldInfo::SetValue().
23872         * object.c: handle float/double in runtime invoke.
23873
23874 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
23875
23876         * object.c: allow a constructor to be called again on an object.
23877
23878 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
23879
23880         * class.h, class.c: move field layout code to it's own function and
23881         export it. Get an interface id earlier. Move fields in MonoClass
23882         so they are more cache friendly and align the bitfields.
23883         * loader.c: temporary handle get_param_names() for a runtime method.
23884         * reflection.c, reflection.h: more code to handle runtime creation of
23885         types.
23886
23887 2002-09-09  Martin Baulig  <martin@gnome.org>
23888
23889         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
23890         signature with the pinvoke field being set for the actual call.
23891
23892 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
23893
23894         * icall.c: removed some unused icalls. Start of map of glib charsets
23895         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
23896
23897 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
23898
23899         * debug-helpers.c: break infinite loop (found and fixed by
23900         Holger Arnold <harnold@gmx.de>).
23901
23902 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
23903
23904         * icall.c: target may be null in create_delegate.
23905
23906 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
23907
23908         * marshal.c: handle a boolean return type.
23909
23910 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
23911
23912         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
23913
23914 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
23915
23916         * gc.c: fix weakreferences.
23917
23918 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
23919
23920         * icall.c: added icall to get default codepage.
23921
23922 2002-09-03  Dick Porter  <dick@ximian.com>
23923
23924         * threads.h: 
23925         * threads.c: Use MonoThread instead of MonoObject where
23926         apropriate.
23927
23928         Store running thread objects in a hash table, so that we have all
23929         the info to hand when waiting for them to finish
23930         (means we don't need OpenThread() any more, so mingw builds should
23931         be fully functional again.)
23932
23933         * verify.c:
23934         * object.h: Added thread ID to MonoThread
23935
23936 2002-09-03  Martin Baulig  <martin@gnome.org>
23937
23938         * icall.c (System.Reflection.Assembly::get_location): New interncall.
23939
23940 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23941
23942         * icall.c: fixed leak in get_temp_path. Thanks lupus.
23943
23944 2002-09-03  Martin Baulig  <martin@gnome.org>
23945
23946         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
23947         argument to store the end address of the disassembled instruction.
23948
23949         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
23950         here from debug-symfile.h.
23951         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
23952         JIT into this struct.
23953         (MonoSymbolFile): Added `char *image_file' field.
23954         (MonoDebugGetMethodFunc): Removed.
23955         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
23956         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
23957         (mono_debug_find_method): New method.
23958
23959         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
23960         create a full symbol file.
23961         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
23962         and static symbol files.
23963         (mono_debug_find_method): The symbol file keeps an internal method hash,
23964         call this to get a MonoDebugMethodInfo from a MonoMethod.
23965
23966         * debug-symfile.[ch]: Removed.
23967
23968 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
23969
23970         * image.c (do_mono_image_open): Remove linker version check.
23971
23972 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
23973
23974         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
23975         wrappers for instance methods.
23976         
23977 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23978
23979         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
23980
23981 2002-08-28  Dick Porter  <dick@ximian.com>
23982
23983         * Makefile.am: Export HOST_CC for w32 builds
23984
23985 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
23986
23987         * file-io.c process.c: MonoString are null terminated, no
23988         need for mono_string_to_utf16() anymore.
23989
23990 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
23991
23992         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
23993
23994 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
23995
23996         * icall.c, reflection.h: speedup System.MonoType.
23997
23998 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
23999
24000         * reflection.c: allow null as the value of a string argument in
24001         custom attributes constructors.
24002
24003 2002-08-27  Martin Baulig  <martin@gnome.org>
24004
24005         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
24006         `trampoline_address' field.
24007
24008 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
24009
24010         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
24011         check (fixes bug #29486) 
24012
24013 2002-08-27  Martin Baulig  <martin@gnome.org>
24014
24015         * debug-mono-symfile.c: Changed the file format in a way that allows us
24016         open it read-only and to use a specially malloced area for all the
24017         dynamic data.  We can now also generate a symbol file on-the-fly if we're
24018         debugging IL code and there is no MCS generated symbol file for it.
24019
24020 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
24021
24022         * object.c: added a define for a good string and array
24023         creation speedup (not enabled by default because we need to deal with
24024         the synch stuff).
24025
24026 2002-08-26  Martin Baulig  <martin@gnome.org>
24027
24028         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
24029         function to create a dynamic symbol file.  This is used by the
24030         debugger to create a symbol file for IL code on-the-fly.
24031
24032 2002-08-26  Martin Baulig  <martin@gnome.org>
24033
24034         * loader.c (mono_lookup_pinvoke_call): Include the error message
24035         from g_module_error() in the error message.
24036
24037 2002-08-24  Martin Baulig  <martin@gnome.org>
24038
24039         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
24040         function to update the symbol file.  The symbol file is mmap()ed
24041         writable, but private.  This allows us to install the symbol file
24042         together with the assembly.
24043
24044 2002-08-24  Martin Baulig  <martin@gnome.org>
24045
24046         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
24047         but they can read the new symbol file format which mcs is now creating.
24048
24049         * debug-symfile.c (mono_debug_find_source_location): Moved to
24050         debug-mono-symfile.c; this is now operating on the new symbol file.
24051
24052 2002-08-23  Martin Baulig  <martin@gnome.org>
24053
24054         * debug-helpers.c (mono_method_desc_from_method): New function to get
24055         a MonoMethodDesc from a MonoMethod.
24056
24057 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
24058
24059         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
24060         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
24061
24062 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
24063
24064         * string-icalls.[ch]: make helper methods static.
24065
24066 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24067
24068         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
24069         types to it and to SetValueInternal.
24070
24071         * object.c: Moved handle_enum label to its proper place. This was the
24072         f... bug! ;-)
24073
24074         This time i compiled mcs and gtk-sharp and they both work.
24075
24076 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24077
24078         * icall.c: reverted partially my previous patch until 
24079         object.c:set_value handles enums correcly.
24080
24081 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24082
24083         * icall.c:
24084         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
24085         (ves_icall_System_Environment_get_MachineName): removed warning when
24086         compiling under cygwin.
24087
24088 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
24089
24090         * object.c: fixed field_get_value() for reference types.
24091
24092 2002-08-22  Dick Porter  <dick@ximian.com>
24093
24094         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
24095         Don't free a buffer while it's still needed.  Patch from Jonathan
24096         Liger <Jonathan.liger@wanadoo.fr>
24097
24098 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
24099
24100         * icall.c (ves_icall_System_Environment_get_Platform): Add new
24101         internal call.
24102
24103 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
24104
24105         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
24106         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
24107
24108         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
24109         we call unmanaged code which throws exceptions.
24110
24111 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
24112
24113         * appdomain.h: added per-domain entry_assembly.
24114         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
24115         arguments.
24116         * icall.c: Assembly::GetEntryAssembly icall.
24117         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
24118         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
24119
24120 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
24121
24122         * appdomain.h, gc.c: added mono_domain_finalize ().
24123
24124 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24125
24126         * object.c:
24127         (mono_print_unhandled_exception): changed g_warning by g_printerr
24128         because g_log has a 1024 characters limit (yeah, i got a big stack
24129         trace). Don't print exception name, that should be in ToString 
24130         returned string.
24131
24132 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24133
24134         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
24135         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
24136
24137 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24138
24139         * object.c:
24140         (mono_print_unhandled_exception): after previous commit, i realized
24141         that MS calls ToString on the exception. I changed this function to
24142         do that. This way we get stack_trace for free.
24143
24144 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24145
24146         * object.c:
24147         (mono_print_unhandled_exception): invoke Message property instead of
24148         getting 'message' field from Exception. Don't allocate memory for
24149         'trace' and 'message' if not needed.
24150
24151 2002-08-18  Dick Porter  <dick@ximian.com>
24152
24153         * unicode.c: Fix asserts to match Encoder.cs checks
24154
24155 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
24156
24157         * marshal.c: fix unaligned store issue and a few wrong
24158         opcode argument types.
24159
24160 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24161
24162         * icall.c: added GetUninitializedObjectInternal internal call.
24163
24164 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
24165
24166         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
24167         to the right domain.
24168
24169 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
24170
24171         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
24172
24173         * class.c (class_compute_field_layout): set blittable to false for Strings
24174
24175         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
24176
24177 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
24178
24179         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
24180         first chunk of code to create types at runtime. Code to
24181         handle ReflectedType/DeclaringType. Make reflection handles
24182         domain specific.
24183
24184 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
24185
24186         * class.c: set correct name in arrays.
24187
24188 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
24189
24190         * appdomain.c (mono_domain_transfer_object): make it work with
24191         valuetypes. bug fixes.
24192
24193 2002-08-12  Dick Porter  <dick@ximian.com>
24194
24195         * object.h: Rename some parameters to avoid c++ keywords (Patch
24196         from Joseph Wenninger <kde@jowenn.at>)
24197
24198 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
24199
24200         * icall.c: added icall to implement Assembly.GetFile*.
24201
24202 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
24203
24204         * reflection.h, reflection.c: code to embed managed resources.
24205
24206 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
24207
24208         * class.c: move all the type size stuff into
24209         class_compute_field_layout().
24210
24211 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
24212
24213         * class.c: ensure enums have always the correct instance size.
24214         * unicode.c: remove wrong assert.
24215
24216 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
24217
24218         * assembly.c: fix mem corruption issue.
24219         * image.h, image.c: added mono_image_get_resource () to access
24220         managed resources.
24221         * icall.c: implemented Assembly.EntryPoint property and some
24222         Managed Resources related internalcalls.
24223
24224
24225 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
24226
24227         * image.c, image.h: impemented mono_image_get_entry_point ().
24228         * appdomain.c: use mono_image_get_entry_point.
24229
24230 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
24231
24232         * reflection.c: support the object type argument when loading
24233         custom attributes.
24234
24235 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
24236
24237         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
24238         String as return type.
24239
24240 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
24241
24242         * reflection.c: fix encoding of named args for custom attrs to match
24243         the ms implementation. Read them back when instantiating custom
24244         attributes.
24245
24246 2002-08-02  Radek Doulik  <rodo@ximian.com>
24247
24248         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
24249         by Dietmar as quick fix
24250         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
24251         16 as stack size, used on more places as quick fix before Dietmar
24252         will fix it properly
24253
24254 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
24255
24256         * object.h, object.c: added accessors for fields and properties.
24257
24258 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
24259
24260         * class.c, class.h: made mono_class_get_field_from_name ()
24261         loop on parent types.
24262         Added mono_class_get_property_from_name ().
24263
24264 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
24265
24266         * class.c, class.h: move the code to setup the type vtable in its own
24267         function so that it can be reused also for types created at runtime.
24268         Eliminate the "class" identifier from the header file.
24269         * reflection.c: setup the vtable for enums so that we can create
24270         objects for use in SetConstant ().
24271
24272 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
24273
24274         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
24275         instead of the delegate itself as this pointer (bug #28383)
24276
24277 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
24278
24279         * marshal.c (mono_marshal_get_managed_wrapper): added return type
24280         conversions.
24281
24282 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
24283
24284         * loader.c: don't set the pinvoke bit on icalls.
24285
24286 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
24287
24288         * debug-helpers.c (mono_method_full_name): only print a number to
24289         indicate wrapper type (so that the output is more readable in traces).
24290
24291 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
24292
24293         * class.c (mono_class_init): include method override patch from Paolo
24294
24295 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
24296
24297         * icall.c: fixed GetTypeCode().
24298
24299 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
24300
24301         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
24302         use real delegate invoke function to make it work with multicast
24303         delegates (fix bug# 28291).
24304
24305 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
24306
24307         * object.c: load constant strings.
24308
24309 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
24310
24311         * reflection.c: no magic numbers.
24312         * tabledefs.h: security action enum.
24313
24314 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
24315
24316         * assembly.c: fix possible memory corruption.
24317
24318 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
24319
24320         * reflection.h, reflection.c: added support for linking resources.
24321         * verify.c: check we have an updated corlib.
24322
24323 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
24324
24325         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
24326         string arrays.
24327         (mono_marshal_string_array): null terminate unmanaged string arrays.
24328         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
24329
24330 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
24331
24332         * icall.c: Type.GetType () can now return also types from the
24333         calling assembly.
24334
24335 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
24336
24337         * loader.h, loader.c: stack walking support.
24338         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
24339         GetCallingAssembly.
24340
24341 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
24342
24343         * marshal.c: added optimisations for blittable types 
24344
24345         * class.c (mono_array_class_get): do not set blittable attribute on arrays
24346         (mono_class_setup_mono_type): set blittable attribute for single
24347         and double.
24348
24349         * marshal.c (mono_string_utf8_to_builder): impl.
24350         (mono_string_builder_to_utf8): impl.
24351         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
24352
24353 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
24354
24355         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
24356         (mono_marshal_get_managed_wrapper): impl. byref types
24357
24358 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24359
24360         * icall.c:
24361         (search_method): don't display debug message. 
24362
24363 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
24364
24365         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
24366
24367 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
24368
24369         * appdomain.c: set the missing filename when throwing exception.
24370
24371 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
24372
24373         * metadata.c (mono_type_size): code cleanup
24374         (mono_type_stack_size): removed some test code
24375
24376 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
24377
24378         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
24379         mono_get_exception_file_not_found now.
24380
24381         * exception.c (mono_exception_from_name_two_strings): New version
24382         that will call a constructor with two string arguments. 
24383         (mono_get_exception_file_not_found): New helper routine, used to
24384         report file-not-found errors.
24385
24386 2002-07-20  Dick Porter  <dick@ximian.com>
24387
24388         * process.h:
24389         * process.c: Pass file handles to CreateProcess
24390         
24391         * icall.c:
24392         * file-io.h:
24393         * file-io.c: Implemented CreatePipe
24394
24395 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
24396
24397         * metadata.c (mono_get_param_info): set alignment for value types
24398
24399 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
24400
24401         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
24402         Constify mono_domain_assembly_open().
24403         * loader.c: handle null namespace in icalls.
24404
24405 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
24406
24407         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
24408         (emit_str_to_ptr_conv): marshal object as structs
24409
24410         * metadata.c (mono_type_to_unmanaged): marshal object as structs
24411
24412         * marshal.c (mono_marshal_get_runtime_invoke): support value types
24413
24414 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
24415
24416         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
24417         (mono_marshal_get_native_wrapper): we an now return value types
24418
24419 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
24420
24421         * verify.c: more checks implemented.
24422
24423 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
24424
24425         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
24426         (fix bug #27695)
24427         (mono_marshal_get_native_wrapper): allow byref arguments
24428         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
24429         impl. PtrToStringXXX methods
24430         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
24431         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
24432         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
24433         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
24434         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
24435
24436 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
24437
24438         * reflection.c: fix buglet in parsing an assembly name.
24439
24440 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
24441
24442         * marshal.c (emit_ptr_to_str_conv): first impl.
24443
24444 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
24445
24446         * object.c, class.h: cache the vtable in the class as suggested by
24447         vargaz@freemail.hu (Zoltan Varga).
24448
24449 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
24450
24451         * class.h, loader.c: added mono_field_from_token().
24452         * verify.c: first cut of type checking code.
24453
24454 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
24455
24456         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
24457
24458 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
24459
24460         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
24461         (fix bug #27782)
24462         (mono_marshal_get_remoting_invoke): impl.
24463         (mono_delegate_begin_invoke): impl.
24464         (mono_mb_emit_save_args): impl.
24465         (mono_delegate_end_invoke): impl.
24466         (mono_marshal_get_delegate_begin_invoke):
24467         (mono_marshal_get_delegate_end_invoke):
24468         (mono_marshal_get_delegate_invoke): generate a special name for
24469         those methods (including the signature) and associate them whith
24470         the delegate class. 
24471
24472 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
24473
24474         * reflection.[ch]: 
24475         (mono_reflection_type_from_name): now it has a MonoImage parameter
24476         which is used as the default image to search the type in. If the image
24477         is NULL or getting the type from it fails, it defaults to corlib.
24478
24479         * icall.c: changed 1 call to mono_reflection_type_from_name to match
24480         new parameter.
24481
24482 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
24483
24484         * reflection.c: update the parameter table index.
24485
24486 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
24487
24488         * domain.c: don't include the mark byte in the string hash.
24489
24490 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
24491
24492         * icall.cs: icall for Type.GetTypeCode ().
24493         * verify: a couple of fixes and disabled local initialization checks.
24494
24495 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
24496
24497         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
24498
24499         * debug-helpers.c (mono_method_full_name): print the type of the
24500         runtime wrapper
24501
24502         * metadata.c (mono_signature_hash): a hash function for signatures
24503         (mono_signature_hash): better hash algorithm
24504
24505         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
24506
24507         * debug-helpers.c (mono_method_full_name): this can now generate
24508         method names with signatures
24509
24510         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
24511         method dont have this pointers.
24512
24513 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
24514
24515         * reflection.c: fixup typebuilder tokens.
24516         * image.c: fix buglet.
24517         * marshal.h: remove whitespace.
24518         * metadata.h, metadata.c: reinstate code that was removed.
24519         * verify.c: handle catch directives and fix another couple of bugs.
24520
24521 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
24522
24523         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
24524         (mono_marshal_get_native_wrapper): make it comp. with the old code
24525         (mono_marshal_get_native_wrapper): support boolean
24526         (mono_marshal_get_managed_wrapper): support more types
24527
24528 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
24529
24530         * class.c (class_compute_field_layout): compute class->blittable attribute.
24531
24532 2002-07-09  Dick Porter  <dick@ximian.com>
24533
24534         * threads.c: Make the thread cleaning up cope with threads that
24535         call ExitThread()
24536
24537 2002-07-08  Radek Doulik  <rodo@ximian.com>
24538
24539         * reflection.c (method_encode_code): use non-translated values to
24540         compute finally_start, this fixes exception handling on ppc, yay!
24541
24542         * decimal.h (struct signscale): fix endianess
24543
24544 2002-07-07  Radek Doulik  <rodo@ximian.com>
24545
24546         * reflection.c: swap box_val and not val
24547
24548 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
24549
24550         * reflection.c, reflection.h: handle full assembly info in type name.
24551         Handle Type arguments when loading custom attributes.
24552         * icall.c: updated to use new mono_reflection_type_from_name () method.
24553
24554 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24555
24556         * loader.c:
24557         (method_from_memberref): also print assembly name when method not found.
24558
24559 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24560
24561         * icall.c:
24562         (ves_icall_TypeGetProperties): fixed bug #27473. 
24563
24564 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24565
24566         * reflection.c: display image name and token when cannot find the
24567         .ctor for an attribute.
24568
24569 2002-07-05  Martin Baulig  <martin@gnome.org>
24570
24571         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
24572
24573 2002-07-04  Dick Porter  <dick@ximian.com>
24574
24575         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
24576         compile on mingw.  This will cause mingw builds to not wait for
24577         subthreads to terminate after the main thread does.  I've lodged a
24578         bug with the mingw developers for them to wrap OpenThread().
24579
24580 2002-07-03  Dick Porter  <dick@ximian.com>
24581
24582         * threads.c: Store thread IDs instead of handles, because
24583         GetCurrentThread() returns a pseudohandle and therefore stores
24584         useless values.  mono_thread_cleanup() continues checking the
24585         array of threads until it is empty, to cope with subthreads
24586         spawning new threads after the main thread has finished.
24587
24588         * profiler.h:
24589         * profiler.c:
24590         * profiler-private.h: Pass the thread ID to thread profiler
24591         functions, instead of a handle
24592
24593 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
24594
24595         * verify.c: fixes to make it more usable.
24596         * pedump.c: added --verify code to verify IL code in an assembly.
24597
24598 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
24599
24600         * reflection.c: turn errors into warnings to allow compiling corlib.
24601
24602 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
24603
24604         * reflection.c: add special cases to compile corlib.
24605
24606 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
24607
24608         * reflection.c: handle properties with only a set method.
24609
24610 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
24611
24612         * opcodes.h: add enum with opcodes in opval order.
24613
24614 2002-07-01  Dick Porter  <dick@ximian.com>
24615         
24616         * object.h:
24617         * object.c (mono_runtime_run_main): Removed unneeded argument
24618
24619 2002-06-28  Martin Baulig  <martin@gnome.org>
24620
24621         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
24622
24623 2002-06-27  Dick Porter  <dick@ximian.com>
24624
24625         * threads.c: Store the handle in both the parent thread and in the
24626         subthread, to minimise the time between starting a new thread and
24627         storing its ID.
24628
24629 2002-06-26  Dick Porter  <dick@ximian.com>
24630
24631         * appdomain.c (mono_runtime_cleanup): Close the socket library
24632         after all the threads have finished, not before
24633
24634 2002-06-26  Martin Baulig  <martin@gnome.org>
24635
24636         * debug-symfile.c (mono_debug_find_source_location): Added
24637         `guint32 *line_number' argument.  If it's not NULL, store the line number
24638         there and return the file name without the line number.
24639
24640 2002-06-25  Dick Porter  <dick@ximian.com>
24641
24642         * icall.c:
24643         * process.h:
24644         * process.c: Process forking and other support functions
24645
24646 2002-06-25  Dick Porter  <dick@ximian.com>
24647
24648         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
24649         things dont happen when the image is closed.
24650         (mono_image_lookup_resource): Walk the resource section looking
24651         for a particular entry
24652
24653         * cil-coff.h: PE resource section decoding
24654
24655 2002-06-25  Dick Porter  <dick@ximian.com>
24656         
24657         * assembly.h:
24658         * assembly.c: 
24659         (mono_assembly_foreach): Accessor functions to walk the list of
24660         loaded assemblies
24661         (mono_assembly_set_main):
24662         (mono_assembly_get_main): Process methods need to know which
24663         assembly is the "main" one
24664
24665         * object.c (mono_runtime_run_main): Record the main assembly
24666
24667         * debug-helpers.c: Fix typo
24668
24669 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
24670
24671         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
24672         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
24673
24674 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
24675
24676         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
24677
24678 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
24679
24680         * image.c (do_mono_image_open): Initialize reference count,
24681         otherwise we leak the MonoImage.
24682
24683 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
24684
24685         * reflection.c: small tweak to handle self-hosting.
24686
24687 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
24688
24689         * reflection.c: fix type name parse code.
24690
24691 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
24692
24693         * reflection.c: break out of the loop.
24694         * image.c: special case corlib.
24695
24696 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
24697
24698         * reflection.c: add all the custom attrs at the end to ensure the
24699         ctors have been properly initialized when the attributes are defined
24700         in the current assembly.
24701
24702 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
24703
24704         * reflection.c: handle correctly multiple-nested types.
24705
24706 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
24707
24708         * row-indexes.h: fix typos.
24709         * reflection.c: adjust for typos and fix method_def_or_ref
24710         encoding in MethodImpl table.
24711
24712 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
24713
24714         * reflection.c: fix entry point patching (thanks Serge!).
24715
24716 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
24717
24718         * verify.c: add check for System.Exception
24719
24720 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
24721
24722         * image.c, class.c: minifix for code just c&p'ed.
24723         * reflection.c: warning fix.
24724         * object.h, loader.h, domain.c: load also StringBuilder.
24725
24726 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
24727
24728         * marshal.h, marshal.c: some support code to handle complex marshaling.
24729
24730 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
24731
24732         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
24733         Better signatures with vtable error dump.
24734
24735 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
24736
24737         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
24738
24739 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
24740
24741         * icall.c (ves_icall_Type_GetField): impl.
24742
24743 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
24744
24745         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
24746         to retrieve a marshal description blob for a field or param.
24747
24748 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
24749
24750         * reflection.h, reflection.c: change order of nested type emission
24751         to avoid table corruption. The NestedTypes table is sorted.
24752         * icall.c: change order of GetConstructor results to workaround mcs bug.
24753
24754 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
24755
24756         * reflection.h, reflection.c: handle field and param marshal
24757         information.
24758
24759 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
24760
24761         * icall.c, marshal.c marshal.h: more Marshal class implementation.
24762
24763 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
24764
24765         * reflection.c: fix call convention.
24766
24767 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
24768
24769         * reflection.h, reflection.c: mono_image_get_memberref_token()
24770         takes a type instead of a class, now. Added
24771         mono_image_get_array_token() to create tokens for the special
24772         multi-dim array methods.
24773
24774 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
24775
24776         * assembly.c: handle modules (no assembly table). Split
24777         loading references in its own function.
24778         * class.c: handle moduleref resolution scope.
24779         * image.c, image.h: cache module name in image.
24780
24781 2002-06-07  Martin Baulig  <martin@gnome.org>
24782
24783         * reflection.c (mono_image_get_type_info): Only add a class layout entry
24784         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
24785
24786 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
24787
24788         * icall.c: more signature fixes that used uint instead of int.
24789
24790 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
24791
24792         * reflection.c: fixed signature of field refs.
24793
24794 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
24795
24796         * class.c, reflection.c: handle typerefs of nested types
24797         (both on read and when writing files).
24798
24799 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
24800
24801         * icall.c: fix method signatures that tried to workaround the previous
24802         typo, d'oh!
24803
24804 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
24805
24806         * debug-helpers.c: fix typo.
24807
24808 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
24809
24810         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
24811         rewrote the PE/COFF writing code (our programs are understood by the
24812         ms runtime, now).
24813
24814 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
24815
24816         * gc.c, gc.h, icall.c: weakreference support.
24817
24818 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
24819
24820         * Makefile.am, mono-config.c: use $(sysconfdir).
24821
24822 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
24823
24824         * icall.c: changed default precision of Double.ToString() to 15.
24825         Fixed memory leak. Unified with Single.ToString.
24826
24827 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
24828
24829         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
24830
24831 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
24832
24833         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
24834         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
24835         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
24836         and myself.
24837
24838 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
24839
24840         * debug-symfile.c, sysmath.c: yet more compilation fixes.
24841
24842 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
24843
24844         * reflection.c, socket-io.c: more compilation fixes.
24845
24846 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
24847
24848         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
24849         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
24850         unicode.c: warning and compiler compatibility fixes.
24851
24852 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
24853
24854         * class.h, metadata.c: fixed warnings/compilation errors.
24855
24856 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
24857
24858         * Makefile.am, mono-config.c, mono-config.h: configuration file
24859         support routines.
24860         * loader.c, loader.h: make Dll mapping configurable at runtime in the
24861         config file. Export methods to insert and lookup mappings.
24862
24863 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
24864
24865         * reflection.c: handle types and boxed objects in custom attr
24866         constructors.
24867
24868 2002-05-30  Martin Baulig  <martin@gnome.org>
24869
24870         * debug-symfile.c
24871         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
24872
24873 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
24874
24875         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
24876         to lookup the implmap row for a P/Invoke method.
24877         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
24878         P/Invoke method from the runtime on an as needed basis.
24879
24880 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
24881
24882         * metadata.c (mono_metadata_parse_signature): impl.
24883
24884 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
24885
24886         * class.c: handle .pack directive.
24887
24888 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
24889
24890         * object.c: initialize static fields with RVA data.
24891
24892 2002-05-25  Martin Baulig  <martin@gnome.org>
24893
24894         * debug-symfile.c
24895         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
24896
24897 2002-05-24  Martin Baulig  <martin@gnome.org>
24898
24899         * debug-symfile.c
24900         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
24901         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
24902         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
24903
24904 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
24905
24906         * object.c: special case string ctros in invoke.
24907         * gc.c: silly whitespace changes.
24908
24909 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
24910
24911         * threadpool.[ch]: impl. a threadpool that can
24912         be used by mint and mono.
24913
24914 2002-05-22  Martin Baulig  <martin@gnome.org>
24915
24916         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
24917         The first argument is now a `MonoReflectionModuleBuilder *', the return
24918         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
24919         `methods' field to get the method builder.  The `token' argument is the
24920         unfixed token.
24921
24922         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
24923         invalid characters instead of g_assert_not_reached()ing.  This seems
24924         to be the behaviour of mscorlib.
24925
24926 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
24927
24928         * object.c (mono_runtime_invoke_array): applied patch from Rachel
24929         Hestilow to fix bug #25104
24930
24931 2002-05-21  Martin Baulig  <martin@gnome.org>
24932
24933         * debug-symfile.c (mono_debug_find_source_location): New function.
24934         Looks up an IL offset in the line number table and returns the source
24935         location as a string.
24936
24937 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24938
24939         * icall.c:
24940         (mono_double_ToStringImpl): changed %f by %g until we have something
24941         better.
24942
24943 2002-05-21  Nick Drochak  <ndrochak@gol.com>
24944
24945         * icall.c : Use different name for Math.Pow's icall.  Needed to check
24946         parameters first in C#.
24947
24948 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
24949
24950         * icall.c, reflection.h: added icall to get info about an event.
24951
24952 2002-05-20  Radek Doulik  <rodo@ximian.com>
24953
24954         * object.c (mono_value_box): don't use memcpy for boxing on BIG
24955         endian
24956         (mono_value_box): don't use memcpy for small sizes on
24957         architectures with unaligned access
24958
24959 2002-05-20  Martin Baulig  <martin@gnome.org>
24960
24961         * reflection.c (mono_reflection_setup_internal_class): Don't crash
24962         if `tb->parent == NULL'.
24963         (mono_reflection_create_internal_class): New function.  This is
24964         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
24965         for enum types.
24966
24967         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
24968         New interncall.
24969
24970 2002-05-19  Martin Baulig  <martin@gnome.org>
24971
24972         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
24973         argument to get the length, don't default to the array length.
24974
24975 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
24976
24977         * assembly.c (mono_assembly_setrootdir): New function used to
24978         override the MONO_ASSEMBLIES directory.
24979
24980 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
24981
24982         * icall.c: ValueType_GetHashCode() initialize local var.
24983
24984 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
24985
24986         * reflection.c: sort custom attributes table.
24987
24988 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
24989
24990         * reflection.c: support named args in custom attributes (write support).
24991
24992 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
24993
24994         * reflection.c: fix finally position calculation.
24995
24996 2002-05-15  Radek Doulik  <rodo@ximian.com>
24997
24998         * reflection.c: fixed endianess at many places
24999
25000         * icall.c (ves_icall_InitializeArray): comment out debug msg
25001
25002 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
25003
25004         * object.c (mono_unhandled_exception): new function to handle
25005         unhandled exceptions.
25006         (mono_unhandled_exception): call the UnhandledException event.
25007         (mono_runtime_delegate_invoke): impl.
25008
25009 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
25010
25011         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
25012         returns the RVA, not the direct pointer to the data. Handle the case
25013         when the class size is fixed.
25014
25015 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
25016
25017         * reflection.c: fix some endianess issues.
25018
25019 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
25020
25021         * object.c (mono_runtime_invoke): is now able to catch exceptions.
25022
25023         * threads.c (mono_thread_init): added a callback which is invoked
25024         at thread start.
25025
25026 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
25027         
25028         * icall.c: make GetHashCode return non-negative values.
25029
25030 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
25031
25032         * object.c, icall.c, gc.c: revert to address-based hashcode.
25033
25034 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
25035
25036         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
25037
25038 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
25039
25040         * icall.c, class.c: special case <Module>.
25041
25042 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
25043
25044         * icall.c: fix bug in GetNow().
25045
25046 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
25047
25048         * object.c (mono_runtime_class_init): make sure that we call all
25049         static class constructors.
25050
25051 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25052
25053         * reflection.c: sort methodsemantics table.
25054
25055 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25056
25057         * reflection.h, reflection.c: honour init locals setting.
25058
25059 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
25060
25061         * icall.c: copied Double ToStringImpl for Single ToStringImpl
25062
25063 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
25064
25065         * reflection.c: support ContructorBuilders in attribute blob creation.
25066
25067 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
25068
25069         * reflection.c: some changes to build a binary that can be run
25070         directly in windows.
25071
25072 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
25073
25074         * loader.c: print a big message when an icall can't be found.
25075
25076 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25077
25078         * string-icalls.c: fix bug 24248.
25079
25080 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
25081
25082         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
25083         icall.c, reflection.h: separate assembly loading by pathname and by
25084         assembly name. Use the MONO_PATH env var to search for assemblies.
25085
25086 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
25087
25088         * assembly.c, image.h: add some support for assemblies
25089         with multiple modules.
25090         * class.c, class.h: export mono_class_from_typeref().
25091         * loader.c: remove duplicated code and use mono_class_from_typeref(),
25092         instead.
25093
25094 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
25095
25096         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
25097         documentation says (the ECMA one is correct).
25098
25099 2002-05-02  Dick Porter  <dick@ximian.com>
25100
25101         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
25102         Don't name the synchronisation mutex.
25103
25104 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
25105
25106         * rand.c
25107         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
25108         Make the prototypes match.
25109         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
25110         Same.
25111
25112         * icall.c
25113         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
25114         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
25115         all systems have tm.tm_zone, so use strftime() with %Z to print
25116         the timezone abreviation into a temp string.
25117
25118         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
25119         rather than mono_array_addr() on a MonoString on Big Endian
25120         machines.
25121
25122 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
25123
25124         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
25125         fix bug 24041
25126
25127 2002-04-30  Dick Porter  <dick@ximian.com>
25128
25129         * socket-io.c: Cope with SOCKET being an integer rather than a
25130         pointer now.
25131
25132         * threads.c: Added Thread_free_internal, to deal with thread
25133         handle cleanup.  Moved calls to handle_store() and handle_remove()
25134         to start_wrapper(), so each can only be called once.  Allocate
25135         synchronisation blocks with GC_malloc(), and use GC finalisation
25136         to close the handles.
25137
25138         * icall.c: added System.Threading.Thread::Thread_free_internal
25139
25140 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25141
25142         * icall.c: support Environment.Exit, CommandLineArgs().
25143
25144 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25145
25146         * object.c, object.h: added mono_runtime_run_main () and
25147         mono_runtime_get_main_args () for use in System.Environment.
25148
25149 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
25150
25151         * gc.c: fix thinko, enable actual finalization since the jit is now
25152         fixed.
25153
25154 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
25155
25156         * gc.c, object.c: take into account that an object may be offset wrt the address
25157         returned by GC_malloc().
25158
25159 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
25160
25161         * image.c: handle files without entries in the assembly table (modules).
25162
25163 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
25164
25165         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
25166         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
25167         allowed to be null when it's System.Object class setup.
25168
25169 2002-04-27  Martin Baulig  <martin@gnome.org>
25170
25171         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
25172         if `tb->parent == NULL' rather than crashing.
25173
25174 2002-04-28  Nick Drochak  <ndrochak@gol.com>
25175
25176         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
25177         calling acos() where asin() should have been called.
25178
25179 2002-04-26  Martin Baulig  <martin@gnome.org>
25180
25181         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
25182         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
25183         there's a subdirectory called `System', but we don't want to read that
25184         subdirectory as an assembly.
25185
25186 2002-04-25  Martin Baulig  <martin@gnome.org>
25187
25188         * debug-symfile.c: Reflect latest MonoString changes.
25189
25190 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
25191
25192         * rand.c, rand.h: instance method icalls need to have an explicit
25193         this pointer as first argument in the C implementation.
25194
25195 2002-04-25  Nick Drochak <ndrochak@gol.com>
25196
25197         * icall.c: Fix typo in map for GetNonZeroBytes
25198
25199 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
25200
25201         * string-icalls.c : String does now passes unit tests without any 
25202         errors, the following changes has been made:
25203         
25204         Implemented replace methods.
25205         Renaming of methods to (try) follow the standard.
25206         Fixed compare ordinal
25207         Made all memory allocated directly to function instead of via icall function.
25208         Small performance fix in is_in_array function
25209                         
25210  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
25211
25212         c (mono_string_Internal_ctor_charp_int_int):
25213         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
25214         sindex < 0, throw ArgumentOutOfRangeException instead of
25215         ArgumentNullException.
25216
25217         Added new check for length == 0, however
25218         I need to make it return String.Empty from the C code.
25219         
25220         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
25221         that calculate the length for us here.
25222         
25223         (mono_string_Internal_ctor_sbytep_int_int): Replaced
25224         mono_string_new_utf16 with mono_string_new, since value is utf8.
25225
25226 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25227
25228         * object.c: register the object for finalization if needed.
25229         Allocate one more char in the string for the terminating 0 char.
25230
25231 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25232
25233         * class.c, class.h, image.c: check if a type implemenst a destructor.
25234         Use the proper key for array class lookups.
25235         * icall.c: register the icalls in the System.GC class.
25236         * gc.c, gc.h: GC-related functions and icalls.
25237
25238 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25239
25240         * icall.c:
25241         * socket-io.c:
25242         * unicode.c: free some strings gotten from mono_string_to_utf8 and
25243         changed a couple of free () by g_free ().
25244
25245         * decimal.c: one-liner in the comments for decimal2string ().
25246
25247 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
25248
25249         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
25250
25251 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
25252
25253         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
25254         * object.c (mono_runtime_invoke_array) : handle null in params
25255
25256 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
25257
25258         * string-icalls.c: fixed bug in split (one off bug)
25259
25260 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
25261
25262         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
25263         * icalls.c: added String::Equals as internal method
25264
25265 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
25266
25267         * threads.c: fixed bug in the double interlocked functions
25268
25269 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
25270
25271         * threads.c: implemented all of the new interlocked icalls.
25272         * string-icalls.c: fix a bug in insert.
25273         * icalls.c: added the icalls for interlocked, removed old string functions.
25274         
25275 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
25276
25277         * loader.c: fix off-by-one error when reading argument names.
25278
25279 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
25280
25281         * profiler.c: win32 counter implementation (untested).
25282         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
25283         (the latter needs testing and more complete impl. from win32 folks).
25284
25285 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
25286
25287         * object.c: mono_array_new_full workaround mono_array_class_get
25288         problem.
25289
25290 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
25291
25292         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
25293         * object.h (mono_string_chars): Changed casting type.
25294
25295 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
25296
25297         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
25298                            method signatures to use gunichar2 instead of gint16.
25299
25300 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
25301
25302         * object.h, object.c: domain-specific versions of mono_object_new and
25303         mono_array_new.
25304
25305 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
25306
25307         * object.c: changed String layout
25308
25309         * string-icalls.c (mono_string_Internal_ctor_chara): added
25310         internal string constructors.
25311
25312 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
25313
25314         * threads.c: pass 'this' to the thread start routine.
25315
25316 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25317
25318         * string-icalls.c: fix IndexOf and LastIndexOf. Now
25319         InternalCompareStr don't call twice mono_string_cmp_char for the last
25320         character. Improved performance in mono_string_cmp_char.
25321
25322 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
25323
25324         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
25325         code into its own library: libmonoruntime.
25326
25327 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
25328
25329         * object.h, object.c: changed array format so that szarrays do not
25330         require a bounds structure.
25331         * icall.c, appdomain.c: support for new szarray format.
25332
25333 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
25334
25335         * metadata.c: compare also the retuns type when comparing signatures:
25336         we didn't do this as an optimization since really overloaded methods
25337         must differ also in the arguments, but this doesn't work with
25338         low-level IL code (or when using explicit conversion operators: see
25339         bug#23498 for an example).
25340
25341 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
25342
25343         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
25344
25345 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
25346
25347         * icall.c: make MonoType::GetElementType its own icall.
25348
25349 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
25350
25351         * icall.c: remove MonoMethod_get_Name().
25352         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
25353         object.
25354
25355 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
25356
25357         * string-icalls.c: optimized a few methods.
25358
25359 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
25360
25361         * icall.c: added all new string internal calls
25362         * string-icalls.c: added, new string internal call implementation.
25363         * object.c: added mono_string_new_size for allocating a string a size
25364
25365 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
25366
25367         * object.c (mono_object_isinst): use the same code as in the
25368         optimized x86 version.
25369
25370 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
25371
25372         * profiler.c: TSC-based timer code (faster and more accurate).
25373         Not hooked up in configure, yet (set USE_X86TSC to 1).
25374
25375 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
25376
25377         * profiler.c, profiler.h: track time spent compiling methods.
25378         * threads.c: track thread creation/destruction.
25379
25380 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
25381
25382         * profiler.c, profiler.h, profiler-private.h: profiling interface
25383         and sample implementation. Moved here so that it can be used also by
25384         the jit.
25385
25386 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
25387
25388         * reflection.c, reflection.h: keep types and other handles separate in
25389         the hash tables for referred tokens. Add guid for modules.
25390
25391 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
25392
25393         * assembly.c: fix bugs found with valgrind.
25394         * metadata.h, metadata.c: added mono_metadata_guid_heap().
25395
25396 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
25397
25398         * threads: added icall support for getting current domain for
25399                    the thread.
25400  
25401 2002-04-13  Martin Baulig  <martin@gnome.org>
25402
25403         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
25404         (MonoDebugVarInfo): Added `index' field for register based addresses.
25405         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
25406         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
25407         `MonoDebugVarInfo *params' and `guint32 this_offset' with
25408         `MonoDebugVarInfo *this_var'.
25409
25410         * debug-symfile.c (relocate_variable): New static function to write
25411         a location description for a local variable or method parameter.
25412
25413 2002-04-12  Martin Baulig  <martin@gnome.org>
25414
25415         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
25416         stack offset and begin/end scope address of a local variable.
25417         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
25418         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
25419         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
25420
25421         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
25422         Added new relocation types for start/end scope of a local variable.
25423
25424 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25425
25426         * object.h: add mono_object_domain() macro.
25427         * reflection.c: handle typespecs.
25428         * icall.c: MonoMethod::get_Name() implementation.
25429
25430 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
25431
25432         * icall.c: String::GetHashCode() icall implementation.
25433
25434 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25435
25436         * icall.c: String::IndexOfAny icall.
25437         * object.c, object.h: make array->max_length more useful.
25438         Intrduced mono_object_class() and mono_string_length() macros.
25439
25440 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25441
25442         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
25443         instead of g_unichar_isdigit.
25444
25445 2002-04-11  Nick Drochak  <ndrochak@gol.com>
25446
25447         * icall.c: Implement a simple Double.ToString().
25448
25449 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
25450
25451         * appdomain.h: only io-layer.h is supposed to be included.
25452         * icall.c: explicitly import environ. Fix warning.
25453
25454 2002-04-10  Nick Drochak  <ndrochak@gol.com>
25455
25456         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
25457                 return true even if it's not Daylight Savings time.
25458                 Only return false for the case where the function isn't
25459                 implemented for a plaform (read Windows).
25460
25461 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25462
25463         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
25464         data with a mutex.
25465
25466 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
25467
25468         * mempool.c (mono_mempool_alloc): only use g_malloc when
25469         absolutely necessary.
25470
25471 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
25472
25473         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
25474
25475         * class.c (mono_class_vtable): use domain mempool to allocate vtable
25476         (mono_class_proxy_vtable): use domain mempool
25477
25478 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
25479
25480         * appdomain.h, appdomain.c: split initialization that requires the
25481         execution engine support into mono_runtime_init().
25482
25483 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
25484
25485         * class.c (mono_class_init): don't include vtable inside MonoClass
25486         to save some memory, gather some statistics.
25487         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
25488
25489 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
25490
25491         * icall.c: internalcall implementation for ValueType.Equals().
25492
25493 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
25494
25495         * object.c (mono_message_init): moved 
25496         (mono_runtime_exec_main): new arch. independent impl.
25497         (mono_runtime_invoke_array): new method - like
25498         mono_runtime_invoke, but you can pass an array of objects.
25499         (mono_remoting_invoke): new arch. independent impl.
25500         (mono_message_invoke): new arch. independent impl.
25501         (mono_runtime_class_init): new arch. independent impl.
25502         (mono_runtime_object_init): new arch. independent impl.
25503
25504 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
25505
25506         * metadata.c, object.c, reflection.c: documented the exported
25507         functions.
25508
25509 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
25510
25511         * icall.c: simpler code to pass the assembly builder data to corlib.
25512         Implement GetNestedTypes() internalcall.
25513
25514 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
25515
25516         * class.c: warn if a type can't be loaded.
25517
25518 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
25519
25520         * image.h: typedef MonoImageOpenStatus
25521         * types.h: removed unused file
25522         
25523 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
25524
25525         * icall.c: Enum_ToObject accepts enum value arguments.
25526
25527 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
25528
25529         * class.c: move initialization of properties, events and nested
25530         classes, so that they happen for interfaces, too.
25531
25532 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
25533
25534         * icall.c: cleanup some ugly casts in Array_SetValue*.
25535
25536 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
25537
25538         * icall.c: the values array fro enums is of the correct type, now.
25539         Implement (correctly) getFullName instead of assQualifiedName for
25540         MonoType.
25541         * reflection.h, reflection.c: added mono_type_get_name ().
25542
25543 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
25544
25545         * assembly.c, image.h: for each MonoImage, record from wich assembly
25546         it was loaded.
25547         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
25548         Make Type.Assembly work.
25549
25550 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
25551
25552         * debug-symfile.h: use char* instead of gpointer to avoid
25553         unnecessary casts.
25554
25555         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
25556
25557         * icall.c (ves_icall_InternalExecute): impl. FielSetter
25558         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
25559
25560 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
25561
25562         * icall.c (mono_message_init): impl. (code cleanup)
25563         (ves_icall_InternalExecute): impl. FieldGetter
25564
25565         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
25566         defined we call all (non-static)methods through the vtable. 
25567
25568 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
25569
25570         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
25571         finalizer even though the memory is still referenced (and the chunk of
25572         memory is not freed).
25573
25574 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
25575
25576         * assembly.c: fix brokeness.
25577
25578 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
25579
25580         * class.c: kill some warnings. Check explicit interface method
25581         implementation also without considering the namespace.
25582         Load also literal strings in static class data.
25583
25584 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
25585
25586         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
25587         (default_assembly_name_resolver): Make the resolver take the
25588         "base" directory where the assembly was originally defined, so we
25589         can load DLLs that are in the same directory as the assembly that
25590         is being referenced.
25591
25592 2002-03-28  Dick Porter  <dick@ximian.com>
25593
25594         * file-io.h: 
25595         * file-io.c:
25596         * socket-io.c: 
25597         * unicode.h: 
25598         * unicode.c: Warning cleanups
25599
25600 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
25601
25602         * object.h, reflection.h: use the correct type instead of MonoObject.
25603
25604 2002-03-28  Martin Baulig  <martin@gnome.org>
25605
25606         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
25607         (mono_debug_update_symbol_file): Initialize classes if necessary.
25608
25609 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
25610
25611         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
25612         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
25613
25614 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
25615
25616         * assembly.h: fix function prototype.
25617         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
25618         * mono-endian.h: use const cast.
25619
25620 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
25621
25622         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
25623
25624 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
25625
25626         * loader.c: don't assert when a typeref can't be loaded, give
25627         a chance to the runtime to trow an exception instead.
25628         * loader.h: fix warning.
25629
25630 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
25631
25632         * class.c (mono_class_proxy_vtable): added proxy support
25633
25634 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
25635
25636         * icall.c: removed last of PAL calls, added System.Environment
25637         * file-io.h, file-io.c: MonoIO implementation
25638         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
25639
25640 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
25641
25642         * appdomain.c: do not use the byte marker in ldstr table lookup.
25643         * debug-helpers.c: allow two ':' to separate class and method name.
25644         * object.c: allocate arrays bounds with the GC, too.
25645         * verify: add a few more checks.
25646
25647 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
25648
25649         * reflection.c: output also literal strings. Allocate parameter data
25650         with GC_malloc() (thanks, Martin, for catching this!).
25651
25652 2002-03-26  Martin Baulig  <martin@gnome.org>
25653
25654         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
25655         include the `this' offset in the `param_offsets'.
25656
25657 2002-03-25  Martin Baulig  <martin@gnome.org>
25658
25659         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
25660         mono_debug_get_class() function to get the classes. Added new
25661         relocation types for arrays and strings.
25662         (mono_debug_get_class): New static function to search in all
25663         referenced assemblies for a metadata token.
25664
25665         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
25666
25667 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
25668
25669         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
25670         hold gc-allocated objects. Make the string heap a stream like the
25671         others. Removed duplicated code when writing stream info.
25672         Added asserts to catch possible buffer overflows. Set the sorted map
25673         for tables that need sorting. Added some documentation.
25674
25675 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
25676
25677         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
25678         for interned strings and vtables.
25679
25680 2002-03-24  Martin Baulig  <martin@gnome.org>
25681
25682         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
25683         it in the array since it was created with g_slist_prepend().
25684
25685 2002-03-24  Martin Baulig  <martin@gnome.org>
25686
25687         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
25688         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
25689         (mono_debug_method_from_token): Renamed to
25690         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
25691         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
25692
25693         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
25694         relocation types.
25695
25696         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
25697
25698 2002-03-24  Martin Baulig  <martin@gnome.org>
25699
25700         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
25701         (mono_debug_method_from_token): New func.
25702
25703         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
25704         New interncall, calls mono_debug_local_type_from_signature().
25705         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
25706         calls mono_debug_method_from_token().
25707
25708 2002-03-23  Martin Baulig  <martin@gnome.org>
25709
25710         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
25711         specifies the number of bytes to be converted, not the array size.
25712         Return the number of chars, not the number of bytes.
25713         (ves_icall_iconv_get_chars): The `byteCount' argument
25714         specifies the number of bytes to be converted, not the array size.
25715
25716 2002-03-23  Martin Baulig  <martin@gnome.org>
25717
25718         * reflection.h (MonoReflectionSigHelper): New type.
25719
25720         * reflection.c (mono_reflection_sighelper_get_signature_local),
25721         (mono_reflection_sighelper_get_signature_local): New functions.
25722
25723         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
25724         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
25725         interncalls.
25726
25727 2002-03-23  Martin Baulig  <martin@gnome.org>
25728
25729         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
25730         is_writeable is set.
25731         (mono_raw_buffer_update): New function to write the modified map
25732         back to disk.
25733
25734         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
25735
25736         * debug-symfile.c (mono_debug_update_symbol_file): Call
25737         mono_raw_buffer_update() when done writing.
25738
25739 2002-03-23  Martin Baulig  <martin@gnome.org>
25740
25741         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
25742
25743         * debug-symfile.c: Added support for arguments and local variables.
25744
25745 2002-03-23  Dick Porter  <dick@ximian.com>
25746
25747         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
25748         protected by ifdefs, hence breaking the w32 build.
25749
25750 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
25751
25752         * object.c: implement is_interned() the right way.
25753
25754 2002-03-21  Martin Baulig  <martin@gnome.org>
25755
25756         * debug-symfile.[ch]: New files to handle debugging information
25757         files. There's also support to dynamically update these symbol
25758         files to include machine dependent information.
25759
25760 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
25761
25762         * threads.c (mono_thread_create): new function to create thread
25763         from C
25764
25765 2002-03-20  Martin Baulig  <martin@gnome.org>
25766
25767         * icall.c (ves_icall_InternalInvoke): Create a new object if the
25768         method is a constructor.
25769         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
25770         points to ves_icall_InternalInvoke().
25771
25772 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
25773
25774         * file-io.c: Flush shouldn't throw exceptions.
25775
25776 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
25777
25778         * file-io.c: FileStream flush support; FileSetLength now
25779         restores file pointer.
25780
25781 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
25782
25783         * class.c: set image for pointer classes.
25784
25785 2002/03/19  Nick Drochak <ndrochak@gol.com>
25786
25787         * sysmath.c: Forgot one.
25788
25789 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
25790
25791         * sysmath.c: Avoid redefining existing names.
25792
25793 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
25794
25795         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
25796         handled by runtime as icall rather than dllimport from libm.so
25797         * file-io.c, file-io.h: fixed handle argument type.
25798
25799 2002-03-18  Dick Porter  <dick@ximian.com>
25800
25801         * reflection.c (mono_image_get_type_info): rename interface to
25802         iface, because of "#define interface struct" on windows.
25803
25804 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
25805
25806         * class.c, class.h: rename and export mono_ptr_class_get().
25807         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
25808         * reflection.c, reflection.h, icall.c: better/saner type name
25809         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
25810         method signatures.
25811
25812 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
25813
25814         * class.c (mono_class_init): removed hardcoded GHC_SLOT
25815
25816         * icall.c (ves_icall_InternalInvoke): impl.
25817
25818 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
25819
25820         * reflection.c: output the interface map table, too.
25821
25822 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
25823
25824         * class.c (class_compute_field_layout): separate computation of 
25825         static field layout
25826
25827 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
25828
25829         * icall.c: added System.Buffer support.
25830         * file-io.c: moved file icalls from PAL to FileStream.
25831
25832 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
25833
25834         * icall.c (ves_icall_System_Object_GetHashCode): impl.
25835
25836 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
25837
25838         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
25839
25840 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
25841
25842         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
25843
25844 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
25845
25846         * debug-helpers.{c,h}: moved here from monograph some useful functions
25847         to locate a method by name/signature in a class or image. Included
25848         also a small and flexible IL disassembler.
25849
25850 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
25851
25852         * reflection.c: fixup tokens in methods with small header size, too.
25853
25854 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
25855
25856         * object.c (mono_string_to_utf8): remove assert(!error), instead
25857         print a warning. 
25858
25859 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
25860
25861         * icall.c: update to the new mono_Array_class_get interface.
25862
25863 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
25864
25865         * appdomain.c, object.c: Boehm-GC enable.
25866         * icall.c: make get_data_chunk() support split data requests.
25867         Ensure a class is initialized in more cases. Return only the first
25868         property found in GetProperties() or the compiler gets confused. 
25869         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
25870         * reflection.h, reflection.c: add fixup mechanism for field and method
25871         tokens. Initialize assembly->typeref in a single place. Output
25872         properties after events. Support custom attributes for events, too.
25873         Typo fix for paramter custom attrs.
25874
25875 2002-03-07  Martin Baulig  <martin@gnome.org>
25876
25877         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
25878
25879 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
25880
25881         * class.c (mono_array_class_get): fix. for multi. dim. arrays
25882
25883 2002-03-06  Martin Baulig  <martin@gnome.org>
25884
25885         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
25886         non-zero lower bounds. See testcases #F10-#F13.
25887
25888 2002-03-05  Martin Baulig  <martin@gnome.org>
25889
25890         * exception.c (mono_get_exception_argument_out_of_range): New exception.
25891
25892         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
25893         ves_icall_System_Array_GetValue(), only calculate the absolute array position
25894         here.
25895         (ves_icall_System_Array_SetValue): Likewise.
25896         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
25897         as argument and does the actual work. This function is used when copying a
25898         multi-dimensional array.
25899         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
25900         now do all the widening conversions of value types.
25901         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
25902
25903 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
25904
25905         * class.c: remove some magic numbers and use the smbolic names,
25906         instead. Added init_events() to load event info at class init time.
25907         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
25908         and mono_metadata_methods_from_event().
25909         * reflection.h, reflection.c: added support for writing out the evnets
25910         related information.
25911
25912 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
25913
25914         * reflection.h, icall.c: use a different method (GetInterfaces)
25915         to gather interface info and add isbyref, isprimitive and
25916         ispointer to the ves_icall_get_type_info() return value.
25917
25918 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
25919
25920         * class.h: stared adding support for events.
25921         * icall.c: split find_members implementation. Added debug icall to get
25922         the address of an object.
25923         * reflection.c: handle TypeBuilders in mono_type_get_object().
25924
25925 2002-03-01  Martin Baulig  <martin@gnome.org>
25926
25927         * icall.c (ves_icall_System_Array_GetLength): This must throw an
25928         ArgumentOutOfRangeException(), not an ArgumentException().
25929         (ves_icall_System_Array_GetLowerBound): Likewise.
25930         (ves_icall_System_Array_GetValue): Improved argument checking.
25931         (ves_icall_System_Array_SetValue): Improved argument checking.
25932
25933 2002-03-01  Martin Baulig  <martin@gnome.org>
25934
25935         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
25936         called with invalid arguments rather than just dying with g_assert().
25937         (ves_icall_System_Array_SetValue): Likewise.
25938         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
25939         raise a NotImplementedException instead.
25940         (ves_icall_System_Array_GetLength): Added argument checking.
25941         (ves_icall_System_Array_GetLowerBound): Added argument checking.
25942
25943 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
25944
25945         * object.h (mono_assert): new macros mono_assert and
25946         mono_assert_not_reached
25947
25948 2002-02-28  Martin Baulig  <martin@gnome.org>
25949
25950         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
25951         and "System::String::IsInterned" to "System::String::_IsInterned".
25952
25953 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
25954
25955         * icall.c: remove hacks for typebuilder. Added icall to create a
25956         modified type from a tybebuilder.
25957         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
25958         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
25959         to create a backing MonoClass for a TypeBuilder.
25960
25961 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
25962
25963         * class.c, class.h: more refactoring of class init.
25964         Export mono_class_setup_mono_type() and mono_class_setup_parent().
25965
25966 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
25967
25968         * marshal.c, marshal.h: start of marshaling interface.
25969
25970 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
25971
25972         * icall.c: fix order in assembly qualified name icall.
25973
25974 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
25975
25976         * class.c: do not free str, since we store it in the hash table.
25977         * reflection.h: add label field to MonoILExceptionInfo.
25978         * reflection.c: handle references to more than one assembly. Handle
25979         case when there isn't a module created in the assembly.
25980
25981 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
25982
25983         * class.c: Fix typo. Start refactoring of class init code.
25984
25985 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
25986
25987         * appdomain.c: exit with 1 on error.
25988         * class.c: we already have the name in MonoClassField.
25989         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
25990         MonoStreamHeader instead of an offset of image->raw_metadata.
25991
25992 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
25993
25994         * appdomain.c (mono_init): Be even more descriptive about the error.
25995
25996 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
25997
25998         * appdomain.c: give the user an informative message when corlib can't
25999         be loaded.
26000
26001 2002-02-26  Martin Baulig  <martin@gnome.org>
26002
26003         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
26004         New icall to get the time zone data.
26005
26006 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
26007
26008         * reflection.c: set virtual and raw size of section correctly.
26009         * threads.c: transfer domain information to newly created threads.
26010
26011 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
26012
26013         * class.c: when instancing a class in a domain, load the default
26014         vaules for static fields from the constant table. Fix System.Enum to
26015         not be an enum.
26016         * icall.c: implement Object::GetType() internalcall. Implemented
26017         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
26018         Fixed checking of binding flags in find_members().
26019         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
26020         * reflection.c: handle enumerations when writing to the constant
26021         table. Use a different object cache for types.
26022
26023
26024 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
26025
26026         * object.c (mono_object_isinst): fix for arrays
26027
26028         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
26029
26030 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
26031
26032         * object.c: don't use mprotect ()  and fix intern pool hash table
26033         lookup for big endian systems.
26034
26035 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
26036
26037         * icall.c: change type_is_subtype_of () signature.
26038
26039 2002-02-21  Mark Crichton  <crichton@gimp.org>
26040
26041         * rand.c, rand.h: Added random number generator for
26042         System.Security.Cryptography classes.
26043
26044         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
26045
26046         * icall.c: Added System.Security.Cryptography calls.
26047
26048 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
26049
26050         * class.c, icall.c, metadata.c: better support for pointer types.
26051         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
26052         * reflection.c: Add support for getting custom attrs for properties
26053         and simplify some code.
26054
26055 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
26056
26057         * icall.c: change getToken () and add custom attribute GetBlob()helper
26058         method.
26059         * reflection.h: add custom attrs array to the reflection builder structures.
26060         * reflection.c: encode and emit custom attributes for all the relevant
26061         reflection objects. Cache fieldref and methodref tokens. Change
26062         mono_image_create_token() interface to take a MonoDynamicAssembly.
26063         More complete custom attributes decoder. Load custom attributes for
26064         Assembly, Field, Method and Constructor objects, too. Make the
26065         returned array an Attribute[] one, not object[]. Added
26066         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
26067         custom attribute constructor.
26068
26069 2002-02-20  Dick Porter  <dick@ximian.com>
26070
26071         * icall.c:
26072         * rawbuffer.c:
26073         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
26074         problem code out for now).
26075
26076 2002-02-19  Radek Doulik  <rodo@ximian.com>
26077
26078         * object.c (mono_ldstr): use hash table to avoid multiple swapping
26079
26080 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
26081
26082         * icall.c: register the GetCustomAttributes method.
26083         * object.c, object.h: add mono_string_new_len ().
26084         * reflection.h, reflection.c: added mono_runtime_invoke(),
26085         mono_install_runtime_invoke(). Added
26086         mono_reflection_get_custom_attrs () to load custom attributes and
26087         create the attribute objects.
26088
26089 2002-02-19  Dick Porter  <dick@ximian.com>
26090         * threads-dummy-types.c:
26091         * threads-dummy-types.h:
26092         * threads-dummy.c:
26093         * threads-dummy.h:
26094         * threads-pthread-types.c:
26095         * threads-pthread-types.h:
26096         * threads-pthread.c:
26097         * threads-pthread.h:  Deleted obsolete files
26098
26099 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
26100
26101         * class.c (mono_class_vtable): runtime init the class when we
26102         allocate static class data.
26103
26104         * icall.c (ves_icall_System_Array_SetValue): check for null values.
26105
26106         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
26107         and String - but we will need generic marshalling support in the
26108         future. 
26109         (mono_init): set the domain name in a ms compatible way
26110
26111         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
26112         String[].
26113
26114 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
26115
26116         * object.c (mono_array_clone): use alloca() instead of g_malloc  
26117         for sizes
26118
26119         * appdomain.c (mono_domain_unload): impl.
26120
26121 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
26122
26123         * appdomain.c, object.c: fix intern pool implementation.
26124         * class.c: fix alignment code.
26125
26126 2002-02-16  Radek Doulik  <rodo@ximian.com>
26127
26128         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
26129         and s2 > s1, just copy lower bytes to be compatible with little
26130         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
26131         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
26132
26133         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
26134         force big_endian to be 1 for big endian machines 
26135         (ves_icall_iconv_new_decoder): ditto
26136
26137 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
26138
26139         * socket-io.c (convert_sockopt_level_and_name): If the system
26140         doesn't define SOL_IP or SOL_TCP, get them by hand using
26141         getprotobyname() and caching the values (because this could be a
26142         slow operation).
26143         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
26144         Use the appropriate struct when the system does support it. Ie,
26145         not all systems have struct ip_mreqn so use struct ip_mreq when
26146         appropriate.
26147
26148 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
26149
26150         * reflection.c: handle finally clauses.
26151
26152 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
26153
26154         * socket-io.c: use g_snprintf() instead of snprintf.
26155
26156 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
26157
26158         * reflection.c (mono_param_get_objects): Cast second argument to
26159         mono_method_get_param_names to a const char** to silence the
26160         compiler warning.
26161
26162         * appdomain.c (mono_domain_assembly_open): Put parens around the
26163         truth statement in the for-loop.
26164
26165         * unicode.c (iconv_convert): Got rid of a compiler warning about
26166         int i being unused when the system has a new iconv.
26167         (iconv_get_length): Same.
26168
26169         * image.c (load_class_names): Cast the second argument to
26170         g_hash_table_insert() to char* to hush compiler warnings about the
26171         arg being a const.
26172         (mono_image_open): Same here.
26173
26174         * socket-io.c: Don't conditionally include sys/filio.h or
26175         sys/sockio.h here anymore since we now get them from
26176         io-layer/io-layer.h
26177         (inet_pton): If the system doesn't support inet_aton, implement
26178         using inet_addr and also #define INADDR_NONE if it isn't defined
26179         by the system.
26180
26181 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
26182
26183         * metadata.c, metadata.h: added function to get packing and size info
26184         of a typedef.
26185         * reflection.h, reflection.c: handle field RVA data. Save info about
26186         the table layout if needed. Assign typedef indexes to all the types
26187         before dumping the info about them to avoid forward reference problems.
26188
26189 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
26190
26191         * socket-io.c (convert_sockopt_level_and_name): ifdef
26192         SO_ACCEPTCONN because it is not defined on my system (old debian)
26193
26194 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
26195
26196         * opcode.c: use stddef.h to get NULL.
26197
26198 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
26199
26200         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
26201         for FIONBIO, FIONREAD and SIOCATMARK.
26202         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
26203         define INADDR_NONE and besides, inet_addr() is deprecated and
26204         should not be used. Use inet_pton() instead - it also has the
26205         added bonus that it can easily handle IPv6 addresses as well.
26206         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
26207
26208 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
26209
26210         * decimal.c: remove _MSC_VER conditional.
26211
26212 2002-02-13  Dick Porter  <dick@ximian.com>
26213
26214         * socket-io.c: 
26215         * icall.c: Internal calls for Blocking, Select, Shutdown,
26216         GetSocketOption and SetSocketOption
26217
26218 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
26219
26220         * assembly.cs: better resolver: use it instead of some kludgy
26221         code.
26222
26223 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
26224
26225         * reflection.c: the best way to speed-up the compiler is to avoid
26226         infinite loops.
26227
26228 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
26229
26230         * class.c (mono_class_vtable): changed the object layout
26231         (obj->vtable->class). 
26232         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
26233
26234 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
26235
26236         * assembly.c: look for assemblies in the assembly dir, too.
26237
26238 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
26239
26240         * class.c: fix thinko in mono_class_from_type().
26241
26242 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
26243
26244         * exception.h, exception.c: added TypeLoadException.
26245         * object.h, object.c: added mono_array_clone ().
26246         * icall.c: handle throwOnError in AssemblyGetType().
26247         Added Array.Clone().
26248         * opcode.h, opcode.c: use a single value for the opcode val.
26249         Compile fix for non-gcc compilers.
26250
26251 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
26252
26253         * opcodes.c, opcodes.h: export interesting info about opcodes.
26254
26255 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
26256
26257         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
26258         icalls. 
26259
26260         * class.c (class_compute_field_layout): set element_class for enums
26261         (mono_class_create_from_typedef): set element_class for normal classes
26262
26263         * icall.c (ves_icall_System_Enum_get_value): impl.
26264
26265         * class.c (mono_class_create_from_typedef): do not set valuetype
26266         flag for System.ValueType and System.Enum
26267
26268 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
26269
26270         * unicode.c (iconv_convert): fix big endian problem.
26271
26272 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
26273
26274         * class.c: add asserts if we are ever going to scribble over memory.
26275         * socket-io.c: not all systems have AF_IRDA defined.
26276
26277 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
26278
26279         * class.c (class_compute_field_layout): do not consider static
26280         fields to compute alignment
26281
26282 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
26283
26284         * appdomain.c (mono_appdomain_get): impl.
26285         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
26286
26287 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
26288
26289         * icall.c: ignore "file://" prefix when loading an assembly.
26290
26291 2002-01-23  Dick Porter  <dick@ximian.com>
26292
26293         * socket-io.c:
26294         * icall.c:
26295         * Makefile.am: Added socket support
26296
26297 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
26298
26299         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
26300         code back.  This should return the assemblies that are loaded by
26301         the runtime on behalf of an application domain. 
26302
26303         The current implementation is still broken, it just returns every
26304         assembly loaded, but until we get real applications domain this
26305         will do.
26306
26307 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
26308
26309         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
26310         AppDomain object.
26311
26312 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
26313
26314         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
26315         the mono_class_from_name lookup.
26316         (ves_icall_get_parameter_info): ditto.
26317         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
26318         method.
26319         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
26320
26321 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
26322
26323         * class.c: load also nested classes on class init.
26324         System.ValueType instance methods gets passed boxed
26325         values, unless methods in derived classed that get a pointer to the
26326         data.
26327         * icall.c: use better name parsing code in GetType().
26328         * image.c, image.h: add mono_image_loaded ().
26329         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
26330         * reflection.c, reflection.h: added mono_reflection_parse_type().
26331
26332 2002-01-22  Veronica De Santis <veron78@interfree.it>
26333
26334         * icall.c : Added mapping of internal calls for Manual and Auto reset events
26335         * threads.c : Added the implementation of internal calls for events
26336         * threads.h : Added prototypes of internal calls for events
26337         
26338 2002-01-21  Radek Doulik  <rodo@ximian.com>
26339
26340         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
26341
26342 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
26343
26344         * class.c (mono_class_init): set min_align to 1 (instead of 0)
26345         (mono_class_value_size): use min_align
26346
26347 2002-01-20  Dick Porter  <dick@ximian.com>
26348
26349         * threads.h:
26350         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
26351         so it compiles on w32.
26352
26353 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
26354
26355         * metadata.c (mono_type_stack_size): impl.
26356
26357         * class.c (mono_class_get_field): impl. memberref token
26358
26359 2002-01-16 Veronica De Santis <veron78@@interfree.it>
26360
26361         * icall.h : Added the internal calls mapping for CreateMutex_internal
26362                     and ReleaseMutex_internal.
26363         * threads.h : Added the prototype of mutexes internal calls.
26364         * threads.c : Added the implementations of mutexes internal calls.
26365
26366 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
26367
26368         * metaparse.h: removed unused file.
26369         * reflection.c, reflection.h: added stream_data_align () function 
26370         to align data in streams and keep stream aligned. Add support for
26371         exception support in method headers.
26372
26373 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
26374
26375         * unicode.c: make iconv_convert () return the number of bytess written
26376         in the output buffer.
26377
26378 2002-01-15  Dick Porter  <dick@ximian.com>
26379         * threads.c: Make the runtime's idea of infinite timeouts coincide
26380         with the class library's
26381
26382         Fix a particularly egregious bug in mono_thread_cleanup(). That
26383         code was so utterly bogus it must have been written on a Monday.
26384
26385 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
26386
26387         * reflection.h: add subtypes field to TypeBuilder.
26388         * reflection.c: encode constants for literal fields.
26389         Handle subtypes. Fix user string token (and add a zero byte)
26390         at the end.
26391         
26392 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
26393
26394         * class.c (mono_class_init): bug fix: assign slot numbers for
26395         abstract methods.
26396
26397 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
26398
26399         * reflection.c: don't try to output a code RVA for abstract methods.
26400         Small fixes for method header format. Output parameter info to the
26401         ParamDef table. Save method overriding info to MethodImpl table.
26402         Fix property support. Allow typedef.extends to be a type in the
26403         building assembly.
26404         * verify.c: fix off-by-one error.
26405
26406 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
26407
26408         * class.c: fix mono_class_from_mono_type () for szarray types.
26409         Remove unused cache check in mono_class_from_type_spec().
26410         * icall.c: *type_from_name () functions handle simple arrays and byref.
26411         * reflection.c: handle byref and szarray types. Handle methods without
26412         body (gets P/Invoke compilation working). Handle types and fields in
26413         get_token ().
26414         * reflection.h: add rank to MonoTypeInfo.
26415
26416 2002-01-10  Dick Porter  <dick@ximian.com>
26417
26418         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
26419         internal calls
26420
26421 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
26422
26423         * icall.c: initialize class in type_from_handle ().
26424         Loop also in parent classes for get_method ().
26425         * reflection.c: properly encode class and valuetype types.
26426         Start on encoding TypeBuilder types. Handle fieldrefs.
26427         Use correct length when registering a user string.
26428         Handle ConstructorBuilder and MonoMethod in get_token ().
26429         Make mono_type_get_object () aware of cached types.
26430         * object.c: back out change to mono_string_new ().
26431
26432 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
26433         * object.c: mono_string_new should return a NULL when the string 
26434         passed in is NULL -- not try to deference it.
26435         
26436 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
26437
26438         * icall.c: hack to make IsSubType work for TypeBuilders.
26439         * reflection.c: emit constructors before methods.
26440         Retrieve param names in mono_param_get_objects().
26441
26442 2002/01/05  Nick Drochak  <ndrochak@gol.com>
26443
26444         * Makefile.am: fix list of headers and sources so automake 1.5
26445         doesn't complain. Removed \# at end of list.
26446
26447 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
26448
26449         * reflection.c: get token for a method ref. Set return type of
26450         constructor to void.
26451         * loader.c: debug message.
26452         * class.c: typo fix.
26453
26454 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
26455
26456         * icall.c: fix array init with rank > 1. FindMembers
26457         loops in parent class as well.
26458         * image.c: do not insert nested types in name cache.
26459         * reflection.c: warning fix.
26460         * reflection.h: add override method (for interface impl).
26461
26462 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
26463
26464         * metadata.c: fix customattr decoding.
26465
26466 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
26467
26468         * rawbuffer.cs: Added native Win32 implementation, avoids using
26469         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
26470
26471 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
26472
26473         * class.c: make the low-level routines handle the cache.
26474
26475 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
26476
26477         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
26478
26479 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
26480
26481         * class.c: fix mono_array_element_size() for objects.
26482         * class.h, class.c: add properties to MonoClass and load them
26483         at init time.
26484         * icall.c: check with isinst() when assigning a value to an array
26485         instead of requiring the classes to match exactly.
26486         Implemented icall for System.Type::GetType().
26487         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
26488         enums. Handle bindingflags when looking for methods and fields.
26489         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
26490         and mono_metadata_methods_from_property().
26491         * reflection.h, reflection.c: added structures for propreties,
26492         parameters and enums. Implemented mono_property_get_object() and
26493         mono_param_get_objects().
26494
26495 2001-12-18  Dick Porter  <dick@ximian.com>
26496
26497         * file-io.c: Use mono_string_to_utf16() instead of
26498         mono_string_chars()
26499
26500         * object.c: Added mono_string_to_utf16(), which copies the non
26501         NULL-terminated MonoString into a new double-null-terminated
26502         buffer.
26503
26504 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
26505
26506         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
26507
26508 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
26509
26510         * file-io.c: raise exceptions if handle is invalid.
26511
26512 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
26513
26514         * assembly.c: yet another check for mscorlib.
26515         * class.c, class.h: load nesting info for classes.
26516         * icall.c: many new functions to support the Reflection classes.
26517         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
26518         * reflection.h, reflection.c: mono_image_create_token(),
26519         mono_assembly_get_object(), mono_type_get_object(),
26520         mono_method_get_object(), mono_field_get_object(): methods to return
26521         objects that parallel the C representation of assemblies, types,
26522         methods, fields.
26523
26524 2001-12-11  Dick Porter  <dick@ximian.com>
26525
26526         * icall.c:
26527         * file-io.c: Internal calls for file IO.
26528
26529 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
26530
26531         * tabledefs.h: missing FileAttributes.
26532         * verify.h, verify.c: use is_valid_string () to simplify and check for
26533         valid strings more correctly. Fix warnings and speeling.
26534         Check more tables: Filed, File, ModuleRef, StandAloneSig.
26535         Check code: branches, maxstack, method calls.
26536
26537 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
26538
26539         * object.c (mono_object_allocate): removed static, so that the jit
26540         can allocate value types.
26541
26542         * icall.c (ves_icall_System_DateTime_GetNow): impl.
26543
26544 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
26545
26546         * class.c: init enum types right away and register the
26547         token->MonoClass map in mono_class_create_from_typedef ().
26548         * verify.h, verify.c: first cut of the verifier.
26549         * pedump.c: add --verify switch to verify metadata tables.
26550         * tabledefs.h: add some missing enums.
26551
26552 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
26553
26554         * class.c (mono_install_runtime_class_init): impl.
26555         (mono_class_init): renamed mono_class_metadata_init to
26556         mono_class_init, also removed the metadata_inited flag
26557
26558         * object.c (mono_object_isinst): use faster algorithm
26559
26560 2001-11-30  Radek Doulik  <rodo@ximian.com>
26561
26562         * mono-endian.h: reverted last change
26563         added function prototypes
26564
26565         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
26566         add mono-endian.c back
26567
26568         * mono-endian.c: returned back, as Paolo pointed out, it's needed
26569         for unaligned access, I've mistaked it with endianess. I am
26570         sorry.
26571         (mono_read16): fix reverted endianess
26572         (mono_read64): ditto
26573         (mono_read32): ditto
26574
26575 2001-11-30  Dick Porter  <dick@ximian.com>
26576
26577         * exception.c: Implement mono_exception_from_name()
26578
26579 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
26580
26581         * metadata.h, metadata.c: remove params_size and locals_size and their
26582         calculation from the metadata code: they are only usefult to the
26583         interp.
26584
26585 2001-11-29  Radek Doulik  <rodo@ximian.com>
26586
26587         * object.c (mono_ldstr): swap bytes here, it's probably not the
26588         best place, but works for me now, I'll redo it once I know mono
26589         better, also note that I add PROT_WRITE and don't reset back, also
26590         note that it's only affects big endians, so x86 should be OK
26591
26592         * mono-endian.h (read16): use just glib macros for both endians
26593
26594         * mono-endian.c: removed as glib macros are used in in
26595         mono-endian.h so we don't need to care about endianess for read
26596         macros as glib does that for us already
26597
26598 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
26599
26600         * class.h, class.h: take minimum alignment into consideration so
26601         that the fields of a class remain aligned also when in an array.
26602
26603 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
26604
26605         * loader.h, loader.c: add mono_method_get_param_names().
26606         * class.c: 0-init class fields.
26607
26608 2001-11-26  Dick Porter  <dick@ximian.com>
26609
26610         * icall.c:
26611         * threads-types.h:
26612         * threads.c: New file that handles System.Threading on all platforms
26613
26614         * object.c: 
26615         * object.h: Remove the synchronisation struct from MonoObject,
26616         replace it with a pointer that gets initialised on demand
26617
26618         * Makefile.am: Replace all the system-specific threading code with
26619         a single file that uses the new wrapper library
26620
26621 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
26622
26623         * class.c, class.h: add mono_install_trampoline() so that the runtime
26624         can register a function to create a trampoline: removes the ugly
26625         requirement that a runtime needed to export arch_create_jit_trampoline.
26626         * object.h, object.c: added mono_install_handler() so that the runtime
26627         can install an handler for exceptions generated in C code (with
26628         mono_raise_exception()). Added C struct for System.Delegate.
26629         * pedump.c: removed arch_create_jit_trampoline.
26630         * reflection.c: some cleanups to allow registering user strings and
26631         later getting a token for methodrefs and fieldrefs before the assembly
26632         is built.
26633         * row-indexes.h: updates and fixes from the new ECMA specs.
26634
26635 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
26636
26637         * class.h, class.c: add enum_basetype field to MonoClass.
26638         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
26639         to get index in the constant table reated to a field, param or
26640         property.
26641         * reflection.h, reflection.c: handle constructors. Set public-key and
26642         version number of the built assembly to 0.
26643         * row-indexes.h: update from new ECMA spec.
26644
26645 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
26646
26647         * class.h, class.c: add a max_interface_id to MonoClass.
26648         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
26649         since it's used to do that. Added mono_type_type_from_obj().
26650         Make GetType() return NULL instead of segfaulting if the type was not
26651         found. Handle simple arrays in assQualifiedName.
26652         * object.h: add a struct to represent an Exception.
26653         * reflection.c: output call convention in method signature.
26654         Add code to support P/Invoke methods and fixed offsets for fields.
26655
26656 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
26657
26658         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
26659         the value.
26660         * icall.c: use mono_array_addr instead of array->vector: fixes the
26661         reflection image writing.
26662         * reflection.c: init call convention byte to 0 in method signature.
26663         Encode the property signature. Don't output property-related methods
26664         twice. Really process the properties for a type (don't cast a field to
26665         a property, my mom always told me that).
26666         Fix 64 bit issues in pointer alignment in a different and more
26667         readable way.
26668
26669 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
26670
26671         * loader.h: Removed type class from MonoDefaults, added monotype
26672
26673         * loader.c: Loaded MonoType, removed loading of Type
26674
26675         * icall.c (my_mono_new_object): Now returns a System.MonoType,
26676         and fills in System.Type._impl with a RuntimeTypeHandle rather
26677         than the actual MonoClass *
26678
26679         (ves_icall_type_from_handle): change from type_class to
26680         monotype_class
26681
26682         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
26683         implemented
26684
26685         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
26686         implemented
26687
26688         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
26689
26690         (ves_icall_System_Reflection_Assembly_GetType): implemented
26691
26692         (ves_icall_System_MonoType_assQualifiedName): implemented
26693
26694         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
26695
26696 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
26697
26698         * assembly.c (mono_assembly_open): Implement a cache for the
26699         assemblies. 
26700
26701         (mono_assembly_close): only destroy the assembly when the last
26702         reference is gone.
26703         
26704 2001-11-09  Dick Porter  <dick@ximian.com>
26705
26706         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
26707
26708 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
26709
26710         * class.c (mono_class_metadata_init): bug fix: compute the right slot
26711
26712 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
26713
26714         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
26715         from Martin Weindel.
26716         * object.h: add mono_string_chars ().
26717
26718 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
26719
26720         * reflection.c (build_compressed_metadata): Eliminates warnings
26721         and uses 64-bit clean code.
26722
26723         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
26724         (mono_type_equal): Change signature to eliminate warnings.
26725
26726 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
26727
26728         * icall.c, loader.c: remove the internalcall array constructors.
26729         Changes to match the new MonoArray structure.
26730         * object.h, object.c: an array object doesn't allocate an extra
26731         vector. Add mono_array_new_full () to create jagged arrays easily.
26732
26733 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
26734
26735         * metadata.h, metadata.c: add mono_metadata_field_info () to
26736         retreive all the info about a field from vairous tables.
26737         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
26738         * class.h, class.c: augment MonoClassField with more info.
26739         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
26740         policy and load a field's RVA if needed.
26741
26742 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
26743
26744         * class.c (mono_class_metadata_init): create a trampoline for all
26745         virtual functions instead of actually compiling them.
26746
26747 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
26748
26749         * class.h, class.c: include name in MonoClassField.
26750         * class.c: fix fundamental type of System.Object and System.String.
26751         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
26752         tokens in ldtoken.
26753         * icall.c: remove internalcalls for the Reflection stuff that is now
26754         done in C# code.
26755         * loader.c: mono_field_from_memberref () implementation.
26756         * mono-endian.c: thinko (s/struct/union/g).
26757         * object.c, object.h: make the mono_string_* prototypes actually use
26758         MonoString instead of MonoObject.
26759         * reflection.c, reflection.h: updates for changes in the reflection
26760         code in corlib: we use C structures that map to the actual C# classes.
26761         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
26762         fat method header if needed and use the info from the ILGenerator for
26763         methods. Handle fields in types. Misc fixes.
26764
26765 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
26766
26767         * class.c (mono_class_metadata_init): bug fix: always allocate
26768         space for static class data
26769
26770 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
26771
26772         * class.c (mono_compute_relative_numbering): use relative
26773         numbering to support fast runtime type checks.
26774
26775 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
26776
26777         * class.c (mono_class_create_from_typeref): added debugging output
26778         to print class name when MonoDummy is returned instead of real class
26779
26780 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
26781
26782         * class.c (mono_class_metadata_init): interface offset table now
26783         contains pointers into the vtable - this is more efficient for the jit
26784
26785 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
26786
26787         * class.c (mono_class_metadata_init): use a temporary vtable (the
26788         old algorithm only worked for the interpreter, but not for the jit)
26789
26790 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
26791
26792         * loader.c (method_from_memberref): use mono_class_get to get the
26793         class of an array instead of using System.Array directly.
26794         (mono_get_method): also add MEMBERREF methods to the method cache
26795         which usefull for arrays.
26796
26797 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
26798
26799         * pedump.c (arch_compile_method): added to compute vtable entry
26800
26801         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
26802         number of interfaces.
26803         
26804         * class.h: merged MonoArrayClass into MonoClass
26805
26806         * class.c (mono_class_create_from_typedef): compute the vtable size and
26807         allocate space to include the vtable inside MonoClass
26808         (mono_class_metadata_init): initialize the vtable
26809
26810 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
26811
26812         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
26813         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
26814         * image.c: endian fixes by Laurent Rioux.
26815         * object.h, object.c: rename MonoStringObject to MonoString and
26816         MonoArrayObject to MonoArray. Change some function names to conform to
26817         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
26818         guint16* as first argument, so don't use char*.
26819         Provide macros to do the interesting things on arrays in a portable way.
26820         * threads-pthread.c: updates for the API changes and #include <sched.h>
26821         (required for sched_yield()).
26822         * icall.c: updates for the API changes above.
26823         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
26824         platforms that need them.
26825
26826 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
26827
26828         * class.c: set the correct type for all the fundamental
26829         type when loading the class.
26830
26831 2001-10-05  Dick Porter  <dick@ximian.com>
26832
26833         * threads-pthread.c (pthread_mutex_timedlock): Simple
26834         compatibility version for C libraries that lack this call.
26835
26836 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
26837
26838         * class.c: MonoTypes stored in MonoClass are stored as
26839         fundamental MonoTypes when the class represents a
26840         fundamental type (System.Int32, ...).
26841         The TypeHandle return by ldtoken is a MonoType*.
26842         * icall.c: ves_icall_get_data_chunk () write out all the
26843         PE/COFF stuff. Implement ves_icall_define_method (),
26844         ves_icall_set_method_body (), ves_icall_type_from_handle ().
26845         * image.c: properly skip unknown streams.
26846         * loader.h, loader.c: add type_class to mono_defaults.
26847         * metadata.c, metadata.h: export compute_size () as
26848         mono_metadata_compute_size () with a better interface.
26849         Typo and C&P fixes.
26850         * pedump.c: don't try to print the entry point RVA if there is no entry point.
26851         * reflection.c, reflection.h: many cleanups, fixes, output method
26852         signatures and headers, typedef and typeref info, compress the metadata
26853         tables, output all the heap streams, cli header etc.
26854         * row-indexes.h: typo fixes.
26855
26856 2001-10-04  Dick Porter  <dick@ximian.com>
26857
26858         * object.h: Add a synchronisation mutex struct to MonoObject
26859
26860         * object.c (mono_new_object): Initialise the object
26861         synchronisation mutexes
26862
26863         * icall.c: System.Threading.Monitor internal calls
26864         
26865         * threads-pthread.h:
26866         * threads-pthread.c: System.Threading.Monitor internal calls
26867
26868         * threads-types.h: New file, includes the system-specific thread
26869         structures
26870         
26871         * threads-pthread-types.h:
26872         * threads-pthread-types.c: New files, handle pthread-specific
26873         synchronisation types
26874
26875         * threads-dummy-types.h: 
26876         * threads-dummy-types.c: New files of dummy support for
26877         thread-specific types
26878
26879         * metadata.c:
26880         * image.c:
26881         * pedump.c: include mono-endian.h not endian.h
26882         
26883         * Makefile.am: More threads files.
26884         Name mono-endian.h not endian.h
26885
26886 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
26887
26888         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
26889         stuff and implement a few more bits.
26890         * icall.c: a field needs to be dereferenced twice. Do not use the same
26891         name for two variables in the same scope.
26892         * image.c, image.h: cleanups.
26893
26894 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
26895
26896         * class.c (mono_class_metadata_init): bug fix: compute the right size
26897
26898 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
26899
26900         * icall.c: implemented some of the Reflection internalcalls.
26901         * image.c, image.h: start writing out the PE/COFF image.
26902         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
26903         that does the reverse than decode_blob_size ().
26904         * object.c: use mono_metadata_encode_value (). Move here
26905         temporary implementation of mono_string_to_utf8 ().
26906         * rawbuffer.c: make malloc_map static.
26907
26908 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
26909
26910         * metadata.c: fix type comparison for arrays.
26911         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
26912         Added a couple of new classes to monodefaults.
26913         * icall.c: added a couple of Reflection-related internalcalls.
26914         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
26915         Added a byval_arg MonoType to MonoClass.
26916
26917 2001-09-28  Dick Porter  <dick@ximian.com>
26918
26919         * icall.c:
26920         * threads-pthread.h: 
26921         * threads-pthread.c: Implemented internal calls for
26922         LocalDataStoreSlot operations.  Applied mutexes around all shared
26923         data.  Reworked the thread creation and Start() operations to
26924         avoid a race condition.
26925         
26926         * threads-dummy.h:
26927         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
26928
26929 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
26930
26931         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
26932
26933 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
26934
26935         * class.c, loader.c: warn and return NULL instead of erroring out.
26936         * icall.c: added System.AppDomain::getCurDomain().
26937         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
26938
26939 2001-09-25  Dick Porter  <dick@ximian.com>
26940
26941         * threads-pthread.h:
26942         * threads-pthread.c: Implemented timed thread joining and added
26943         System.Threading.Thread::Join_internal internal call
26944
26945         * icall.c: Added System.Threading.Thread::Join_internal internal call
26946
26947         * threads-dummy.h:
26948         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
26949
26950 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
26951
26952         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
26953         mono_string_intern () to implement the semantics of the ldstr opcode
26954         and the interning of System.Strings.
26955         * icall.c: provide hooks to make String::IsIntern and String::Intern
26956         internalcalls.
26957
26958 2001-09-23  Dick Porter  <dick@ximian.com>
26959
26960         * threads-dummy.c: 
26961         * threads-dummy.h: New files of dummy threading routines
26962
26963         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
26964         support code based on system specifics
26965
26966         Rename PTHREAD_LIBS to THREAD_LIBS
26967         
26968 2001-09-23  Dick Porter  <dick@ximian.com>
26969
26970         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
26971         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
26972         internal calls.
26973         (mono_thread_init): Set up a Thread object instance to return when
26974         the main thread calls Thread.CurrentThread
26975         (mono_thread_cleanup): Wait for all subthreads to exit
26976
26977         * icall.c: New internal calls for System.Threading.Thread::Sleep
26978         (including Schedule) and CurrentThread
26979
26980         * threads.h: New file, to insulate thread-specific stuff from the
26981         rest of the code
26982
26983 2001-09-21  Dick Porter  <dick@ximian.com>
26984
26985         * threads-pthread.h: 
26986         * threads-pthread.c: New file, for handling pthreads-style
26987         threading support.  Start() now starts a new thread and executes
26988         the ThreadStart delegate instance.
26989
26990         * icall.c: Added the internalcall for
26991         System.Threading.Thread::Start_internal
26992
26993         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
26994
26995 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
26996
26997         * loader.c: work around the different signatures for delegates
26998         constructors csc generates in compiled code vs the ones compiled in mscorlib.
26999
27000 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
27001
27002         * class.h, class.c: add mono_class_get_field_from_name ().
27003         * *: Fix C comments and other ANSI C issues.
27004
27005 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
27006
27007         * endian.h, assembly.c: fix some endianness issues.
27008
27009 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
27010
27011         * loader.h, load.c: add delegate_class to mono_defaults.
27012         Handle runtime provided methods in mono_get_method ().
27013
27014 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
27015
27016         * loader.c (mono_get_method): use pinvoke for internal call
27017
27018         * icall.c: use pinvoke for internal call
27019
27020         * loader.c (method_from_memberref): set the method name
27021
27022 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
27023
27024         * metadata.c: help the compiler generate better code for
27025         mono_class_from_mono_type ().
27026
27027 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
27028
27029         * class.c (mono_class_metadata_init): delayed computing of the
27030         class size to mono_class_metadata_init ()
27031
27032 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
27033
27034         * class.c, class.h: add an interfaces member to MonoClass.
27035         * image.c, image.h: add assembly_name field to MonoImage
27036         from the assembly table.
27037         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
27038
27039 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
27040
27041         * class.c: Handle Array in mono_class_from_mono_type ().
27042         * metadata.c, pedump.c: some endian fixes.
27043
27044 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
27045
27046         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
27047         * metadata.c: fix small problem introduced with the latest commit.
27048
27049 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
27050
27051         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
27052         We don't need a MonoMetadata pointer anymore to compare signatures in
27053         mono_metadata_signature_equal (), update callers.
27054         Reduced memory usage an number of allocations for MonoMethodHeader and
27055         MonoMethodSignature.
27056
27057 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
27058
27059         * metadata.c: added compare for szarray.
27060
27061 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
27062
27063         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
27064         and add a couple more types to it and mono_defaults. Give an hint on
27065         classes that need implementing in our corlib and are referenced
27066         in mscorlib.
27067
27068 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
27069
27070         * class.h, class.c: keep track if a class is also an Enum.
27071         * loader.c: Implement a couple more types for use in libffi
27072         marshalling. Gives better diagnostics when failing to dlopen
27073         a library. Set method->klass for P/Invoke methods, too.
27074
27075 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
27076
27077         * class.c, class.h: add a MonoType this_arg to MonoClass that
27078         represents a pointer to an object of the class' type that
27079         can be used by the interpreter and later the type cache.
27080         Add best guess alignment info for valuetype objects.
27081
27082 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
27083
27084         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
27085         into MonoType: one less level of indirection and allocation and
27086         simplifies quite a bit of code. Added cache for MonoTypes that are
27087         used frequently, so that we don't need to allocate them all the time.
27088
27089 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
27090
27091         * class.c (mono_class_create_from_typedef): System.Enum is also a
27092         value type, although it does not derive from System.ValueType
27093         (maybe a bug in the ms compiler?)
27094
27095         * metadata.c (mono_type_size): return the right size for value types
27096
27097         * loader.c (mono_get_method): only initialize method header if not abstract
27098
27099         * class.c (mono_class_from_mono_type): use mono_default values. 
27100
27101 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
27102
27103         * *: use MonoClass pointers instead of <type_tokens>
27104         
27105         * class.h: new flag: metadata_inited.
27106
27107         * class.c (mono_class_metadata_init): impl.
27108         (mono_class_instance_size): impl.
27109         (mono_class_data_size): impl.
27110
27111 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
27112
27113         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
27114         MonoClass now has the name and name_space fields. 
27115         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
27116         mono_get_method () takes and optional MonoClass as argument.
27117         Removed mono_typedef_from_name() and added mono_class_token_from_name()
27118         instead that takes advantage of a map from class names to typedef
27119         tokens in MonoImage.
27120
27121 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
27122
27123         * metadata.c: zero is not a valid alignment boundary.
27124         Merge MONO_TYPE_VOID in default decoding code.
27125
27126 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
27127
27128         * image.h: merged MonoMetadata into MonoImage
27129
27130         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
27131         identify the type of elements.
27132
27133 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
27134
27135         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
27136         * cil-coff.h: split MonoMSDOSHeader and add size info.
27137         * image.c: add some consistency checks.
27138         * metadata.c: fix row size computation: one programmer
27139         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
27140         add explanation for the locator routine.
27141         Fix decoding of size in method header.
27142         
27143 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
27144
27145         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
27146         (g_concat_dir_and_file): Bring g_concat_dir_and_file
27147         function from gnome-libs.  This uses the right path separator
27148         based on the OS, and also works around a bug in some systems where
27149         a double slash is not allowed. 
27150         (default_assembly_name_resolver): Use g_concat_dir_and_file
27151         (mono_assembly_open): ditto.
27152
27153 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
27154
27155         * metadata.c (mono_metadata_signature_equal): impl.
27156
27157         * *: void is now a realy MonoType (instead of using NULL)
27158         
27159         * metadata.c (do_mono_metadata_parse_type): use
27160         mono_metadata_parse_type to parse void value.
27161
27162 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
27163
27164         * metadata.c, metadata.h: in the signature and method header store
27165         only the space required for holding the loca vars and incoming arguments.
27166
27167 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
27168
27169         * metadata.c (do_mono_metadata_parse_type): treat void like any
27170         other type (instead of assigning NULL);
27171
27172 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
27173
27174         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
27175
27176 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
27177
27178         * image.c (do_mono_image_open): added a cache for arrays.
27179
27180 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
27181
27182         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
27183         decode a single column from a row in a metadata table and changes
27184         to take advantage of it in the typedef locator (gives a nice speed up).
27185         Store offset info for function params.
27186
27187 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
27188
27189         * image.h (MONO_IMAGE_IS_CORLIB): removed 
27190
27191 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
27192
27193         * assembly.c: how could mono_assembly_close () had ever worked?
27194         * metadata.c, metadata.h: provide offset info for local vars.
27195         Implement mono_type_size () to take care of alignment as well
27196         as size (it was mono_field_type_size in cli/class.c before).
27197
27198 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
27199
27200         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
27201
27202         * assembly.h (CORLIB_NAME): set to corlib.dll
27203
27204         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
27205
27206 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
27207
27208         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
27209         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
27210         tokentype.h: massive namespace cleanup.
27211
27212 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
27213
27214         * metadata.h, metadata.c: decode exception clauses when parsing method header.
27215
27216 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
27217
27218         * metadata.c (mono_metadata_free_type): added check for type !=
27219         NULL (void) before calling mono_metadata_free_type()
27220
27221 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
27222
27223         * metadata.h, row_indexes.h: added header with enumerations to use
27224         to index in the columns from tables in metadata and to decode coded
27225         tokens: we should start using this instead of embedding magic numbers
27226         all over the code.
27227
27228 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
27229
27230         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
27231         Move metadata_t info from cli_image_info_t to MonoImage, where
27232         it's easily accessible. Changed all the uses accordingly.
27233         Added the method and class caches to MonoImage.
27234         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
27235         and mono_metadata_decode_value () signature to be more consistent
27236         with the other parse functions (and simplify code). Taken advantage
27237         of zero-length array allocation with GCC. Removed reduntant (and
27238         wrong) MonoFieldType struct and use MonoParam instead. Changed
27239         mono_metadata_parse_field_type () to use common code for parsing.
27240         Added mono_metadata_typedef_from_field () and
27241         mono_metadata_typedef_from_method () to lookup a typedef index from a
27242         field or method token.
27243         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
27244
27245 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
27246
27247         * metadata.c (mono_metadata_parse_field_type): Implement. 
27248         (do_mono_metadata_parse_type): Split engine from
27249         mono_metadata_parse_type, so that we can create smaller structures
27250         for things that just have one pointer to the MonoType (look at
27251         the MonoFieldType)
27252
27253 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
27254
27255         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
27256         as Jan Gray found out, it is incorrect. 
27257
27258 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
27259
27260         * assembly.c: Implement asssembly loading.  This loads an image
27261         and loads all the referenced assemblies.  Come to think of it, we
27262         could always do lazy loading of the assemblies. 
27263
27264         * image.c (mono_image_open): Keep loaded images in a hashtable.
27265
27266         * image.h (MonoImage): Add reference count.
27267
27268 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
27269
27270         * assembly.c (mono_assembly_open): Keep track of the file name in
27271         case the assembly has no ASSEMBLY table.
27272
27273         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
27274         from get.c here.
27275
27276 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
27277
27278         * metadata.c, metadata.h: decode local vars in method header
27279         parse function. Change callers accordingly.
27280
27281 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
27282
27283         * metadata.h, cil-coff.h: protect against multiple inclusion.
27284         Added some new structures to hold information decoded from metadata:
27285         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
27286         and relevant decoding/free functions.
27287         * metadata.c: implement decoding functions. Add warning for out of bounds
27288         index in mono_metadata_locate(). Implement mono_get_method () to retreive
27289         all the info about a method signature and invocation. Remove check on
27290         uninitialized local var in parse_mh() and fix memory leak.
27291
27292 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
27293
27294         * metadata.h: More macros.
27295
27296         * tokentype.h: New file.
27297
27298 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
27299
27300         * assembly.c: added a consistency check and initialize
27301         some structures with g_new0().
27302         * metadata.c: fixed a couple more bugs in table size computation
27303         and add other checks for out-of bound access to metadata.
27304
27305 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
27306
27307         * metatada.c: fix bugs computing table sizes. Spew a
27308         warning when index in string heap is out of bounds.
27309
27310 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
27311
27312         * metadata.h: Add a couple of macros to manipulate tokens. 
27313
27314 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
27315
27316         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
27317         cli_section_tables).
27318
27319 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
27320
27321         * metadata.c (mono_metadata_user_string): New function, provides
27322         access to the UserString heap. 
27323
27324 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
27325
27326         * metadata.c: Add inline documentation.
27327
27328 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
27329
27330         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
27331         files. 
27332
27333 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
27334
27335         * typeattr.h: New file, TypeAttribute flags. 
27336
27337 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
27338
27339         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
27340         mono_assembly_ensure_section): Section loading code.
27341         (load_section_tables): Load the sections.
27342
27343         * mono/metadata/metadata.c (mono_metadata_locate_token,
27344         mono_metadata_locate): Functions to locate the information
27345         definition given a token or a table and an index.
27346         (mono_metadata_compute_table_bases): New.
27347         (compute_size): New function to compute the sizes of the various
27348         tables.
27349
27350         * mono/metadata/metadata.h: Finish listing the different index
27351         types. 
27352
27353         * mono/metadata/pedump.c: Improve to dump new information.
27354
27355 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
27356
27357         * mono/metadata/metadata.c: Entered all the tables matching
27358         Beta2. 
27359
27360         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
27361
27362
27363