2007-12-03 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
2
3         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
4
5         * class.c (mono_class_get_field_default_value): New helper function to initialize
6         field->def_type and field->data.
7
8 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
9
10         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
11         the general one.
12
13         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
14
15         * marshal.c: Avoid depending on delegate->method_info being set.
16
17         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
18         
19         * object.c (mono_delegate_ctor): Set delegate->method.
20
21         * object-internals.h (struct _MonoDelegate): Add 'method' field.
22
23         * appdomain.c: Bump corlib version.
24
25 2007-11-27  Raja R Harinath  <harinath@gmail.com>
26
27         * metadata.c (mono_generic_inst_equal_full): Short-circuit
28         equality check if we're comparing canonicalized MonoGenericInsts.
29
30 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
31
32         * class.c (generic_array_methods): Call mono_class_setup_methods () before
33         accessing class->methods.
34
35 2007-11-22  Dick Porter  <dick@ximian.com>
36
37         * threads.c: Ensure that the synch_cs is set before trying to use
38         it.
39
40 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
41
42         * profiler.c: r89126 broke the statistial profiler, unbreak.
43
44 2007-11-22  Martin Baulig  <martin@ximian.com>
45
46         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
47
48         * mono-debug.c
49         (mono_debug_debugger_version): Bump to 3.
50         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
51         -> mono_debugger_class_initialized().
52
53         * mono-debug-debugger.c
54         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
55
56         * class.c
57         (mono_debugger_start_class_init_func): Removed.
58         (mono_debugger_class_loaded_methods_func): Added.
59         (mono_class_setup_methods): Call it here.
60
61 2007-11-22  Martin Baulig  <martin@ximian.com>
62
63         * mono-debug.c
64         (mono_debug_add_delegate_trampoline): New public method.
65         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
66
67         * mono-debug.h
68         (MonoSymbolTable): Added `global_data_table'.
69         (MonoDebuggerTypeKind): Removed.
70
71 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
72
73         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
74         these methods.
75
76         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
77         
78 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
79
80         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
81
82 2007-11-20  Martin Baulig  <martin@ximian.com>
83
84         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
85
86         * mono-debug-debugger.c
87         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
88         (mono_debugger_remove_breakpoint): Likewise.
89         (mono_debugger_check_breakpoints): Likewise.
90         (mono_debugger_register_class_init_callback): New public method.
91         (mono_debugger_remove_class_init_callback): Likewise.
92         (mono_debugger_add_type): Likewise.
93
94         * mono-debug-debugger.h
95         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
96
97 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
98
99         * class.c: more interface implementations needed for the
100         array enumerator (fixes bug #341112).
101
102 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
103
104         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
105         fix ParamName of ArgumentNullExceptions.
106
107 2007-11-17  Miguel de Icaza  <miguel@novell.com>
108
109         * reflection.c (mono_reflection_encode_sighelper): Generate the
110         modopts and modreqs.   I have a useless test that crashes monodis,
111         but that shows the code working.
112
113 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
114
115         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
116         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
117
118 2007-11-15  Dick Porter  <dick@ximian.com>
119
120         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
121         When joining a thread, it's the thread that's calling Join that
122         gets WaitSleepJoin state not the target.  Fixes the standalone
123         test case in bug 334740, and hopefully the whole bug too.
124
125 2007-11-15  Dick Porter  <dick@ximian.com>
126
127         * process.c: Read file version info from the files pointed at by
128         process modules, not the current process.  Fixes bug 315969.
129
130         Use windows typedef names in some places to fix warnings on the
131         windows build.
132
133 2007-11-15  Mark Probst  <mark.probst@gmail.com>
134
135         * image.c, metadata-internals.h: Added a generic_class_cache hash
136         to MonoImage for looking up generic classes when sharing generics.
137
138 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
139
140         * sgen-gc.c: warning cleanups.
141
142 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
143
144         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
145         inherited properties.
146
147 2007-11-14  Mark Probst  <mark.probst@gmail.com>
148
149         * object.c, class-internals.h: Added more information to the
150         runtime generic context.
151
152 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
153
154         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
155         instead of just the target method. Generalize the abstract method handling to
156         handle any non-static method.
157
158         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
159         mono_marshal_get_delegate_invoke () signature change.
160
161 2007-11-13  Mark Probst  <mark.probst@gmail.com>
162
163         * class.c, class-internals.h: Made
164         mono_type_get_basic_type_from_generic () public.  Fixed member
165         access check for shared generics.
166
167         * loader.c: Don't insert field into field cache if it's part of a
168         non-inflated generic class.
169
170         * domain.c, domain-internals.h: The generic sharing context is now
171         part of the jit info data structure.  Added two accessor
172         functions.
173
174 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
175
176         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
177         the array Get/Set/Address methods, since the JIT inlines them.
178
179         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
180
181         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
182         (mono_image_init): Initialize runtime_invoke_direct_cache.      
183
184         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
185         mono_marshal_get_delegate_invoke signature change.
186
187         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
188         an additional argument. Add support for invoking abstract methods.
189
190         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
191
192         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
193
194 2007-11-09  Mark Probst  <mark.probst@gmail.com>
195
196         * class.c: Do field layout for open generic classes as well.
197
198 2007-11-09  Mark Probst  <mark.probst@gmail.com>
199
200         * gc.c, gc-internal.h: Don't finalize threadpool threads with
201         other objects, because the threadpool is still around.  Put them
202         in a list instead and after finalizing all other objects in the
203         root domain shut down the thread pool and then finalize the
204         threads.  Fixes bug #337383.
205
206         * threads.c, thread-types.h: New mono_thread_create_internal()
207         function for marking a thread with the threadpool flag before it
208         started.  Set synch_cs to NULL after freeing it.
209
210         * threadpool.c: Mark threadpool threads before they start.
211
212 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
213
214         * reflection.h, reflection.c: don't export random functions
215         and lazy load dbnull and missing objects.
216
217 2007-11-07  Jonathan Chambers <joncham@gmail.com>
218
219         * class.c: Initialize COM types if COM interfaces
220         are present (not just COM classes).
221         
222         Code is contributed under MIT/X11 license.
223
224 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
225         * reflection.c:
226         create_dynamic_mono_image: hook module profiler events (dynamic case).
227         mono_image_basic_init: hook assembly profiler events (dynamic case).
228
229 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
230         * profiler.c:
231         simple_appdomain_unload: completely terminate the profiler
232         instead of only processing the statistical samples.
233         simple_shutdown: make sure this is really called exactly once,
234         even in multithreaded applications, and always listen to
235         appdomain events.
236         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
237         here, the "[un]load" functions will do it.
238         Fixes bugs #333791 and #325261.
239
240 2007-11-07  Geoff Norton  <gnorton@novell.com>
241
242         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
243         rather than depend on __APPLE__.
244
245 2007-11-07  Mark Probst  <mark.probst@gmail.com>
246
247         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
248
249 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
250
251         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
252         UTF16 MonoString. Fix the crash from bug #335488
253
254 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
255
256         * marshal.c: Correct (for non-Win32 OS) length != size in 
257         mono_string_from_bstr. Fix #339530.
258
259 2007-11-06  Geoff Norton  <gnorton@novell.com>
260
261         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
262         to succeed
263
264 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
265
266         * process.c: Added run-time GetProcessId API detection for Windows.
267
268 2007-11-04  Miguel de Icaza  <miguel@novell.com>
269
270         * reflection.c  (mono_param_get_objects): If a parameter has the
271         attribute [System.Runtime.InteropServices.Optional] we should
272         set the DefaultValue of the ParameterInfo to be
273         System.Reflection.Missing instead of DBNull.
274
275         See bug #339013.
276
277         (mono_get_reflection_missing_object): New method,
278         returns the System.Reflection.Missing.Value singleton instance.
279
280 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
281
282         * culture-info-table.h : regenerated.
283
284 2007-11-02  Jonathan Chambers <joncham@gmail.com>
285
286         * icall.c: Use GetEnvironmentStrings on windows
287         so we are using the same environment block as 
288         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
289         #333740.
290         
291         Code is contributed under MIT/X11 license.
292
293 2007-10-31  Martin Baulig  <martin@ximian.com>
294
295         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
296
297         * mono-debug-debugger.h
298         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
299
300 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
301
302         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
303         classes.
304
305 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
306
307         * culture-info-table.h : regenerated.
308
309 2007-10-30  Robert Jordan  <robertj@gmx.net>
310
311         * icall-def.h, icall.c:
312         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
313
314         Code is contributed under MIT/X11 license.
315
316 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
317
318         * class.c (mono_class_setup_vtable): Find the inflated methods in the
319         inflated class instead of inflating them again.
320         
321         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
322         dynamic case.
323
324         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
325         Call setup_supertypes () after klass->parent is set.
326         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
327
328         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
329         for inflated instances of not yet created dynamic generic classes.
330         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
331         times from inflated_method.
332         (methodbuilder_to_mono_method): Ditto.
333
334 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
335
336         * gc.c: code cleanup and removed old untested option of not creating the
337         finalizer thread.
338
339 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
340
341         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
342         creating a jump trampoline for dynamic methods.
343
344 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
345
346         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
347         generic TypeBuilders when called from another method of the same type (bug #335131).
348
349
350 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
351
352         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
353         doesn't seem to work perfectly.
354         
355         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
356         called multiple times.
357         (methodbuilder_to_mono_method): Ditto.
358         (resolve_object): Inflate FieldBuilder's.
359
360 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
361
362         * string-icalls.c, string-icalls.h, appdomain.c: patch from
363         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
364         RemoveEmptyEntries in the string.Split implementation (bug #322375).
365
366 2007-10-26  Dick Porter  <dick@ximian.com>
367
368         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
369         Thread initialisation changes
370
371 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
372
373         * verify.c: fix compatibility check between arrays and System.Array
374
375 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
376
377         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
378         too. Fixes #336999.
379
380 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
381
382         * object.c (mono_value_box): Use typed allocation here.
383
384 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
385
386         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
387         trampoline instead of compiling the method right away.
388
389         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
390
391 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
392
393         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
394         related fields for dynamic classes. Fixes #334493.
395
396 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
397
398         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
399         
400         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
401
402         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
403         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
404
405         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
406
407         * reflection.c (create_generic_typespec): Initialize klass->generic_container
408         if needed.
409         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
410
411 2007-10-18  Jonathan Chambers <joncham@gmail.com>
412
413         * marshal.c: Use correct key when removing item
414         from ccw_hash.
415         
416         Code is contributed under MIT/X11 license.
417
418 2007-10-17  William Holmes  <billholmes54@gmail.com>
419
420         *marshal.c: Adding a case to marshal booleans to U1
421
422         Code is contributed under MIT/X11 license.
423
424 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
425
426         * class.c (mono_class_from_name): Search the modules compromising dynamic
427         assemblies. Fixes #331601.
428
429 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
430
431         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
432         exception if the type name contains an assembly component. Fixes #334203.
433
434         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
435         modules inside dynamic assemblies. Fixes #334200.
436         
437         * reflection.c: Set image->public_key and image->public_key_length;
438
439         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
440         fields.
441
442         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
443         
444 2007-10-16  Mark Probst  <mark.probst@gmail.com>
445
446         * metadata.c: Implemented correct comparing of generic classes.
447         An inflated generic class can be equal to a non-inflated one if it
448         is inflated with generic type variables as type arguments.  Fixes
449         bug #333798.
450
451 2007-10-15  Dick Porter  <dick@ximian.com>
452
453         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
454         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
455         81646.
456
457         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
458         instead of a monitor lock.  This means that monitor_try_enter and
459         co can set the thread state safely.
460         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
461         thread_interrupt_requested, so interrupt actually works.
462
463         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
464         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
465         state accessor function
466
467 2007-10-15  Martin Baulig  <martin@ximian.com>
468
469         * mono-debug.h
470         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
471         the debugger with the current runtime.
472
473 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
474
475         * object.c, object-internals.h: added the ability to set a single
476         trampoline for all the slots in a vtable.
477
478 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
479
480         * marshal.c: deal with a possible race condition during multicast
481         delegate invocation.
482
483 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
484
485         * class.c: ensure value type methods don't have the synchronized
486         flag set.
487
488 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
489
490         * string-icalls.c, string-icalls.h: reverted unapproved patch that
491         breaks the build.
492
493 2007-10-11  Joel Reed  <joelwreed@comcast.com>
494
495         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
496         to take an options parameter so that empty entries can be removed during
497         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
498
499 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
500
501         * marshal.c: make sure we don't store the signature from a dynamic
502         method into the runtime invoke cache (bug #327189).
503
504 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
505
506         * marshal.c: make sure the wrapper methods are properly initialized.
507
508 2007-10-11  Mark Probst  <mark.probst@gmail.com>
509
510         * metadata.c, metadata-internals.h: Generalized
511         mono_type_stack_size() to mono_type_stack_size_internal() which
512         takes an additional argument specifying whether it allows open
513         types.
514
515 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
516
517         * verify.c (do_invoke_method): handle typedbyref params
518         correctly and check for unverifiable return values.
519
520         * verify.c (do_newobj): fix a warning.
521
522 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
523
524         * verify.c: don't tread typedbyref as allways unverifable,
525         so uses, like (ld/st)loc.0 are valid. verify for the cases
526         that it matters, like boxing related operations.
527
528 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
529
530         * verify.c: add verification of the newobj opcode. verification
531         of delegate instantation still missing due ldftn and virldftn not
532         pushing the function type on stack
533
534 2007-10-08  Mark Probst  <mark.probst@gmail.com>
535
536         * class-internals.h: Runtime generic context data structure
537         definition.
538
539         * object.c: Initialization of runtime generic context at runtime
540         vtable creation time.
541
542 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
543         * class.c (mono_class_create_from_typedef,
544         mono_class_from_generic_parameter, mono_ptr_class_get,
545         mono_fnptr_class_get, mono_bounded_array_class_get)
546         * domain.c (mono_domain_create, mono_domain_free)
547         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
548         * image.c (do_mono_image_load, mono_image_close):
549         Hooked up load-unload profiler events.
550
551 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
552
553         * domain.c: track statistics about the actual amount of native code
554         allocated.
555
556 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
557
558         * class.c: the valuetype enumerators don't have the additional
559         supertypes interfaces.
560
561 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
562
563         * class.c: need more interfaces setup for the IEnumerator<T>
564         object created for arrays (tests/ienumerator-interfaces.2.cs).
565
566 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
567
568         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
569
570 2007-10-05  Alp Toker  <alp@atoker.com>
571
572         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
573         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
574         #315863.
575
576 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
577
578         * verify.c (verify_type_compatibility_full): verification of
579         compatibility improved, validates correctly non-strict checks between
580         native int and I4 types different than (unsigned)int32.
581
582         * verify.c (do_store_indirect): added, do all verification of
583         ldind.X opcodes. 
584
585         * verify.c (get_load_indirect_mono_type): renamed to
586         get_indirect_op_mono_type, as it now returns the MonoType for 
587         ldind.X and stind.X opcodes.
588
589 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
590
591         * reflection.c: Fix the encoding of generic type definition for
592         TypeBuilders.
593
594         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
595         mono_image_typedef_or_ref but allows to specify if typespec lookups should
596         be made. Typespec check is done prior to typeref cache lookup.
597
598         * reflection.c (mono_image_typedef_or_ref): now just delegate to
599         mono_image_typedef_or_ref_full.
600
601         * reflection.c (encode_generic_class): encode the generic class
602         directly instead of calling encode_type.
603
604         * reflection.c (encode_type): encode the generic type definition
605         MonoClass as a generic instantiation.
606
607         * reflection.c (create_typespec): cache typespec tokens in
608         the assembly->typespec cache. Don't create typespec for a generic
609         instance MonoClass. Create typespec for the generic type defintion.
610
611         * reflection.c (create_generic_typespec): encode the generic
612         class directly instead of calling encode_type.
613
614         * reflection.c (mono_image_create_token): encode the generic
615         type definition not using a typespec for MonoType instances.
616
617
618 2007-10-04  Raja R Harinath  <rharinath@novell.com>
619
620         Fix #328812
621         * class.c (mono_image_init_name_cache): Don't return nested
622         'protected internal' classes.
623         (mono_class_from_name_case): Likewise.
624
625 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
626
627         * icall-def.h, icall.c : get_bundled_machine_config() is now the
628           common function used by both DefaultConfig in System.dll and
629           InternalConfigurationHost in System.Configuration.dll.
630
631 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
632
633         * class.c: automatically add to vectors only a few essential explicit
634         generic interfaces. The rest of the interfaces that arrays should
635         provide are currently implicitly added (but still not lazily, see the
636         design in the discussion of bug#325495 for the details of what is
637         needed for that). Additionally, implicit interfaces are assigned the
638         same vtable slot as the explicit interfaces (as they are compatible):
639         this enables huge memory savings since we don't need to instantiate
640         as many memthods and as large vtables anymore. Also, Since
641         GetEnumerator<T> returns an instance of a type that is required to
642         support a similarly large set of interfaces as arrays, we add
643         implicit interfaces and interface offset sharing support to those
644         types, too. This change adds all the required interfaces so that
645         the anonarray.cs test case in the bug report works (we don't add
646         all the interfaces to arrays of arrays 3-level deep and more because
647         of the memory requirements explained in the bug and since they are much
648         less common: the lazy-loading support will enabled them to work, too).
649
650 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
651
652         * verify.c (merge_stacks): major clean up, all type compatibility
653         checks are done by verify_type_compatibility. This fix my earlier lack
654         of understanding of the CLR type system and merge_stacks no longer looks
655         scary.
656
657         * verify.c: fixed some bad spelling.
658
659 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
660
661         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
662         a given stack slock.
663         
664         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
665         verify_type_compatibility_full. This removed a near indentical function and fixed
666         handling of Int32 and IntPtr across all opcodes.
667
668 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
669
670         * class.c: only vectors have the additional generic interfaces.
671
672 2007-10-01  Jonathan Chambers <joncham@gmail.com>
673
674         * mono-config.c: Use g_strcasecmp instead of
675         strcasecmp like everywhere else to fix
676         compilation with MSVC.
677         
678         Code is contributed under MIT/X11 license.
679
680 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
681
682         * object.c, object-internals.h: refactored the IMT code to enable
683         building a single slot at a time and lazily creating the IMT trampolines
684         and thunks.
685
686 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
687
688         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
689
690         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
691         Fixes #328501.
692         
693 2007-09-29  Raja R Harinath  <harinath@gmail.com>
694
695         * loader.c (method_from_methodspec): Rearrange to avoid
696         un-necessary exposition.  Don't assert out if the method's
697         declaring type is a generic type definition.
698
699 2007-09-28  Martin Baulig  <martin@ximian.com>
700
701         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
702
703 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
704
705         * class-internals.h: optimize field layout of MonoClass to
706         requires less cachelines at runtime and save a few bytes on 64 bit
707         systems.
708
709 2007-09-28  Jb Evain  <jbevain@novell.com>
710
711         * reflection.c: when encoding type names in custom attributes,
712         if the type is a closed generic type, its generic arguments
713         have to be serialized as AssemblyQualifiedName, so that when
714         they are deserialized, it's possible to re-create them properly.
715         Fixes #329450.
716
717
718 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
719
720         * object.c, class-internals.h: added delegate-creation counter.
721
722 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
723
724         * class.c: cleanup of the code that synthetizes interfaces for
725         arrays in 2.0: saves quit a bit of corlib mempool memory.
726         Code to fix bug #325495 ifdeffed out for now until the issues
727         with memory usage and O(n^2) behaviour are fixed.
728
729 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
730
731         * marshal.c: when possible, do not duplicate the name of the methods
732         in the method builder and in the generated MonoMethod.
733
734 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
735         * verify.c: added support for type checking ldind_* opcodes.
736
737 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
738
739         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
740         which is used to distinguish the fully open instantiation of a TypeBuilder
741         with the rest. This temporary hack is required to restore the property that
742         the fully open instantiation is the same type of the generic type definition.
743
744         * class-internals.h (mono_generic_class_is_generic_type_definition):
745         new function as part of the internal API.
746
747         * class.c (inflate_generic_type): return NULL when the generic inst is
748         fully open. The fully open generic type is now the same as the generic type
749         definition for non TypeBuilder types.
750
751         * class.c (mono_generic_class_get_class): removed assert since it is
752         no longer valid, gklass->cached_class can point to the generic type definition.
753
754         * class.c (mono_generic_class_is_generic_type_definition): new.
755
756         * metadata.c (mono_generic_class_hash): added is_tb_open field
757         to the hash calculation.
758
759         * metadata.c (free_generic_class): if the generic class is associated
760         with the generic type definition, its field will come from the mempool and
761         must not be freed.
762
763         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
764         new, this function identifies the corner case of a TypeBuilder fully open
765         instantiation.
766
767         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
768         for lookup. Set gclass->cached_class to be the container class in case of
769         the fully open instantiation of non TypeBuilder types.
770
771         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
772         to compare generic classes.
773
774         * reflection.c (method_encode_methodspec): remove assert that
775         no longer is valid.
776
777         * reflection.c (mono_reflection_generic_class_initialize): add
778         an aditional assert to ensure the proper type is used.
779
780 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
781
782         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
783         to enjoy it.
784
785 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
786
787         * verify.c (push_arg): Fixed support for ldarga
788         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
789         MonoType used as first arg in case of instance calls.
790
791 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
792
793         * verify.c: Support for verifying VAR and MVAR types, 
794
795 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
796
797         * icall.c (ves_icall_get_property_info): Set the reflected type of the
798         accessors correctly.
799
800 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
801
802         * threads.c: support OSX and other systems in
803         mono_thread_get_stack_bounds (bug #328026).
804
805 2007-09-25  Martin Baulig  <martin@ximian.com>
806
807         * mono-debug.h
808         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
809
810 2007-09-24  Martin Baulig  <martin@ximian.com>
811
812         * mono-debug.h
813         (MonoDebugClassEntry): Moved the definition of this struct into
814         mono-debug.c to make it private.
815
816         * mono-debug.c
817         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
818         type table per symbol file, we don't need to store the symfile id
819         any longer.
820
821 2007-09-24  Martin Baulig  <martin@ximian.com>
822
823         Create one type table per symbol file, since a `MonoClass *' gets
824         invalid when its image is unloaded.
825
826         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
827         (MonoDebugHandle): Added `type_table'.
828
829 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
830
831         * mempool.c, mempool.h: added mono_mempool_new_size () API
832         to be able to specify a smaller initial size for the pool.
833         Adjusted the code to slowly increase pool size before using
834         the previous default size.
835         * image.c: use a small initial size for image mempools.
836
837 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
838
839         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
840         Fixes ##320990.
841
842         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
843         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
844
845 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
846
847         * metadata.c (mono_type_create_from_typespec): Remove an invalid
848         free. Fixes #327438.
849
850 2007-09-21  Raja R Harinath  <harinath@gmail.com>
851
852         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
853         generic instantiations, etc.
854         <MONO_TYPE_ARRAY>: Likewise.
855
856 2007-09-21  Martin Baulig  <martin@ximian.com>
857
858         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
859         these structs were never defined.
860         (MonoDebugHandle): Removed the `_priv' field, it was never used.
861
862 2007-09-21  Martin Baulig  <martin@ximian.com>
863
864         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
865
866 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
867
868         * image.c: removed the guid hash tables: we can get the same info
869         without the additional memory usage hit (partially fixes also bug #327052).
870
871 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
872
873         * profiler.h, profiler-private.h, profiler.c: add a new profiler
874         event to handle unloading methods. After the event is called, the
875         corresponding MonoMethod* must be considered invalid.
876         * loader.c (mono_free_method): call the new mono_profiler_method_free
877         event.
878
879 2007-09-20  Mark Probst  <mark.probst@gmail.com>
880
881         * domain-internals.h: New flag in MonoJitInfo which marks shared
882         generic methods.  New hash table (shared_generics_hash) in
883         MonoDomain to keep track of shared generic methods.  Prototypes
884         for functions to register and lookup shared generic methods.
885
886         * domain.c: Support for registering and looking up shared generic
887         methods via a hash table (shared_generics_hash) in MonoDomain.
888
889         * class-internals.h: New exception to signal failure of shared
890         compilation of a generic method.  New counters for generics
891         sharing in MonoStats.
892
893 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
894
895         * image.c, metadata-internals.h: don't keep a file descriptor open
896         for loaded assemblies (bug#325988).
897
898 2007-09-19  Raja R Harinath  <rharinath@novell.com>
899
900         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
901         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
902         use the corresponding datatypes.
903         (type_in_image): Update to changes.
904         (CleanForImageUserData): Simplify.
905         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
906         Avoid quadratic behaviour in handling the "stolen" list by
907         separating the filter predicate out, and by prepending the stolen
908         items rather than appending them.
909         (steal_ginst_in_image): Likewise.
910         (mono_metadata_clean_for_image): Update to changes.
911
912 2007-09-19  Martin Baulig  <martin@ximian.com>
913
914         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
915
916 2007-09-19  Martin Baulig  <martin@ximian.com>
917
918         * mono-debug.c (mono_debug_cleanup): Don't call
919         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
920
921 2007-09-19  Raja R Harinath  <harinath@gmail.com>
922
923         Fix crash on 'make run-test' in mcs/errors
924         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
925         Avoid more potential allocations in mono_class_from_mono_type.
926         (ginst_in_image): Update to changes.
927         (gclass_in_image): Rearrange slightly.
928
929 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
930
931         * class.c (mono_class_init): Move the code that sets up class->methods to 
932         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
933
934         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
935         canonical instance of an inflated generic signature.
936         (mono_type_create_from_typespec): Remove an invalid free.
937
938         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
939
940 2007-09-18  Marek Habersack  <mhabersack@novell.com>
941
942         * domain-internals.h: added a declaration of the
943         mono_assembly_load_full_nosearch internal function.
944
945         * assembly.c (mono_assembly_load_with_partial_name): use
946         mono_try_assembly_resolve return value properly.
947         (mono_assembly_load_full_nosearch): copied the function body from
948         mono_assembly_load_full, without the code to invoke assembly
949         search hooks.
950         (mono_assembly_load_full): calls the above new function and if the
951         assembly is not resolved, invokes the search hooks.
952
953         * appdomain.c (mono_runtime_init): restore the global postload
954         assembly search handlers.
955
956 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
957
958         * class.c (mono_class_init): Make sure class->methods and class->properties
959         are never NULL in the generics case.
960
961         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
962
963 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
964
965         * metadata.c (free_generic_class): Disable some code to fix the build.
966
967         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
968
969         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
970         from the image mempool.
971
972         * metadata.c (free_generic_class): Free more data from the inflated class.
973
974         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
975
976         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
977         mempool.
978         (mono_type_create_from_typespec): Ditto.
979
980         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
981         MonoImage to the caller.
982         (mono_init_internal): Save the opened image in a global variable.
983         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
984
985         * reflection.c (resolve_object): Fix a leak.
986
987         * metadata.c: Fix the freeing of data in the generics caches.
988         
989         * metadata.c (free_generic_inst): Comment this out to fix the build.
990         (free_generic_class): Ditto.
991
992         * metadata.c: Free cached generic methods, instantinations and classes when
993         they are removed from the caches.
994         (mono_metadata_free_type): Free the type itself.
995
996         * class.c: Free the result of mono_class_inflate_generic_type () in a few
997         places.
998
999 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
1000
1001         * boehm-gc.c: restrict managed allocs to __thread supporting
1002         architectures.
1003
1004 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
1005
1006         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
1007         (mono_generic_class_get_class): Fix a leak.
1008
1009         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
1010         mono_metadata_free_type ().
1011         (mono_metadata_inflate_generic_inst): Fix a leak.
1012
1013 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
1014
1015         * mono-debug.c (free_header_data): Fix a leak missed earlier.
1016
1017         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
1018         mempool.
1019
1020         * mono-debug.c (mono_debug_close_image): Fix call to 
1021         g_hash_table_remove ().
1022
1023 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
1024
1025         * icall-def.h: redirect all the string ctor to the managed
1026         CreateString () methods.
1027         * string-icalls.c, string-icalls.h: removed dead code for string
1028         ctors and icalls.
1029
1030 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
1031
1032         * mono-debug.c: Fix memory leaks.
1033
1034 2007-09-14  Jonathan Chambers <joncham@gmail.com>
1035
1036         * threads-types.h: Implement mono_hazard_pointer_set and 
1037         mono_hazard_pointer_clear macros using do/while(0) to fix
1038         compilation with MSVC.
1039         
1040         Code is contributed under MIT/X11 license.
1041
1042 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
1043
1044         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
1045         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
1046
1047 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
1048
1049         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
1050         icalls.
1051
1052 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
1053
1054         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
1055         managed-code allocated as well.
1056
1057 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
1058
1059         * class.c (mono_class_is_assignable_from): Add support for generic variance.
1060
1061 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
1062
1063         * boehm-gc.c: fixed the build after the AOT changes.
1064
1065 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
1066
1067         * wrapper-types.h: Add an ALLOC wrapper type.
1068
1069         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
1070         reference managed allocator methods.
1071
1072 2007-09-12  Marek Safar  <marek.safar@gmail.com>
1073
1074         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
1075         of Type array and not MonoType, a fix suggested by Hari.
1076         
1077 2007-09-12  Jonathan Chambers <joncham@gmail.com>
1078
1079         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
1080         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
1081         
1082         Code is contributed under MIT/X11 license.
1083
1084 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
1085
1086         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
1087
1088 2007-09-12  Marek Habersack  <mhabersack@novell.com>
1089
1090         * image.c (do_mono_image_open): if assembly file fails to open and
1091         MONO_IOMAP is in effect, try to find the path in a
1092         case-insensitive way.
1093
1094         * appdomain.c (mono_runtime_init): do not install postload hooks -
1095         tests show that MS.NET doesn't use anything of that sort to
1096         trigger the AppDomain.AssemblyResolve event.
1097         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
1098         made non-static.
1099         (mono_runtime_init): init portability helpers here.
1100
1101         * assembly.c (mono_assembly_load_with_partial_name): if other   
1102         attempts fail, trigger the AppDomain.AssemblyResolve event handler
1103         to resolve the assembly.
1104
1105         * domain-internals.h: added mono_try_assembly_resolve and marked
1106         it as internal.
1107
1108 2007-09-11  Jb Evain  <jbevain@novell.com>
1109
1110         * object-internals.h (MonoReflectionDynamicMethod): add
1111         a `MonoReflectionType *owner` field. The owner is used
1112         * reflection.c:
1113         (mono_reflection_create_dynamic_method): use the owner of the dynamic
1114         method as the class declaring the dynamic method.
1115         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
1116         dynamic method to the declaring type of the methodbuilder.
1117
1118 2007-09-11  Mark Probst  <mark.probst@gmail.com>
1119
1120         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
1121         rules for calling methods via reflection.
1122
1123 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
1124
1125         * reflection.c (resolve_object): Add support for MonoGenericClass. 
1126         Inflate MonoType's.
1127
1128 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
1129
1130         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
1131         provide a managed method that does fast allocations without needing
1132         a managed->unmanaged transition. Boehm GC implementation currently
1133         enabled for ptrfree objects on sane architectures.
1134
1135 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
1136
1137         * marshal.c, marshal.h: exported a couple of useful functions and
1138         added mono_mb_get_label () to easily handle backward branches.
1139
1140 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
1141
1142         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
1143
1144 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
1145
1146         * loader.c (find_method): Fixed the regression introduced while
1147         fixing bug #81466.
1148
1149 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
1150
1151         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
1152         well.
1153         
1154         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
1155         icall.c reflection.c: Pass a MonoGenericContext argument to 
1156         mono_lookup_dynamic_token ().
1157
1158         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
1159         #82744.
1160         
1161 2007-09-09  Robert Jordan  <robertj@gmx.net>
1162
1163         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
1164         for generic methods.
1165
1166         * object.c (mono_object_get_virtual_method): Handle generic methods.
1167         Fixes bug #78882.
1168
1169         Code is contributed under MIT/X11 license.
1170
1171 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
1172
1173         * image.c: fix locking in mono_image_load_file_for_image ().
1174
1175 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
1176
1177         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
1178         used only as a cache: added an icall to fill it.
1179
1180 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
1181
1182         * reflection.h: exposed mono_reflection_free_type_info
1183         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
1184         since mono_reflection_bind_generic_parameters makes a copy of it.
1185         * reflection.c (free_type_info): subinfos should be freed.
1186         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
1187         made non static.
1188         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
1189         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
1190         this fixes #82695 and #81726.
1191    
1192
1193 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
1194
1195         * process.h, process.c:  added support for user profile/info in
1196           ProcessStartInfo. For now only Windows works.
1197
1198 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
1199
1200         * metadata.c: consider the generic arguments when comparing
1201         signatures (bug #82614).
1202
1203 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
1204
1205         * cil-coff.h, image.c: updated assembly loader to cope with the
1206         PE32+ 64 bit file format.
1207
1208 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
1209
1210         * assembly.c, class.c, domain.c, loader.c: remove useless
1211         inclusion of cil-coff.h.
1212
1213 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
1214
1215         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
1216         if interface is marked with CoClassAttribute. 
1217    
1218         Code is contributed under MIT/X11 license.
1219
1220 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
1221
1222         * sgen-gc.c: ensure no object from the to space is copied again or finalized
1223         if it's seen twice in major collections.
1224
1225 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
1226
1227         * sgen-gc.c: big objects are not copied to the gray area, but they
1228         need to be considered for scanning, too, if they are brought alive
1229         by an object ready for finalizations or a survived one.
1230
1231 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
1232
1233         * sgen-gc.c: properly account the number of disappearing links when
1234         they are nullified.
1235
1236 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
1237
1238         * sgen-gc.c: share the code to scan the registered roots between the
1239         different types of collections.
1240
1241 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
1242
1243         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
1244
1245 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
1246
1247         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
1248         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
1249
1250 2007-08-28  Mark Probst  <mark.probst@gmail.com>
1251
1252         * security-manager.c (mono_security_manager_get_methods):
1253         LinkDemandSecurityException now has 2 arguments instead of 3.
1254
1255 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
1256
1257         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
1258         platforms which need it.
1259
1260 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
1261
1262         * sgen-gc.c: unregister thread data structures with a pthread_key_t
1263         dtor.
1264
1265 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
1266
1267         * threads.c: free the thread static data on thread exit.
1268
1269 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
1270
1271         * class.c: walk the hierarchy to find the generic definition for
1272         a class (fixes runtime part of bug #82498).
1273
1274 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
1275
1276         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
1277         ...
1278
1279         * image.c (mono_image_close): Here. Hopefully fixes #82510.
1280
1281 2007-08-24  Mark Probst  <mark.probst@gmail.com>
1282
1283         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
1284
1285 2007-08-24  Robert Jordan  <robertj@gmx.net>
1286
1287         * appdomain.c: don't perform the ':'->';' substitution on Win32.
1288
1289 2007-08-24  Jb Evain  <jbevain@novell.com>
1290
1291         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
1292         for byref types.
1293
1294 2007-08-24  Mark Probst  <mark.probst@gmail.com>
1295
1296         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
1297         #82286.
1298
1299 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
1300
1301         * assembly.c: Fix a warning.
1302         
1303 2007-08-23  Marek Habersack  <mhabersack@novell.com>
1304
1305         * appdomain.c: parse the <runtime> section looking for the probing
1306         element with the 'privatePath' attribute, which sets additional
1307         directories in which the runtime should look for assemblies.
1308
1309 2007-08-23  Robert Jordan  <robertj@gmx.net>
1310
1311         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
1312         Fixes #82499.
1313
1314 2007-08-23  Martin Baulig  <martin@ximian.com>
1315
1316         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
1317         _mono_debug_init_corlib() and remove it from the header file.
1318
1319 2007-08-23  Martin Baulig  <martin@ximian.com>
1320
1321         * mono-debug-debugger.c
1322         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
1323         don't notify the debugger about it.
1324
1325         * mono-debug-debugger.h
1326         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
1327
1328 2007-08-23  Robert Jordan  <robertj@gmx.net>
1329
1330         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
1331         Code is contributed under MIT/X11 license.
1332
1333 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
1334
1335         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
1336
1337 2007-08-22  Martin Baulig  <martin@ximian.com>
1338
1339         * mono-debug.c: Store debugging info on a per-domain basis and
1340         free it on domain unload.  Add support for unloading symbol files.
1341
1342         * mono-debug.h
1343         (MonoDebugList): New typedef.
1344         (MonoSymbolTable):
1345         - add `data_tables and `type_table'.
1346         - replace 'symbol_files' and `num_symbol_files' with a
1347           `MonoDebugList *'.
1348         (mono_debug_data_table): Removed.
1349         (mono_debug_list_add): New public function.
1350         (mono_debug_list_remove): New public function.
1351         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
1352         (mono_debug_init_2_memory): Renamed into
1353         mono_debug_open_image_from_memory().
1354         (mono_debug_close_image): New public function.
1355         (mono_debug_domain_create): Likewise.
1356         (mono_debug_domain_unload): Likewise.
1357         (MONO_DEBUGGER_VERSION): Bump to 60.
1358
1359         * mono-debug-debugger.h
1360         (MonoDebuggerEvent):
1361         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
1362         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
1363         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
1364         - rename `THREAD_CREATED' and `THREAD_EXITED' into
1365           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
1366         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
1367           meaning.
1368         (mono_debugger_add_symbol_file): Removed.
1369         (mono_debugger_add_type): Removed.
1370         (mono_debugger_lookup_type): Removed.
1371         (mono_debugger_lookup_assembly): Removed.
1372
1373         * domain.c
1374         (mono_domain_create): Call mono_debug_domain_create().
1375         (mono_init_internal): Call mono_debug_init_corlib().
1376
1377         * assembly.c
1378         (mono_assembly_close): Call mono_debug_close_image().
1379
1380 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
1381
1382         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
1383         mmap call.
1384
1385 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
1386
1387         * sgen-gc.c: ensure section->pin_queue_end is initialized
1388         correctly when non pinning objects in the section have been found.
1389
1390 2007-08-22  Marek Habersack  <mhabersack@novell.com>
1391
1392         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
1393         containing a list of directories separated by ':'. MSDN docs say
1394         the directories should be separated with ';'. Part of a bugfix for
1395         bug #81446
1396
1397 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
1398
1399         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
1400         it should MonoType and not MonoClass.
1401
1402 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
1403
1404         * culture-info-table.h : regenerated.
1405
1406 2007-08-20  William Holmes  <billholmes54@gmail.com>
1407
1408         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
1409          to call ReplaceFile Kernel32 on windows or in io-layer.
1410         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
1411         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
1412          as an internal call.
1413
1414         Code is contributed under MIT/X11 license.
1415
1416 2007-08-20  Jb Evain  <jbevain@novell.com>
1417
1418         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
1419         and MONO_EXCEPTION_FIELD_ACCESS.
1420
1421         * debug-helpers.[c|h]: new mono_field_full_name function.
1422
1423 2007-08-20  Mark Probst  <mark.probst@gmail.com>
1424
1425         * class.c: Removed class_security_level() and moved it to
1426         security-core-clr.c.
1427
1428         * security-core-clr.c, security-core-clr.h: class_security_level()
1429         is now public and renamed to mono_security_core_clr_class_level().
1430         It also looks for security attributes in the classes a class is
1431         nested in.
1432
1433 2007-08-20  Mark Probst  <mark.probst@gmail.com>
1434
1435         * security-core-clr.c, security-core-clr.h: CoreCLR security
1436         utility functions.
1437
1438         * Makefile.am: Added security-core-clr.[ch].
1439
1440         * security-manager.c, security-manager.h: Functions and enum for
1441         setting and getting the security mode.
1442
1443         * class.c: CoreCLR security checks.
1444
1445 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
1446
1447         * icall-def.h, process.c, process.h: implemented icall to get
1448         user/system processor times.
1449
1450 2007-08-17  Mark Probst  <mark.probst@gmail.com>
1451
1452         * domain.c, threads.c, class-internals.h, domain-internals.h: New
1453         reader-lock-free jit_info_table.
1454
1455 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
1456
1457         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
1458
1459         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
1460
1461         * object-internals.h (MonoException): Add missing _data member.
1462
1463 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
1464
1465         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
1466         checking that only methods with matching qname or fqname are picked
1467         from implemented interfaces.
1468
1469 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
1470
1471         * verify.c (do_newarr):added, do type verification of
1472         newarr ops, push the right value on the eval stack.
1473         * verify.c (mono_method_verify): use do_newarr
1474
1475
1476 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
1477
1478         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
1479         factored the common code into get_boxable_mono_type, which
1480         is now using mono_type_get_full, this fixed byref related tests.
1481
1482 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
1483
1484         * class.c: added mono_type_get_full, this function has the same
1485         behavior of mono_class_get_full but the returned MonoType has
1486         all metadata of the associated token in case of a typespec token.
1487         * class.c: added mono_type_retrieve_from_typespec, used by 
1488         mono_type_get_full to retrieve the token type.
1489         * class.c (mono_class_create_from_typespec): changed to use
1490         mono_type_retrieve_from_typespec.
1491         * class.c (mono_ldtoken): changed to use mono_type_get_full
1492         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
1493         * class-internals.h: exported mono_type_get_full for internal use.
1494
1495 2007-08-16  Jb Evain  <jbevain@novell.com>
1496
1497         * domain.c (supported_runtimes): add entry for
1498         the 'moonlight' runtime version.
1499
1500 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
1501
1502         * verify.c (mono_method_verify): small typo sliped in.  
1503
1504 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
1505
1506         * verify.c (do_unbox_value): added, do type verification of
1507         unboxing ops
1508         * verify.c (mono_method_verify): use do_unbox_value
1509
1510
1511 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
1512
1513         * verify.c (dump_stack_value): fixed typo, was printing string
1514         instead of object on stack.
1515         * verify.c (do_box_value): moved the byref check up as it leads
1516         to invalid code and should be done earlier.
1517         * verify.c: improved error messages for and ldobj
1518
1519 2007-08-15  William Holmes  <billholmes54@gmail.com>
1520
1521         * marshal.c (emit_marshal_custom): Omit the call to 
1522           marshal_native_to_managed when calling native to managed 
1523           and the argument is specified as an out argument.
1524
1525         Code is contributed under MIT/X11 license.
1526
1527 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
1528
1529         * verify.c: fixed the type checks for generics, function pointers and vectors.
1530         Added type verification for ldobj and ldtoken. The verifier
1531         would segfault if header or signature of a method contained references
1532         to non-existant types.
1533
1534 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
1535
1536         * marshal.c (cominterop_get_ccw): Patch from
1537         Bill Holmes to no walk up interface hierarchy. 
1538         All parent methods should be present in the interface for COM.
1539    
1540         Code is contributed under MIT/X11 license.
1541
1542 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
1543
1544         * marshal.c (emit_marshal_com_interface): Patch from
1545         Bill Holmes to handle COM Interfaces as return values
1546         for native->managed calls.
1547    
1548         Code is contributed under MIT/X11 license.
1549
1550 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
1551
1552         * marshal.c (cominterop_get_idispatch_for_object): Implement
1553         for runtime callable wrappers.
1554    
1555         Code is contributed under MIT/X11 license.
1556
1557 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
1558
1559         * pedump.c (main): changed from mono_init to mono_init_from_assembly
1560         so 2.0 types are accessible
1561
1562
1563 2007-08-13  Miguel de Icaza  <miguel@novell.com>
1564
1565         * domain.c (mono_init_internal): Call mono_assembly_load_friends
1566         once we load mscorlib.   Due to the order in which we initialize,
1567         the mono_assembly_load_full routine that loads mscorlib did not
1568         load friends.   We now load it once we load the
1569         mono_defaults.internals_visible_class class. 
1570
1571         * assembly.c: Expose the mono_load_friend_assemblies method.
1572
1573 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
1574
1575         * verify.c: improved the handling of boxing, better
1576         type checking for unary ops and conversion. Fix bug
1577         regarding managed pointer compatibility checking
1578
1579 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
1580
1581         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
1582
1583         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
1584
1585 2007-08-09  Raja R Harinath  <rharinath@novell.com>
1586
1587         * reflection.c (dup_type): Remove.
1588         * class.c (dup_type): Remove.
1589         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
1590         instead of the dodgy 'dup_type'.
1591         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
1592         handle the case where 'dup_type' needed the second argument.
1593
1594 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
1595
1596         * domain.c: Fix a warning.
1597
1598 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
1599
1600         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
1601         checking that methods with the same fqname are not overridden
1602         with a method from an ancestor.
1603
1604 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
1605
1606         * threads.c (free_thread_static_data_helper): Avoid a crash if
1607         thread->static_data is not yet set.
1608
1609 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
1610
1611         * marshal.c: Use correct image when emitting
1612         native wrapper for COM calls.
1613    
1614         Code is contributed under MIT/X11 license.
1615
1616 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
1617
1618         * icall-def.h, security.c, security.h :
1619           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
1620
1621 2007-08-07  Martin Baulig  <martin@ximian.com>
1622
1623         * mono-debug-debugger.h
1624         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
1625
1626         * domain.c (mono_domain_free): Call
1627         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
1628
1629 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
1630
1631         * verify.c (check_underflow, check_overflow): error message now returns IL offset
1632         * verify.c (in_same_block): code should test if either offset is inside the clauses
1633         * verify.c (mono_method_verify): push the exception into the eval stack of exception
1634         and filter blocks
1635
1636 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
1637
1638         * image.c (mono_image_close): Fix a leak.
1639
1640         * object.c (mono_runtime_invoke_array): Avoid using alloca.
1641
1642         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
1643
1644 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
1645
1646         * domain.c, threads.c, threads-types.h: fix memory retention issue
1647         with thread static variables not being cleared on domain unload.
1648         Reuse thread static slots after domain unload.
1649
1650 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
1651
1652         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
1653         nullable type.
1654
1655         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
1656         now done in mono_runtime_invoke_array.
1657
1658         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
1659         receiver is a nullable type.
1660
1661         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
1662         generic parameter.
1663
1664 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
1665
1666         * marshal.c: Implement COM Objects as return type for 
1667         managed->unmanaged calls. Added Release calls for COM Object
1668         out/return values in managed->unmanaged calls.
1669
1670         Code is contributed under MIT/X11 license.
1671
1672 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
1673
1674         * threads.h, threads-type.h: move the hazard pointer declarations
1675         to the private header.
1676
1677 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
1678
1679         * file-io.c, appdomain.c: memory leak fixes.
1680
1681 2007-08-02  Dick Porter  <dick@ximian.com>
1682
1683         * socket-io.c
1684         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
1685         SO_REUSEADDR setting into io-layer/sockets.c.
1686
1687 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
1688
1689         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
1690         from Object when called on a generic parameter. Fixes #82211.
1691
1692 2007-08-01  Dick Porter  <dick@ximian.com>
1693
1694         * file-io.c (convert_share): Test FileShare values bit-by-bit.
1695         Fixes bug 79250 yet again.
1696
1697 2007-07-30  Martin Baulig  <martin@ximian.com>
1698
1699         Merged the `debugger-dublin' branch.
1700
1701         * mono-debug.h
1702         (MonoDebugDataTable): New typedef.
1703         (MonoDebugMethodAddressList): New typedef.
1704         (MonoDebugWrapperData): Removed.
1705         (MonoDebugSymbolTable): Removed `current_data_table',
1706         `current_data_table_size', `current_data_table_offset'.
1707         (MonoDebugDataItemType): Moved into mono-debug.c.
1708         (MonoDebugMethodJitInfo): Remove `address'.
1709         (mono_debug_data_table): New global variable.
1710         (mono_debug_lookup_method_addresses): New public function.
1711         (mono_debug_find_method): Take a `MonoMethod *', not a
1712         `MonoDebugMethodInfo *'.
1713
1714         * mono-debug.c: Drop support for the old symbol tables.
1715
1716 2007-06-28  Martin Baulig  <martin@ximian.com>
1717
1718         * mono-debug.c (mono_debug_debugger_version): New public variable.
1719
1720 2007-07-31  William Holmes  <billholmes54@gmail.com>
1721
1722         * metadata.c Changed mono_type_create_from_typespec to not insert
1723           the type into the hash map until after
1724           do_mono_metadata_parse_type has completed.
1725         Fixes Bug #82194
1726         Code is contributed under MIT/X11 license.
1727
1728 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
1729
1730         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
1731         generic parameter. Fixes #82211.
1732
1733 2007-07-27  Jb Evain  <jbevain@novell.com>
1734
1735         * pedump.c (dump_metadata, dump_metadata_header): dump
1736         versions contained in the metadata header.
1737
1738 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
1739
1740         * threads.c: register small_id_table with the GC.
1741
1742 2007-07-27  Mark Probst  <mark.probst@gmail.com>
1743
1744         * threads.c, threads.h, class-internals.h, object-internals.h:
1745         Hazard pointers, to be used by lock-free parallel algorithms.
1746
1747 2007-07-26  Dick Porter  <dick@ximian.com>
1748
1749         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
1750         routine on non-windows platforms, as I've not managed to think of
1751         a non-kludgy way of doing this.  Finishes off bug 78739.
1752
1753 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
1754
1755         * object.c: properly setup interface_bitmap in proxy vtables.
1756
1757 2007-07-25  Marek Habersack  <mhabersack@novell.com>
1758
1759         * appdomain.c (get_shadow_assembly_location): do not use TickCount
1760         to create unique shadow copy target directories, use the domain's
1761         serial number instead. Each domain gets a unique target directory
1762         that way.
1763
1764         * domain.c (mono_domain_create): added code to increment domain
1765         shadow copy serial number and cache the value in the current
1766         domain structure.
1767
1768         * domain-internals.h (struct _MonoDomain): added a new field -
1769         shadow_serial to hold the serial number used in generation of
1770         shadow-copy directories. This is to make sure that the directory
1771         name is unique for each and every domain created. We avoid a race
1772         condition with overriding assemblies already in use by other app
1773         domains.
1774
1775 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
1776
1777         * class.c (mono_bounded_array_class_get): fixed memory leak when 
1778         binding generic parameters.
1779
1780 2007-07-24  Raja R Harinath  <rharinath@novell.com>
1781
1782         * metadata.c (do_mono_metadata_parse_generic_class): Use
1783         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
1784         error.
1785
1786 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
1787
1788         * loader.c, class-internals.h, reflection.c: removed the per-method
1789         generics hashtable: we use the global one through the call of
1790         mono_class_inflate_generic_method ().
1791
1792 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
1793
1794         * class.c, metadata.c, class-internals.h: introduce yet another
1795         generics global cache for inflated methods (fixes 98% of the perf
1796         issue in bug #81806).
1797
1798 2007-07-23  Raja R Harinath  <rharinath@novell.com>
1799
1800         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
1801         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
1802         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
1803         return a MonoGenericInst containing (a copy) of those types.
1804         (mono_metadata_inflate_generic_inst): Update to changes.
1805         (mono_metadata_parse_generic_inst): Likewise.
1806         (mono_get_shared_generic_inst): Likewise.
1807         * reflection.c (mono_class_bind_generic_parameters): Likewise.
1808         (mono_reflection_bind_generic_method_parameters): Likewise.
1809         * metadata-internals.h: Likewise.
1810         * icall.c (free_generic_context): Kill.
1811         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
1812
1813         * reflection.c (reflection_methodbuilder_to_mono_method): Use
1814         mono_metadata_type_dup.
1815         * marshal.c (mono_mb_create_method): Likewise.
1816
1817         * metadata.c (mono_metadata_type_dup): Rename from
1818         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
1819         MonoImage.  Handle a few more cases, esp. when no mempool is given.
1820         * marshal.c, metadata-internals.h: Update to changes.
1821
1822 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
1823
1824         * class.c: fixed a small leak for array classes and removed warning.
1825
1826 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
1827
1828         * loader.c (mono_method_get_param_token): Make this work on generic methods.
1829         Return 0x8000000 for return parameters. Fixes #82161.
1830
1831 2007-07-21  Marek Habersack  <grendello@gmail.com>
1832
1833         * appdomain.c (get_shadow_assembly_location): append the current
1834         ticks value to the path. Avoids overwriting the same assemblies by
1835         several threads at the same time.
1836
1837 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
1838         and Raja R Harinath  <rharinath@novell.com>
1839
1840         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
1841         Simplify slightly.
1842         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
1843         property for testing if a method is a generic method definition.
1844
1845 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
1846
1847         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
1848
1849 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
1850
1851         * verify.c: used function from private branch, reverted to the one in class.h 
1852
1853 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
1854
1855         * verify.c: a typo slipped in and the code wont compile
1856
1857 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
1858
1859         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
1860         disabled box instruction as it is doing the wrong thing
1861         improved stack dump messages, now it is easier to debug type related issues
1862
1863
1864 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
1865
1866         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
1867
1868 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
1869
1870         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
1871         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
1872         grouped with class and valuetype. This change will simply 
1873         the code as it should be handled just like unmanaged pointers.
1874
1875 2007-07-19  Mark Probst  <mark.probst@gmail.com>
1876
1877         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
1878
1879 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
1880
1881         * verify.c: several stack merge issues fixed, reference comparisons now
1882         check the type size. strict type check now works correctly.
1883         added more uses of IS_MANAGED_POINTER macro.
1884         fixed issues pointed by running the test suite against .net.
1885         
1886
1887 2007-07-19  Mark Probst  <mark.probst@gmail.com>
1888
1889         * class.c, loader.c, class-internals.h: Removed the
1890         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
1891         defines.
1892
1893         * icall.c: Better error checking in some internal reflection
1894         methods.
1895
1896 2007-07-18  William Holmes  <billholmes54@gmail.com>
1897
1898         * filewatcher.c : removed unused variable 'filename' in 
1899           ves_icall_System_IO_FSW_SupportsFSW
1900
1901 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
1902
1903         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
1904         obsolete, removed.
1905
1906 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
1907
1908         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
1909         
1910         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
1911
1912 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
1913
1914         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
1915         Implement generics support.
1916         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
1917
1918         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
1919         type_args and method_args arguments.
1920         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
1921         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
1922         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
1923
1924 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
1925
1926         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
1927           It adds a rootimage parameter to mono_reflection_get_type_internal,
1928           adds new function mono_reflection_get_type_with_rootimage and use
1929           the rootimage to resolve the types instead of the current image
1930
1931 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1932
1933         * culture-info-table.h: Forgot to update after r78304.
1934
1935 2007-07-13  Raja R Harinath  <rharinath@novell.com>
1936
1937         * class.c (mono_class_is_open_constructed_type)
1938         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
1939
1940 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
1941
1942         * class.c (mono_bounded_array_class_get):  method fails if used with
1943         an incomplete TypeBuilder enum (no basetype field), fixed it by 
1944         avoiding calculating the size for such array as it cannot be instantiated.
1945         Fix bug #82015
1946
1947 2007-07-12  Raja R Harinath  <rharinath@novell.com>
1948
1949         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
1950         field.
1951         * metadata.c, reflection.c: Update to changes.
1952
1953 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
1954
1955         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
1956         mono_class_is_valid_enum, they are used to valide a enum when loading.
1957         * reflection.c: used new functions to throw TypeLoadException when and
1958         invalid enum is build with TypeBuilder. Fixes #82018
1959   
1960 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
1961
1962         * object.c: forgot commit of mono_class_setup_methods () to access
1963         iface->methods.
1964         * object-internals.h: added a few more handy fields to
1965         MonoIMTCheckItem.
1966
1967 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
1968
1969         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
1970         iface->methods.
1971
1972 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
1973
1974         * class-internals.h, object-internals.h, object.c: IMT-based
1975         interface invocation core from Massimiliano Mantione
1976         (massi@ximian.com) with a reworked arch-specific interface,
1977         bsearch implementation and a few bugfixes and memory savings by me.
1978
1979 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
1980
1981         * class.c (mono_class_create_from_typedef): mono would segfault if 
1982         an enum did not have a __value field. It now throws a TypeLoadException
1983         for such cases. Fix bug #82022
1984
1985 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
1986
1987         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
1988
1989 2007-07-09  Mark Probst  <mark.probst@gmail.com>
1990
1991         * class.c (mono_class_init): If a class is already inited but has
1992         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
1993
1994 2007-07-09  Mark Probst  <mark.probst@gmail.com>
1995
1996         * class.c: Properly handle the case of an unimplemented interface
1997         method.  Fixes: 81673.
1998
1999 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
2000
2001         * class-internals.h, object.c: cleanup patch from massi: use
2002         MonoVTable->interface_bitmap since the vtable interfaces offset array
2003         is going away.
2004
2005 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
2006
2007         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
2008         GetMDStreamVersion icall instead.
2009
2010 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
2011
2012         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
2013         not use mono_dl_build_path() with a full library name: makes
2014         fallbacks to libgaim and libfam work.
2015
2016 2007-07-06  William Holmes  <billholmes54@gmail.com>
2017
2018         * assembly.c: Added a continue statement in probe_for_partial_name when
2019          parse_assembly_directory_name fails.  Fixes : 82002
2020
2021 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
2022
2023         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
2024         and added a verification  for TYPEDBYREF.
2025         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
2026         make native int interchangeable with int32 and some small cleanup and formating.
2027         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
2028         handle byref of byref.
2029         * verify.c (push_local): handle byref of byref.
2030         * verify.c (do_binop): invalid mix of values is unverifiable
2031         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
2032         added visibility checks
2033         * verify.c (field related method): added visibility checks
2034         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
2035
2036 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
2037
2038         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
2039         string.
2040
2041 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
2042
2043         * profiler.c (mono_profiler_load): Fix an off-by-one error.
2044
2045         * marshal.c (emit_marshal_string): When returning a string from managed code,
2046         allways make a copy even for unicode strings. Fixes #81990.
2047
2048 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
2049
2050         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
2051         of byref generic inst types (bug #81997).
2052
2053 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
2054
2055         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
2056         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
2057
2058 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
2059
2060         * marshal.c (emit_marshal_string): Add support for unicode strings in
2061         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
2062
2063 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
2064
2065         * verify.c: field load/store are now verified, missing only access checks now
2066
2067 2007-06-28  Martin Baulig  <martin@ximian.com>
2068
2069         * mono-debug.c (mono_debug_debugger_version): New public variable.
2070
2071 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
2072
2073         * locales.c: When constructing DateTimeFormat or NumberFormat for
2074         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
2075         MonoCultureInfo contructed from the current locale is always
2076         read-only and has UseUserOverride set to true. All MonoCultureInfo
2077         instances returned for GetCultures have both IsReadOnly and
2078         UseUserOverride set to true. Fixes part of bug #81930.
2079
2080 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
2081
2082        * icall-def.h: Update System.__ComObject icalls
2083        * marshal.c: Avoid managed transition (and object creation)
2084        when looking up COM interface in RCW.
2085        * marshal.h: Ditto.
2086        
2087        Code is contributed under MIT/X11 license.
2088
2089 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
2090
2091         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
2092         to avoid crashes during assembly unloading.
2093
2094 2007-06-22  Raja R Harinath  <rharinath@novell.com>
2095
2096         Fix MethodInfo.IsGenericMethodDefinition
2097         * reflection.c (mono_reflection_bind_generic_method_parameters):
2098         Rearrange code to ensure we always uses a generic method definition.
2099         * class.c (mono_class_inflate_generic_method_full): Set
2100         'generic_container' field only for generic method definitions.
2101         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
2102         Use presense of 'generic_container' field as indication of being a
2103         generic method definition.
2104
2105 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
2106
2107         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2108
2109         * object-internals.h: Reflect changes in the layout of the managed Delegate
2110         class.
2111         
2112         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
2113         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
2114         runtime memory used by the dynamic method. Fixes #77146.
2115
2116 2007-06-21  Dick Porter  <dick@ximian.com>
2117
2118         * file-io.h: 
2119         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
2120         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
2121         81767.
2122
2123 2007-06-21  Raja R Harinath  <rharinath@novell.com>
2124
2125         * reflection.c (method_encode_methodspec): Add a tripwire.
2126         * class.c (inflate_generic_type): The fully open generic type is
2127         not the same as the generic type definition.
2128
2129 2007-06-21  Martin Baulig  <martin@ximian.com>
2130
2131         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
2132
2133         * mono-debug-debugger.h
2134         (MonoDebuggerBreakpointInfo): Removed.
2135         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
2136         (mono_debugger_remove_breakpoint): Likewise.
2137         (mono_debugger_breakpoint_callback): Likewise.
2138         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
2139
2140 2007-06-21  Raja R Harinath  <rharinath@novell.com>
2141
2142         * metadata.c (mono_metadata_lookup_generic_class): The fully open
2143         generic type is not the same as the generic type definition.
2144         * class.c (mono_generic_class_get_class): Likewise.
2145
2146 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
2147
2148         * icall.c: The second argument to 
2149         System.Reflection.MethodBase.GetMethodFromHandleInternalType
2150         is a MonoType not a MonoClass.
2151
2152 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
2153
2154         * verify.c: support for function pointers in the verifier
2155
2156 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
2157
2158         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
2159
2160 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
2161
2162         * assembly.c: removed Mono.Data.SqliteClient from the list of
2163         forward-compatible assemblies as it breaks the ABI (bug #81899).
2164
2165 2007-06-19  Raja R Harinath  <rharinath@novell.com>
2166
2167         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
2168         lookup/update with the loader lock.
2169         * reflection.c (mono_class_bind_generic_parameters): No need to
2170         protect mono_metadata_lookup_* with the loader lock.
2171         * class.c (inflate_generic_type): Likewise.
2172         
2173         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
2174         on a generic instantiated type.
2175
2176 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
2177
2178         *verify.c: produce meanfull error messages on verification error
2179         *verify.c: fixed some cases of verification errors reported as validation errors
2180         *pedump.c: fixed the error name array, now it shows validation errors properly
2181         *verify.h: fixed the contant that should be used for verification errors
2182
2183 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
2184
2185         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
2186         for bug #77596, 81858 and 80743 (generics data structures on domain
2187         unload).
2188
2189 2007-06-15  Raja R Harinath  <rharinath@novell.com>
2190
2191         Avoid allocating 'MonoGenericContext' on the heap.
2192         * class-internals (_MonoMethodInflated::context): Make field
2193         inline, not a pointer.
2194         * loader.c (method_from_methodspec): Allocate 'new_context' on the
2195         stack.  Use the context embedded within the inflated method as the
2196         hash key, rather than 'new_context'.
2197         * class.c (inflate_generic_context): Simplify.  Return a struct
2198         rather than allocating on the heap.
2199         (mono_class_inflate_generic_method_full): Update to changes.  Now,
2200         doesn't salt away a copy of the context -- simplifying the
2201         lifetime rules of a 'MonoGenericContext *'.
2202         (mono_method_get_context): Return pointer to embedded context.
2203         (setup_generic_array_ifaces): Allocate temporary context on stack.
2204         * reflection.c (inflate_mono_method): Likewise.
2205         (mono_reflection_bind_generic_method_parameters): Likewise.
2206         Use the context embedded within the inflated method as the hash key.
2207
2208         Avoid a source of allocation of 'MonoGenericContext'.
2209         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
2210         and 'cached_context' fields into embedded 'MonoGenericContext' field.
2211         * class.c: Update to changes.
2212         (mono_generic_class_get_context): Simplify drastically.  Now just
2213         returns a pointer to the field.
2214         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
2215         argument as a const pointer.
2216         (mono_metadata_generic_context_equal): Likewise.
2217         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
2218         Update to changes.
2219
2220 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
2221
2222         * verify.c improved the handling of brtrue/brfalse, factored out common code
2223
2224 2007-06-14  Raja R Harinath  <rharinath@novell.com>
2225
2226         Kill MonoGenericMethod.
2227         * class-internals.h (MonoGenericContext::method_inst): Rename from
2228         'gmethod' and convert to a MonoGenericInst.
2229         (MonoGenericMethod): Remove.
2230         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
2231         * loader.c (method_from_methodspec): Update to changes.  Use a
2232         MonoGenericContext as the key to the hashtable.
2233         * metadata.c (mono_metadata_generic_context_equal): Rename from 
2234         'mono_metadata_generic_method_equal' and take MonoGenericContext.
2235         (mono_metadata_generic_context_hash): Likewise from
2236         'mono_metadata_generic_method_hash'.  Change hash function.
2237         (mono_metadata_load_generic_params): Update to changes.
2238         (mono_get_shared_generic_method): Remove.
2239         * metadata-internals.h (mono_get_shared_generic_method): Remove.
2240         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
2241         (inflate_generic_context): Likewise.
2242         (mono_class_inflate_generic_method_full): Likewise.
2243         (setup_generic_array_ifaces): Likewise.
2244         (mono_class_create_from_typespec): Likewise.
2245         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
2246         (method_encode_methodspec): Update callsite.
2247         (reflection_methodbuilder_to_mono_method): Update to changes.
2248         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
2249         MonoGenericContext as the key to the hashtable.
2250         (inflate_mono_method): Update to changes.
2251
2252         * class-internals.h (MonoGenericMethod::container): Remove.
2253         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
2254
2255 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
2256
2257         * profiler-private.h, profiler.c, profiler.h: added API to profile
2258         exception events.
2259
2260 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
2261
2262         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
2263
2264 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
2265
2266         * verify.c: method invocation is now validated, now we verify parameter types on stack.
2267         Fixed overflow and underflow not aborting the verification process.
2268
2269 2007-06-13  Mark Probst  <mark.probst@gmail.com>
2270
2271         * class-internals.h (MonoStats): Added stats entries for dynamic
2272         code allocations.
2273
2274 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
2275
2276         * loader.c (mono_free_method): Free header->locals and header->clauses.
2277
2278         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
2279         dynamic case.
2280
2281         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
2282
2283         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
2284
2285 2007-06-12  Raja R Harinath  <rharinath@novell.com>
2286
2287         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
2288         the tables.
2289
2290 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
2291
2292         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
2293
2294 2007-06-11  Raja R Harinath  <harinath@gmail.com>
2295
2296         MonoGenericMethod on a diet
2297         * class-internals.h (_MonoMethodInflated::reflection_info): Move
2298         here ...
2299         (_MonoGenericMethod::reflection_info): ... from here.
2300         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
2301         Update to changes.
2302         * reflection.c (inflate_mono_method): Likewise.
2303         (mono_reflection_bind_generic_method_parameters): Likewise.
2304
2305 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
2306
2307         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
2308         *verify.c: factored long ldarg forms to share code with short forms
2309
2310 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
2311
2312         *verify.c: fixed code formating factored some duplicate code
2313         into a new function
2314
2315         *verify.h: fixed binary incompatibility introduced earlier
2316
2317         *pedump.c: fixed formating
2318
2319 2007-06-11  Raja R Harinath  <harinath@gmail.com>
2320
2321         Fix assertion when disassembling Mono.C5.dll
2322         * loader.c (method_from_methodspec): Avoid inflating a method
2323         twice with the same context.  If the methodref is inflated, use
2324         the declaring method instead.
2325
2326         * class.c (mono_class_from_generic_parameter): Fix case similar to
2327         bug #81830 handled below, but for method containers.
2328
2329 2007-06-10  Raja R Harinath  <harinath@gmail.com>
2330
2331         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
2332         get_shared_generic_class.  Directly inflate the instance.
2333         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
2334         (inflate_generic_class): Delete.
2335         (get_shared_generic_class): Delete.  Move setting of
2336         'cached_class' and 'cached_context' ...
2337         * metadata.c (mono_metadata_lookup_generic_class): ... here.
2338
2339         * metadata.c (mono_metadata_lookup_generic_class): Change
2340         signature to take the components of a MonoGenericClass rather than
2341         an allocated MonoGenericClass.  Change semantics to be intern-like.
2342         * reflection.c (mono_class_bind_generic_parameters): Update to
2343         changes.  Make locking region tighter.
2344         * class.c (inflate_generic_class): Update to changes.
2345         (get_shared_generic_class): Likewise.
2346         * metadata-internals.h: Likewise.
2347
2348         * reflection.c (mono_class_bind_generic_parameters): Take and
2349         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
2350         (mono_reflection_bind_generic_parameters): Use
2351         'mono_class_bind_generic_parameters' rather than duplicate the code.
2352         * class.c (mono_bounded_array_class_get): Update to changes.
2353         * object-internals.h: Likewise.
2354
2355         * reflection.c (mono_class_bind_generic_parameters): Only support
2356         parameterizing generic type definitions.  Remove support for other
2357         open types.
2358
2359 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
2360
2361         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
2362
2363         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
2364         in the dynamic case.
2365
2366 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
2367
2368         * threads.c: When cleaning up thread, reset the Background bit.
2369         Fixes bug #81720.
2370
2371 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
2372
2373        * metadata.c: Move variable declarations to top of scope.
2374        * verify.c: Move variable declarations to top of scope.
2375
2376        Code is contributed under MIT/X11 license.
2377
2378 2007-06-08  Raja R Harinath  <rharinath@novell.com>
2379
2380         * reflection.c (mono_class_bind_generic_parameters): Replace
2381         open-coded loop with mono_metadata_inflate_generic_inst.
2382
2383         * class.c (get_shared_generic_class): Don't call
2384         mono_get_shared_generic_inst.  Use the container's own
2385         'class_inst'.
2386
2387         * metadata.c (mono_metadata_load_generic_params): Move
2388         initialization of 'context' field here from ...
2389         * class.c (mono_class_create_from_typedef): ... here, and ...
2390         * loader.c (mono_get_method_from_token): ... here.
2391
2392         * class.c (get_shared_generic_class): Rename from
2393         mono_get_shared_generic_class and make static.
2394         (mono_get_shared_generic_inst): Move to metadata.c.
2395         * loader.c (mono_get_shared_generic_method): Likewise.
2396         * class-internals.h, metadata-internals.h: Update to changes.
2397
2398         Fix #81830
2399         * class.c (mono_class_from_generic_parameter): Don't assume a
2400         generic container owner exists.  Generic containers from monodis
2401         don't have any.
2402
2403 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
2404
2405         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
2406         * verify.h: new typedefs to returns the non-verifiable status
2407         * verify.c: initial implementation of generics, stack merging and object compatibility check
2408
2409 2007-06-06  Mark Probst  <mark.probst@gmail.com>
2410
2411         * class.c, image.c, class-internals.h (MonoImage): class_cache is
2412         a MonoInternalHashTable again (fixed bug in internal hash table
2413         code).
2414
2415 2007-06-06  Mark Probst  <mark.probst@gmail.com>
2416
2417         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
2418         MonoInternalHashTable again (fixed bug in internal hash table
2419         code).
2420
2421 2007-06-06  Mark Probst  <mark.probst@gmail.com>
2422
2423         * class.c, image.c, class-internals.h, domain.c,
2424         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
2425         changes.  Have to figure out what makes them break the SWF
2426         regression.
2427
2428 2007-06-04  Mark Probst  <mark.probst@gmail.com>
2429
2430         * class.c, image.c, class-internals.h (MonoImage): class_cache is
2431         a MonoInternalHashTable now.
2432
2433 2007-06-04  Mark Probst  <mark.probst@gmail.com>
2434
2435         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
2436         MonoInternalHashTable now.
2437
2438 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
2439
2440         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
2441         invoke_impl code.
2442
2443         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
2444
2445         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
2446         dependent trampoline.
2447
2448         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2449
2450         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
2451
2452 2007-05-29  Robert Jordan  <robertj@gmx.net>
2453
2454         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
2455
2456 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
2457
2458         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
2459
2460 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
2461
2462        * marshal.c: Fix interface lookup loops for
2463        cominterop_get_com_slot_for_method and 
2464        cominterop_get_method_interface. Only need to lookup
2465        if type is a class, else use interface type method is on.
2466
2467        Code is contributed under MIT/X11 license.
2468
2469 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
2470
2471         * reflection.c: HasSecurity can be present even if no specially 
2472         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
2473         SecurityAttribute). Fix CAS regression tests on buildbot.
2474
2475 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
2476
2477        * appdomain.c: Add configure checks for header files.
2478        * image.c: Add configure checks for header files.
2479        * file-io.c: Add configure checks for header files.
2480        * debug-mono-symfile.c: Add configure checks for header files.
2481        * threadpool.c: Add configure checks for header files.
2482        * console-io.c: Add configure checks for header files.
2483        * profiler.c: Add configure checks for header files.
2484        * rawbuffer.c: Add configure checks for header files.
2485        * icall.c: Add configure checks for header files.
2486        * rand.c: Add configure checks for header files.
2487        * socket-io.c: Add configure checks for header files.
2488
2489        Code is contributed under MIT/X11 license.
2490
2491 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
2492
2493         * reflection.c (mono_custom_attrs_from_builders): Remove the 
2494         assertion as it breaks the build.
2495         
2496         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
2497
2498         * reflection.c (lookup_custom_attr): Make a copy here too.
2499
2500         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
2501         dynamic images.
2502
2503         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
2504         images.
2505
2506         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
2507         info.
2508
2509 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
2510
2511         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
2512         (load_cattr_value): Ditto.
2513
2514 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
2515
2516         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
2517
2518 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
2519
2520         * threads.c: In "start_wrapper", set apartment_state to MTA if
2521         apartment_state is Unknown and we're running on 2.0 profile or
2522         higher.
2523         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
2524         to main method, then set apartment_state to Unknown on 1.0 profile,
2525         and MTA on 2.0 profile.
2526
2527 2007-05-16  Jb Evain  <jb@nurv.fr>
2528
2529         * class-internals.h (MonoDefaults): Add an attribute_class and
2530           customattribute_data_class.
2531         * domain.c (mono_init_internal): Populate them.
2532         * reflection.c: Use them to remove duplicates. Make a vew
2533         MonoClass variables `static'.
2534
2535 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
2536
2537         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
2538         step in implementing IMT, so that all isinst checks now can go
2539         through the bitmap.
2540         This was needed because vtables for TransparentProxy need to look
2541         like the vtable of the "target" class, so they need to point to
2542         its interface bitmap directly.
2543
2544         * object.c: inside "mono_class_create_runtime_vtable" and
2545         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
2546
2547 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
2548
2549         * object-internals.h
2550           culture-info.h : added territory field in MonoCulture and
2551           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
2552         * locales.c : fill territory field above too.
2553         * culture-info-table.h : regenerated.
2554
2555 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
2556
2557         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
2558         Fixes #81599.
2559
2560 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
2561
2562         * object.c: Always initialize apartment, even if 
2563         there is no custom attributes on entry point.
2564         
2565         Code is contributed under MIT/X11 license.
2566
2567 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
2568
2569         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
2570         * metadata.c: If no encoding is set, check for unicode
2571         on class.
2572         
2573         Code is contributed under MIT/X11 license.
2574
2575 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
2576
2577         * threads.c: Handle if mono_thread_current returns NULL 
2578         
2579         Code is contributed under MIT/X11 license.
2580
2581 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
2582
2583         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
2584         in start_wrapper. Added mono_thread_init_apartment_state and
2585         mono_thread_cleanup_apartment_state.
2586         * object.c: Initialize thread apartment state on main thread
2587         by checking for STAThreadAttribute on entry point.
2588         * object-internals.h: Add apartment_state field to MonoThread.
2589         * threads-types.h: Add unmanaged definition of 
2590         System.Threading.ApartmentState, MonoThreadApartmentState.
2591         
2592         Code is contributed under MIT/X11 license.
2593         
2594 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
2595
2596         * class.c: Fix windows build.
2597         * class-internals.h: Fix windows build.
2598         
2599         Code is contributed under MIT/X11 license.
2600
2601 2007-05-08  Robert Jordan  <robertj@gmx.net>
2602
2603         * process.c (CreateProcess_internal):
2604         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
2605         .CreateNoWindow was specified. Fixes #81496.
2606
2607 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
2608
2609         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
2610         step in implementing IMT, replaced it with two compact arrays
2611         (interfaces_packed and interface_offsets_packed) and a bitmap that
2612         is used for isinst checks (interface_bitmap).
2613
2614         * class.c: (compare_interface_ids): compare function to pass to
2615         bsearch when looking for an interface with a given id.
2616         (mono_class_interface_offset): reimplemented using bsearch on
2617         interfaces_packed, getting the offset from interface_offsets_packed.
2618         (print_implemented_interfaces): utility debugging function.
2619         (setup_interface_offsets): reworked to initialize interfaces_packed,
2620         interface_offsets_packed and interface_bitmap.
2621
2622         * object.c: replaced all accesses to "MonoClass.interface_offsets"
2623         with uses of interfaces_packed and interface_offsets_packed.
2624
2625 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
2626
2627         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
2628         mono_class_interface_offset prototype to wrap all accesses to
2629         "MonoClass.interface_offsets".
2630
2631         * class.c: Implemented mono_class_interface_offset, and wrapped all
2632         accesses to "MonoClass.interface_offsets".
2633
2634         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
2635         "MonoClass.interface_offsets".
2636
2637 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
2638
2639         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
2640         GetMethodFromHandle overloads (bug #78637).
2641
2642 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
2643
2644         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
2645         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
2646
2647 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
2648
2649         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
2650         #81498.
2651
2652         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
2653         gracefully.
2654         (mono_custom_attrs_from_index): Ditto.
2655
2656         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
2657         Fixes #81501.
2658
2659 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
2660
2661         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
2662         is now allocated from a mempool.
2663
2664 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
2665
2666         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
2667         caller holds threads_lock, leading to deadlocks. Fixes #81476.
2668
2669 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
2670
2671         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
2672         mono_loader_clear_error () too late. Fixes #81463.
2673
2674 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
2675
2676         * culture-info-table.h : regenerated.
2677
2678 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
2679
2680         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
2681         is missing.
2682
2683 2007-04-25  Dick Porter  <dick@ximian.com>
2684
2685         * Makefile.am: Put the mingw enforced-optimisation back into the
2686         PLATFORM_WIN32 section.
2687
2688 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
2689
2690         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
2691         patch.
2692
2693         * image.c (mono_image_load_module): New API function to load a module reference.
2694
2695         * image.c (load_modules): Load modules lazily. Fixes #80812.
2696
2697         * class.c (mono_class_from_typeref): Use mono_image_load_module.
2698         
2699         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
2700
2701         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
2702         to mono_image_load_module_dynamic.
2703
2704 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
2705
2706         * marshal.c: Fix calling convention for CCW on non-windows
2707         platforms. STDCALL on windows, CDECL everywhere else to work 
2708         with XPCOM and MainWin COM.
2709         
2710         Code is contributed under MIT/X11 license.
2711
2712 2007-04-23  Martin Baulig  <martin@ximian.com>
2713
2714         Fix #80969.
2715
2716         * loader.c
2717         (method_from_memberref): Added `gboolean *used_context' argument.
2718         (mono_get_method_from_token): Likewise.
2719         (mono_get_method_full): Don't insert the method in the cache when
2720         `used_context' is true.
2721
2722 2007-04-23  Raja R Harinath  <rharinath@novell.com>
2723
2724         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
2725
2726         * reflection.c (mono_reflection_bind_generic_parameters): Don't
2727         create new MonoTypes for returned types.
2728         * class.c (mono_generic_class_get_class): Export mono-internal.
2729         * class-internals.h: Update to changes.
2730
2731 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
2732
2733         * threadpool.c, threadpool.h, icall-def.h: patch from
2734         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
2735
2736 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
2737
2738         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
2739         
2740         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
2741
2742         * threads.c (mono_thread_get_stack_bounds): New helper function.
2743
2744         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
2745         Correctly compute stack bounds when attaching. Fixes #81394.
2746
2747 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
2748
2749         * reflection.c: fix handling of doubles in custom attributes
2750         for the arm-fpa format (bug #81368).
2751
2752 2007-04-18  Raja R Harinath  <rharinath@novell.com>
2753
2754         * reflection.c (assembly_add_win32_resources): Mildly relax an
2755         bounds check to let the end pointer point just past the end of the
2756         allocated buffer.  (may fix #81384)
2757
2758 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
2759
2760         * culture-info-table.h : regenerated.
2761
2762 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
2763
2764         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
2765         the thread is aborted early.
2766
2767 2007-04-05  Dick Porter  <dick@ximian.com>
2768
2769         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
2770         FindFirstFile()/FindNextFile() to find entries.  This lets the
2771         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
2772         81038.
2773
2774         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
2775         the parameters of
2776         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
2777
2778 2007-04-04  Martin Baulig  <martin@ximian.com>
2779
2780         * debug-helpers.c
2781         (mono_method_desc_full_match): Add support for nested classes.
2782
2783 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
2784
2785         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
2786
2787 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
2788
2789         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
2790         waiting for too many threads.
2791
2792 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
2793
2794         * environment.c: Fix return value check on uname so we can get the 
2795         executing version on Solaris operating systems.
2796
2797 2007-03-28  Jb Evain  <jbevain@gmail.com>
2798
2799         * class.c (mono_type_get_name_recurse): Complete the
2800         fix for the creation of assembly qualified names for
2801         pointer types. Fixes #81208.
2802
2803 2007-03-27  Dick Porter  <dick@ximian.com>
2804
2805         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
2806         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
2807         changed.
2808
2809         * threads.c
2810         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
2811         the value of ReleaseMutex().
2812
2813 2007-03-27  Dick Porter  <dick@ximian.com>
2814
2815         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
2816         in little-endian order, not network endian, so must be converted
2817         to host endian here.  Fixes bug 80593.
2818
2819 2007-03-22  Jb Evain  <jbevain@gmail.com>
2820
2821         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
2822         qualified names for pointer types. Fixes #81208.
2823
2824 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
2825
2826         * marshal.c: Add support for PreserveSigAttribute. 
2827         
2828         Code is contributed under MIT/X11 license.
2829
2830 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
2831
2832         * process.c: Fix endianness issues. Fixes #81126.
2833
2834         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
2835         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
2836
2837         * image.c (mono_image_lookup_resource): Make this work on big-endian
2838         machines.Change API contract so the caller needs to free the return value.
2839         
2840         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
2841         API change.
2842         
2843 2007-03-14  Martin Baulig  <martin@ximian.com>
2844
2845         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
2846         mono_type_get_desc() as well.
2847
2848 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
2849
2850         * icall.c:  Fix environ access in VS.  
2851         
2852 2007-03-13  Alp Toker  <alp@atoker.com>
2853
2854         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
2855         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
2856         #63841.
2857
2858 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
2859
2860         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
2861         circular references among dynamic methods. Fixes #81091.
2862
2863         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
2864
2865 2007-03-09  Martin Baulig  <martin@ximian.com>
2866
2867         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
2868
2869 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
2870
2871         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
2872         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
2873         
2874         Code is contributed under MIT/X11 license.
2875         
2876 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
2877
2878         * loader.c: Reapply patch for bug #79424.
2879
2880 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
2881
2882         * metadata.c (mono_type_to_unmanaged): Only convert object to
2883         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
2884
2885 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
2886
2887         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
2888         (and incorrectly set) is_reference field from MonoGenericInst.
2889
2890 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
2891
2892         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
2893         a little earlier.
2894
2895         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
2896
2897         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
2898
2899 2007-03-05  Miguel de Icaza  <miguel@novell.com>
2900
2901         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
2902         FileOptions.1 value to mean "temporary", map that to
2903         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
2904
2905         Fixes 80688
2906
2907 2007-03-03  Marek Habersack  <mhabersack@novell.com>
2908
2909         * appdomain.c: implement MS .Net style shadow copying. Copies of
2910         the assemblies are made in a subdirectory of the dynamic base
2911         directory, the assembly names are preserved.
2912         Copy .mdb and .config files along with the assemblies being shadowed.
2913
2914 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
2915
2916         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
2917         (emit_marshal_handleref): Ditto.
2918
2919         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
2920         on Visual C++. Fixes #80671.
2921
2922 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
2923
2924         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
2925         for clone operations.
2926
2927 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
2928
2929         * marshal.c: Fix warnings.
2930
2931 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
2932
2933         * loader.c: allow case-insensitive matching of the dll name
2934         in dllmap handling when prefixed with "i:".
2935
2936 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
2937
2938         * threads.c: Fix #ifdef for dummy_apc function for VS.
2939
2940 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
2941
2942         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
2943
2944 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
2945         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
2946         giving precedence to the methods with a fully qualified name
2947         (InterfaceName.MethodName) when building the interface sections
2948         of the vtable.
2949
2950 2007-02-16  Dick Porter  <dick@ximian.com>
2951
2952         * threadpool.c (append_job): Fix fast-path array handling, so it's
2953         less likely the array will grow exponentially when the load is
2954         heavy.
2955
2956 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
2957
2958         * metadata-internals.h, loader.c: fix dllmap lookup order
2959         for non-function maps, too, and prepare for fallback code.
2960
2961 2007-02-12  Robert Jordan  <robertj@gmx.net>
2962
2963         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
2964         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
2965         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
2966         GlobalFree. Fixes a part of bug #77075.
2967
2968 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
2969
2970         * loader.c: implemented typedef parent in field memberref.
2971
2972 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
2973
2974         * marshal.c: Fix warnings and remember to call Release on
2975         IUnknown of RCW.
2976         
2977         Code is contributed under MIT/X11 license.
2978
2979 2007-02-10  Miguel de Icaza  <miguel@novell.com>
2980
2981         * class-internals.h: Add MonoHandleRef definition, and
2982         handleref_class to mono_defaults. 
2983
2984         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
2985         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
2986
2987         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
2988         (do nothing on this stage)
2989         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
2990         (emit_marshal_handleref): New method, used for argument handling
2991         of HandleRefs. 
2992
2993 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
2994
2995         * class.c (mono_class_setup_parent): Lazily init com types.
2996         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
2997         init com types.
2998         * object.c (mono_remote_class_vtable): Lazily init com types.
2999         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
3000         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
3001         * domain-internals.h: Expose mono_init_com_types.
3002         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
3003         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
3004         Add support for COM Callable Wrapper marshalling.
3005         * marshal.h: Add icall definitions.
3006         * gc.c: Handle freeing of CCWs in finalizer code.
3007         
3008         Code is contributed under MIT/X11 license.
3009
3010 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
3011
3012         * reflection.c: changed all the signature encoding code to use
3013         a variable-sized buffer.
3014
3015 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
3016
3017         * marshal.c: locking fixes: never take the loader lock
3018         or other runtime locks when holding the marshal lock
3019         (fixes bug#80664).
3020
3021 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
3022
3023         * marshal.c: make the delegate function pointer mapping
3024         work for the moving GC.
3025
3026 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
3027
3028         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
3029         for bug #80618.
3030
3031 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
3032
3033         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
3034         gmodule.
3035
3036 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
3037
3038         * threadpool.c: made the code moving-GC safe.
3039
3040 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
3041
3042         * assembly.c, boehm-gc.c, class-internals.h, class.c,
3043         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
3044         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
3045         warning cleanup.
3046         * reflection.c: warning cleanup, some threading and moving GC fixes.
3047
3048 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
3049
3050         * class.c, loader.c: create the needed Set/Get/Address array methods
3051         as well as the .ctors in mono_class_init (), fixes bug #80567.
3052
3053 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
3054
3055         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
3056         we doesn't decrease its alignment. Should fix the sparc build.
3057
3058 2007-01-24  Dick Porter  <dick@ximian.com>
3059
3060         * socket-io.c
3061         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
3062         Create the returned object if we need to ignore an unsupported
3063         socket option.  Fixes a segfault reported by Atsushi.
3064
3065 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
3066
3067         * class.c, object.c: restrict GC-tracked fields to
3068         UIntPtr fields used inside corlib, so we provide better
3069         type info to the GC and also allow broken packing as in
3070         bug #80580.
3071
3072 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
3073
3074         * sgen-gc.c: removed duplicated function.
3075
3076 2007-01-19  Miguel de Icaza  <miguel@novell.com>
3077
3078         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
3079         value that means that the value is not supported, but that we
3080         should not return a failure, but instead report this as a
3081         successful operation.
3082
3083 2007-01-19  Raja R Harinath  <rharinath@novell.com>
3084
3085         Fix tests/bug79956.2.il
3086         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
3087         (mono_generic_class_get_class): If the generic definition in an
3088         enum, copy over other fields related to it.
3089
3090 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
3091
3092         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
3093         genericinst enums (bug #79215).
3094
3095 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
3096         * class.c: Fix bug 80307.
3097
3098 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
3099
3100         * image.c: if the file table is not present, try to load
3101         all the modules, since we don't have info about them
3102         having or not metadata (bug #80517).
3103         * assembly.c: allow mono_assembly_load_references () to
3104         work for netmodules.
3105
3106 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
3107
3108         * image.c, metadata-internals.h, object.c: execute module
3109         cctors when running on the 2 runtime if present (bug #80487).
3110
3111 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
3112
3113         * icall.c: optimized InitializeArray() on bigendian.
3114
3115 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
3116
3117         * icall.c: fix for the broken ARM FPA double format.
3118
3119 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
3120
3121         * icall.c: handle endian issues for r4 and r8 types, too, in
3122         the InitializeArray() icall.
3123
3124 2007-01-15  Miguel de Icaza  <miguel@novell.com>
3125
3126         * loader.c (mono_loader_error_prepare_exception): Clear the error
3127         once we have extracted the information from it, do this before we
3128         call into the JIT's class loading mechanisms.
3129
3130         * object.c (mono_class_create_runtime_vtable): Do not clear the
3131         loader error before calling mono_class_get_exception_for_failure
3132         as the loader error is needed inside
3133         mono_class_get_exception_for_failure to throw the error (thinko).
3134
3135         Fixes #80521
3136         
3137 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
3138
3139         * reflection.c: align fields rva data so it's faster to load at
3140         runtime.
3141
3142 2007-01-12  Raja R Harinath  <rharinath@novell.com>
3143
3144         Prepare to simplify GenericMethod handling.
3145         * class-internals.h (mono_method_get_context): New accessor function.
3146         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
3147         rather than directly accessing '->context' field.
3148
3149         * class-internals.h (_MonoGenericParam.method): Move ...
3150         (_MonoGenericContainer): ... here.  Add into union with klass field.
3151         * class.c, icall.c, loader.c, metadata.c, reflection.c:
3152         Update to changes.
3153
3154 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
3155
3156         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
3157         the wrapper type enum and reduce relocations.
3158
3159 2007-01-12  Raja R Harinath  <rharinath@novell.com>
3160
3161         * reflection.c (inflate_mono_method): Reuse method instantiation
3162         from the generic method, if available.
3163
3164 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
3165
3166         * marshal.c (emit_marshal_variant): Fix conv_arg
3167         type in last commit, based on whether parameter is byref.
3168         
3169 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
3170
3171         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
3172         marshalling.
3173         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
3174         MONO_TYPE_OBJECT back for VARIANT support.
3175
3176 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
3177
3178         * marshal.c, marshal.h, icall-def.h: Implement 
3179         Marshal.ReAllocCoTaskMem.
3180
3181 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
3182
3183         * marshal.c: memory retention fixes: use the proper
3184         image cache for runtime_invoke method lookups.
3185
3186 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
3187
3188         * mempool.c: added code to help debug mempool allocations.
3189
3190 2007-01-11  Dick Porter  <dick@ximian.com>
3191
3192         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
3193         support (experimenting with faking it with IP_MTU_DISCOVER for
3194         systems that don't have IP_DONTFRAGMENT.)
3195         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
3196         icall.
3197
3198         * icall-def.h: new System.Net.Sockets.Disconnect icall.
3199
3200         * socket-io.h: Add new fields to MonoSocketAsyncResult
3201         corresponding to the new ones in Socket.cs.
3202
3203 2007-01-11  Raja R Harinath  <rharinath@novell.com>
3204
3205         Fix IronPython regression mentioned in #80249
3206         * metadata.c (do_mono_metadata_parse_generic_class): Clear
3207         'cached_context' field, since it may have been initialized as a
3208         side-effect of metadata parsing.
3209
3210         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
3211         (_MonoGenericClass.cached_class): Move here and rename from lone
3212         remaining field of ...
3213         (_MonoInflatedGenericClass): ... this.  Remove.
3214         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
3215         to changes.
3216
3217         Fix mcs/tests/test-128.cs regression.
3218         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
3219         2007-01-10 change below.
3220         [MONO_TYPE_OBJECT]: Recurse into array case.
3221
3222 2007-01-11  Raja R Harinath  <harinath@gmail.com>
3223
3224         * class-internals.h (mono_get_inflated_generic_class): Remove.
3225         * class.c (mono_get_inflated_generic_class): Remove.
3226         (mono_generic_class_get_class): Rename from
3227         mono_class_create_generic.
3228         (mono_class_from_mono_type) [GENERICINST]: Use it.
3229         * reflection.c, metadata.c: Update to changes.  Use
3230         'mono_class_from_mono_type'.
3231
3232 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
3233
3234         * reflection.c: use passed type when encoding an array element
3235         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
3236
3237 2007-01-09  Robert Jordan  <robertj@gmx.net>
3238
3239         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
3240         result arguments (someDelegate.EndInvoke (unrelatedAres)).
3241         Fixes bug #80392.
3242
3243 2007-01-09  Raja R Harinath  <rharinath@novell.com>
3244
3245         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
3246
3247         * object.c (set_value): Avoid aliasing between type->data.klass
3248         and type->data.generic_class.
3249
3250         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
3251
3252 2007-01-08  Raja R Harinath  <rharinath@novell.com>
3253
3254         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
3255         between type->data.klass and type->data.generic_class.
3256
3257 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
3258
3259         * marshal.c: In MS.NET, StringBuilder objects are not copied by
3260         value in out parameters.
3261
3262 2007-01-08  Raja R Harinath  <rharinath@novell.com>
3263
3264         Simplify invariant for MonoGenericClass::klass field.
3265         * class.c (mono_class_create_generic): Verify 'klass' is null.
3266         * metadata.c (do_mono_metadata_parse_generic_class): Don't
3267         initialize 'klass' field.
3268
3269 2007-01-05  Raja R Harinath  <rharinath@novell.com>
3270
3271         Ongoing work to avoid redundant data and simplify invariants.
3272         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
3273         'generic_class', and change type to a GenericInst.
3274         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
3275         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
3276
3277 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
3278
3279         * class.c : skip io-layer under PLATFORM_WIN32.
3280
3281 2007-01-03  Tor Lillqvist  <tml@novell.com>
3282
3283         Fix #80305: In a bundled executable, look in the bundled exe
3284         assembly to determine the runtime version. Add the possibility to
3285         bundle also the machine.config file.
3286         
3287         * assembly.c (mono_assembly_open_from_bundle): Make
3288         non-static. Allow being called even if we have no bundled
3289         assemblies, and return NULL right away in that case.
3290
3291         * domain-internals.h: Declare mono_assembly_open_from_bundle()
3292         here.
3293
3294         * domain.c (app_config_parse): Take an assembly exe file name as
3295         parameter instead of a config file name. Check for a bundled
3296         config file for that assembly by calling
3297         mono_config_string_for_assembly_file() (see below) before looking
3298         for one in the file system.
3299         (get_runtimes_from_exe): Corrsponding change to call of
3300         app_config_parse().
3301         (get_runtimes_from_exe): Check for bundled assembly exe file first
3302         by calling mono_assembly_open_from_bundle(). If no bundled
3303         assembly exe file is found, call mono_image_open() as before to
3304         look it up in the file system.
3305
3306         * mono-config.c: Add variable bundled_machinec_onfig.
3307         (mono_config_string_for_assembly_file): New function.
3308         (mono_config_for_assembly): Move code snippet that looks for a
3309         bundled assembly .config file into the above new function. Call
3310         it.
3311         (mono_register_machine_config, mono_get_machine_config): New
3312         functions to set and retrieve
3313
3314         * assembly.h: Declare mono_register_machine_config().
3315
3316         * mono-config.h: Declare mono_get_machine_config() and
3317         mono_config_string_for_assembly_file().
3318
3319         * icall.c: No declaration of environ necessary on Win32. It is
3320         declared (as a macro expanding to a function call) in stdlib.h.
3321         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
3322         New internal mono function. Returns the value of
3323         mono_get_machine_config() as a Mono string.
3324
3325         * icall-def.h: Add get_bundled_machine_config().
3326
3327 2007-01-04  Raja R Harinath  <rharinath@novell.com>
3328
3329         Remove redundant field
3330         * class-internals.h (_MonoGenericContext.container): Remove field.
3331         * loader.c (mono_method_get_signature_full): Don't parse a
3332         "container" for a signature parse when the signature is inflated
3333         immediately.
3334         (method_from_methodspec): Likewise, for a generic_inst.
3335         * class.c, metadata.c, reflection.c: Update to changes.
3336
3337 2006-01-04  Raja R Harinath  <rharinath@novell.com>
3338
3339         * class-internals.h (_MonoGenericClass): Rename 'context' field to
3340         'cached_context', and change semantics -- it starts off NULL, and
3341         is initialized on demand.
3342         * class.c (mono_generic_class_get_context): New accessor to
3343         replace 'context' field accesses.
3344         (mono_class_get_context): New helper.
3345         (*): Update to changes.
3346         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
3347
3348 2007-01-03  Miguel de Icaza  <miguel@novell.com>
3349
3350         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
3351         before the memcpy.   Fixes Marshal2 regression.
3352
3353 2007-01-02  Jb Evain  <jbevain@gmail.com>
3354
3355         * blob.h: add a MONO_TYPE_ENUM definition
3356         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
3357         fix the encoding of arrays of enums in custom attributes.
3358
3359         Fixes #79666.
3360
3361 2007-01-01  Miguel de Icaza  <miguel@novell.com>
3362
3363         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
3364         string is null terminated, but only cut the string short if it
3365         overflows the buffer.   
3366         
3367         (mono_string_to_byvalstr): Also fix this routine.   The code here
3368         was not properly terminating a string (it was only terminated
3369         because of the previous catch-all memset). 
3370
3371         I left the memset, because I do not know if applications expect
3372         the runtime to clear this region. 
3373
3374         Fixes #79944.
3375
3376         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
3377         Clear the error before returning to unmanaged code to prevent the
3378         runtime from being confused later on (fixes  80420).
3379         (ves_icall_type_from_name): Always call mono_loader_clear_error
3380         after parsing a type that could have failed.
3381         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
3382
3383         * loader.c (mono_loader_clear_error): Fix indentation.
3384
3385 2006-12-28  Martin Baulig  <martin@ximian.com>
3386
3387         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
3388
3389 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
3390
3391         * reflection.c: patch from Rolf Bjarne Kvinge to fix
3392         getting a token for an EnumBuilder.
3393
3394 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
3395
3396         * reflection.c: be more careful in case resource generation
3397         fails to create the data array.
3398
3399 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
3400
3401         * sgen-gc.c: write barrier for clone and fix unregister handles.
3402
3403 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
3404
3405         * reflection.c: some fixes needed in the generics code for the moving GC.
3406
3407 2006-12-22  Robert Jordan  <robertj@gmx.net>
3408
3409         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
3410         account. Fixes bug #80299.
3411
3412 2006-12-21  Raja R Harinath  <rharinath@novell.com>
3413
3414         Fix WaitHandle usage in delegates.
3415         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
3416         * object.c (mono_wait_handle_new): Use the property set method to
3417         initialize the handle.
3418         (mono_wait_handle_get_handle): New.
3419         * threadpool.c (mono_async_invoke): Use it.
3420         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
3421         Likewise.
3422         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
3423
3424 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
3425
3426         * marshal.c (emit_marshal): Call emit_marshal_variant and
3427         emit_marshal_com_interface when applicable.
3428         (emit_marshal_variant, emit_marshal_com_interface): Add
3429         methods for this case and remove if's from emit_marshal_object.
3430         
3431 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
3432
3433         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
3434
3435 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
3436
3437         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
3438         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
3439         and GlobalFree on Windows. Remove FIXME.
3440
3441 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
3442
3443         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
3444         implementation for managed objects.
3445
3446 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
3447
3448         * object.c: implemented code to be used for checking
3449         that no reference field overlaps with non-references.
3450
3451 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
3452
3453         * threadpool.c: fix queue code to be compatible with the
3454         moving GC.
3455
3456 2006-12-18  Miguel de Icaza  <miguel@novell.com>
3457
3458         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
3459         in structures by throwing ArgumentNullException.
3460
3461         (emit_marshal_safehandle): Also when they are null parameters.
3462
3463         (emit_marshal_safehandle): Add support for ref
3464         SafeHandles parameters
3465
3466 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
3467
3468         * profiler.c: updated to use the mono-dl API instead of
3469         gmodule.
3470
3471 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
3472
3473         * profiler.c: updated to use the mono-dl dynamic loading
3474         API instead of gmodule.
3475
3476 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
3477
3478         * profiler.c: use readlink, older versions of glib don't have
3479         g_file_read_link ().
3480
3481 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3482
3483         * profiler.c: try to detect the path to mono if libc fails to provide
3484         a useful name (bug #80286).
3485
3486 2006-12-16  Raja R Harinath  <rharinath@novell.com>
3487
3488         Fix #80242
3489         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
3490         instance, use the generic type definition instead.
3491         (ves_icall_Type_GetNestedTypes): Likewise.
3492         * class.c (mono_class_create_generic): Always set the
3493         nested_classes of a generic instance to NULL, even if the generic
3494         type definition has nested types.
3495
3496 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
3497
3498         * marshal.c (mono_string_from_bstr): Revert previous Windows change
3499         and fix on Linux.
3500         
3501 2006-12-15  Miguel de Icaza  <miguel@novell.com>
3502
3503         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
3504         my arguments were in the wrong order.   I also fixed the Windows
3505         version which seems to have had the same issue.
3506
3507         (mono_free_bstr): On Unix, this is g_free.
3508         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
3509         conversions (for the tests in corlib to pass).
3510
3511 2006-12-14  Miguel de Icaza  <miguel@novell.com>
3512
3513         * marshal.c (emit_ptr_to_object_conv): For now, ignore
3514         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
3515         exception if a ref SafeHandle in a struct has changed).
3516         
3517         (emit_struct_conv): Do not perform layout checks for classes
3518         derived from SafeHandle, as those are specially handled. 
3519
3520         (emit_object_to_ptr_conv): Add support for
3521         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
3522
3523         (emit_marshal_safehandle): Implement conversion of return values
3524         of safehandles (MARSHAL_ACTION_CONV_RESULT).
3525         
3526         * threads.c: WaitHandle now is compiled with two different handles
3527         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
3528         for 2.0.
3529         
3530         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
3531         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
3532         these routines to cope with both kinds of fields.
3533
3534 2006-12-12  Miguel de Icaza  <miguel@novell.com>
3535
3536         * metadata.c (mono_type_to_unmanaged): Handle the case where
3537         type->data.klass is a SafeHandle, and in that case, return the
3538         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
3539         MONO_MARSHAL_CONV_SAFEHANDLE. 
3540
3541 2006-12-11  Miguel de Icaza  <miguel@novell.com>
3542
3543         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
3544         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
3545         calling emit_marshal_object.
3546
3547         (emit_marshal_safehandle): Implement marshalling of
3548         SafeHandle parameters (no ref support yet).
3549
3550         (MarshalAction): Document the defines as I implement
3551         them for SafeHandle.
3552
3553         (emit_marshal_object): indentation police.
3554
3555         * class-internals.h: Define MonoSafeHandle.
3556         Add safehandle_class to MonoDefaults type.
3557
3558         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
3559         list of classes to check for fields. 
3560
3561         * domain.c (mono_init_internal): Add SafeHandle to the list of
3562         mono_defaults loaded.
3563
3564 2006-12-15  Raja R Harinath  <rharinath@novell.com>
3565
3566         Fix #80253
3567         * reflection.c (mono_reflection_bind_generic_parameters): If the
3568         generic type definition is a type builder, ensure that it is fully
3569         initialized before instantiating it.  Kill some dead code.
3570
3571 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
3572
3573         * object.c: clear the loader_error () before loading
3574         more metadata stuff (bug #80258).
3575
3576 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
3577
3578         * icall.c, icall-defs.h: type modifiers icalls for
3579         parameters and properties.
3580
3581 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
3582
3583         * object.c, icall.c: fixed warnings.
3584
3585 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
3586
3587         * marshal.c: fixed a couple of leaks and coding style in a few places.
3588
3589 2006-12-08  Dick Porter  <dick@ximian.com>
3590
3591         * process.c: Cope with NULL ProcessStartInfo arguments on windows
3592         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
3593         80173.
3594
3595 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
3596
3597         * process.c: ProcessStartInfo may have only filename set and
3598         arguments can be NULL.
3599
3600 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3601
3602         * icall.c: fix leak found by Robert Jordan.
3603
3604 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
3605
3606         * marshal.c, marshal.h: generate managed method to access an element
3607         of a multi-dimensional array.
3608
3609 2006-11-30  Paolo Molaro (lupus@ximian.com)
3610
3611         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
3612
3613 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
3614
3615         * icall.c: back out GetFields () fix until the serialization code is
3616         fixed to not depend on the incorrect behaviour.
3617
3618 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
3619
3620         * profiler.c: provide defaults if none are set.
3621
3622 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
3623
3624         * Makefile.am, attrdefs.h: new public header file with
3625         constants for attributes for use by embedders.
3626
3627 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
3628
3629         * icall.c: GetFields () fix for bug #80064.
3630
3631 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
3632
3633         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
3634         removed long unused icalls.
3635
3636 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
3637   
3638         * marshal.c: 
3639                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
3640                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
3641                 can be generated without a delegate class.
3642                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
3643         
3644         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
3645
3646 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3647
3648         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
3649         #80069.
3650
3651 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
3652
3653         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
3654         icall-def.h: added icalls needed by System.GC.
3655
3656 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
3657
3658         * loader.c: ensure the class in catch clauses is handled
3659         correctly for generics methods (fixes bug#79980).
3660
3661 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
3662
3663         * monitor.h, monitor.c: added mono_locks_dump () function
3664         to help debug deadlocks involving managed locks.
3665
3666 2006-11-13  Dick Porter  <dick@ximian.com>
3667
3668         * file-io.c (get_file_attributes): If the file is a symlink try
3669         and get the stat data for the target, but also add the
3670         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
3671         the specs for the windows symlink support, but will probably have
3672         to be reworked when I have test data from a vista machine.  Fixes
3673         bug 79887.
3674
3675 2006-11-13  Dick Porter  <dick@ximian.com>
3676
3677         * gc.c (mono_domain_finalize): 
3678         * marshal.c (mono_delegate_begin_invoke): 
3679         * threadpool.c (socket_io_init, mono_thread_pool_init)
3680         (mono_thread_pool_finish): 
3681         * monitor.c (mono_monitor_try_enter_internal): 
3682         * threads.c (mono_thread_resume, mono_thread_init)
3683         (mono_thread_suspend_all_other_threads)
3684         (mono_thread_execute_interruption): 
3685         * appdomain.c (mono_domain_unload): Check for NULL error returns
3686         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
3687         75733.
3688
3689 2006-11-11  Miguel de Icaza  <miguel@novell.com>
3690
3691         * process.c
3692         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
3693         Only close the handle if the value of the handle is not
3694         INVALID_HANDLE_VALUE.  This just makes the process a bit more
3695         robust.
3696
3697         Improvement for #75733, so that we do not run into this problem. 
3698
3699         
3700         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
3701         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
3702         internal variables.  Fixes #79462 
3703         
3704
3705 2006-11-09  Dick Porter  <dick@ximian.com>
3706
3707         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
3708         Use poll() not select().  Fixes bug 79397.
3709
3710 2006-11-09  Raja R Harinath  <rharinath@novell.com>
3711
3712         Fix #79872
3713         * assembly.c (mono_assembly_load_from_full): Check that the given
3714         image has an assembly manifest.
3715
3716 2006-11-09  Ankit Jain  <jankit@novell.com>
3717
3718         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
3719         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
3720         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
3721
3722 2006-11-07  Dick Porter  <dick@ximian.com>
3723
3724         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
3725         Put the old resolver behaviour back for pre-2.0 profiles.
3726
3727 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
3728
3729         * threadpool.c: precise GC and locking fixes.
3730
3731 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
3732
3733         * class.c: don't load types that have an explicit unaligned
3734         managed reference. Provide better info in the TypeLoad exception.
3735         Part of the fix for bug #79744.
3736         * object.c: use the correct check for class type load issues.
3737
3738 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
3739
3740         * class.c: enforce alignment of fields with managed references
3741         even when Pack=1 is forced by the user (bug #77788).
3742
3743 2006-11-03  Dick Porter  <dick@ximian.com>
3744
3745         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
3746         If the address reverse lookup fails, return it as the hostname
3747         anyway.  Fixes bug 79721.
3748
3749 2006-11-03  Dick Porter  <dick@ximian.com>
3750
3751         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
3752         Fix build on Windows.
3753
3754 2006-11-02  Dick Porter  <dick@ximian.com>
3755
3756         * icall-def.h: 
3757         * object-internals.h: 
3758         * exception.c (mono_get_exception_thread_interrupted): 
3759         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
3760         Fixes bug 74525.
3761
3762         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
3763         Check for pending Thread.Interrupt.
3764
3765 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
3766         * loader.c: Fixed bug 79684.
3767
3768 2006-10-27  Dick Porter  <dick@ximian.com>
3769
3770         * file-io.c (get_file_attributes): Force symlinks to directories
3771         to be returned as a regular file.  Fixes bug 79733.
3772 2006-10-26  Dick Porter  <dick@ximian.com>
3773
3774         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
3775         CreateFile to open a directory then we need to set the
3776         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
3777
3778 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
3779
3780         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
3781         friends.
3782
3783 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
3784
3785         * sgengc.c: small cleanup of timer code.
3786
3787 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
3788
3789         * sgen-gc.c: fix some warnings and start adding support for
3790         complete object removal on domain unload.
3791
3792 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
3793
3794         * assembly.c: build_assembly_name should not consider a version
3795         number without build or revision number invalid. Fixes bug #79715.
3796
3797 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
3798
3799         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
3800         call kernel32 function OutputDebugString directly.
3801         
3802         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
3803         
3804 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
3805
3806         * reflection.c: small cleanup, using a function to insert a MonoString
3807         in the string heap.
3808
3809 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
3810
3811         * reflection.c: moving GC fixes.
3812
3813 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
3814
3815         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
3816         all the objects with finalizers belonging to an unloading appdomain.
3817
3818 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
3819
3820         * sgen-gc.c: added ability to allocate even when the nursery is fully
3821         pinned and fixed a couple of bugs.
3822
3823 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
3824
3825         * threads.h: Revert the last change for now.
3826
3827         * threads.h (mono_thread_get_pending_exception): Rename this to
3828         mono_thread_get_undeniable_exception ().
3829
3830 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
3831
3832         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
3833         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
3834         when fname does not refer to valid assembly. This result in a more
3835         meaningful error message.
3836         * exception.c: added mono_get_exception_bad_image_format2 which 
3837         constructs a BadImageFormatException using the ctor taking a custom
3838         message and the file name. Passing in a NULL msg results in a default
3839         message.
3840         * exception.h: define mono_get_exception_bad_image_format2 function.
3841         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
3842         when file name pointed to an invalid IL image. Use 
3843         mono_get_exception_file_not_found2 to construct FileNotFoundException,
3844         as this results in a more meaningful error message.
3845
3846 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
3847
3848         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
3849         #79465.
3850
3851 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
3852
3853         * metadata.c (mono_type_size): Change the align parameter to guint32 for
3854         consistency with the other _size functions.
3855         (mono_type_stack_size): Ditto.
3856
3857         * class.c object.c icall.c: Fix warnings caused by the above change.
3858
3859         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
3860
3861         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
3862
3863         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
3864
3865 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
3866
3867         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
3868         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
3869         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
3870         threadpool.h, threads-types.h: mark more internal functions.
3871
3872 2006-10-11  Dick Porter  <dick@ximian.com>
3873
3874         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
3875         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
3876         reproduce the bug even before applying the fix.)
3877
3878 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
3879
3880         * reflection.c: allow retrieving attributes for arguments in generic
3881         methods (bug #79241).
3882
3883 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
3884
3885         * debug-mono-symfile.c: properly check fopen () result (found by
3886         coverity).
3887
3888 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
3889
3890         * reflection.c: make error message clearer and fixed two
3891         issuelets found by Coverity.
3892
3893 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
3894
3895         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
3896
3897 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
3898
3899         * object-internals.h, gc-internal.h, profiler-private.h:
3900         mark internal functions.
3901
3902 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
3903
3904         * reflection.c: put data in the text section.
3905         * icall.c: recognize more types in type_from_typename ().
3906         * process.c, marshal.c: added some GC FIXMEs.
3907
3908 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
3909
3910         * loader.c: check for NULL before initializing.
3911
3912 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
3913
3914         * gc.c (finalizer_thread): Use a non-alertable wait here.
3915
3916         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
3917         until the correct solution is found.
3918
3919 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
3920
3921         * reflection.c (mono_module_get_object): Avoid an assert when operating on
3922         modules with no metadata. Fixes #79596.
3923
3924         * image.c (load_metadata_ptrs): Put back the error message when
3925         the #- heap is encountered since the support is not complete yet.
3926
3927 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
3928
3929         * gc.c: do not allow the user to SuppressFinalize () a
3930         delegate because it would leak the trampoline if present.
3931
3932 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
3933
3934         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
3935         PropertyPtr table.
3936
3937 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
3938
3939         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
3940
3941         * metadata.c (mono_metadata_get_param_attrs): Ditto.
3942
3943         * row-indexes.h: Add definitions for *Ptr tables.
3944
3945         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
3946
3947         * metadata.c (mono_metadata_translate_token_index): New helper function to
3948         translate table indexes used in uncompressed metadata.
3949         (mono_metadata_decode_table_row): Ditto.
3950         (mono_metadata_decode_table_row_col): Ditto.
3951
3952         * metadata.c: Add table schema for *Ptr tables.
3953
3954         * class.c loader.c: Use the new helper function to access the affected metadata
3955         tables.
3956         
3957         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
3958         #38532.
3959         
3960 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
3961
3962         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
3963         sequences which can be unbounded in size. Fixes #79583.
3964
3965 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
3966
3967         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
3968         static initialization.
3969
3970         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
3971
3972         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
3973
3974         * domain.c (mono_domain_free): Free up type_init_exception_hash.
3975
3976         * object.c (mono_runtime_class_init): Implement correct semantics when a static
3977         ctor fails, i.e. throw the same exception on subsequent accesses.
3978         
3979 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
3980
3981         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
3982         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
3983         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
3984         Handle marshalling of interfaces and VARIANTs contained in structs.
3985         
3986         Code is contributed under MIT/X11 license.
3987         
3988 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
3989
3990         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
3991         
3992         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
3993         mempool.
3994
3995 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3996
3997         * console-io.c: ignore previous SIGINT handler.
3998
3999 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
4000
4001         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
4002         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
4003         #79460, #79461, #79485.
4004
4005         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
4006
4007         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
4008         #79217.
4009
4010 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
4011
4012         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
4013         could be generated from it.
4014
4015 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
4016
4017         * rand.c: fix read loop to correctly handle EINTR.
4018
4019 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
4020
4021         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
4022         internal calls are defined to keep methods closer to the declaring
4023         type and allow a significant reduction in runtime relocations and
4024         memory usage.
4025
4026 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
4027
4028         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
4029         exception message to have FileNotFoundException use the default
4030         assembly load error message. Fixes bug #79426.
4031         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
4032
4033 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4034
4035         * threadpool.c: (start_thread_or_queue) use the root domain when
4036         creating the thread instead of the async object one.
4037
4038 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
4039
4040         * class.c, object.c, class-internals.h, reflection.c:
4041         for arrays, store element_size inside MonoClass (speedup
4042         for array object creation).
4043
4044 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
4045
4046         * icall.c: fixed CodeBase to use the file name and not the module
4047         name (bug #79365).
4048
4049 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
4050
4051         * mono-debug.c, mono-debug.h: export find_method as
4052         mono_debug_find_method ().
4053
4054 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
4055
4056         * debug-helpers.c, class-internals.h: added a few functions useful
4057         when debugging under gdb.
4058
4059 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4060
4061         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
4062         characters that need special handling.
4063
4064 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
4065
4066         * mono-config.c: make the os/cpu specification more flexible,
4067         allowing lists and negation.
4068
4069 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
4070
4071         * marshal.c: COM Interop fixes. Handle case where method->klass.
4072         is interface. Handle BSTR/MonoString when null. Use CDECL as 
4073         calling convention on non-windows platforms. This is for
4074         compatibility with XPCOM and MainWin COM.
4075         
4076         Code is contributed under MIT/X11 license.
4077         
4078
4079 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
4080
4081         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
4082         correctly. Fixes #79217.
4083
4084         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
4085
4086 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
4087
4088         * mono-config.c: allow both an os and cpu attribute for dllmap
4089         and dllentry elemnets to enable a single config file to be used
4090         for multiple architectures.
4091
4092 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
4093
4094         * loader.c: MonoLoaderError was cleared too soon on load failure.
4095         Fixes bug #79424.
4096
4097 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
4098
4099         * icall.c: use the defining class vtable when accessing a
4100         static field, not a pobblibly derived class.
4101
4102 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
4103
4104         * icall.c string-icalls.c: Remove references to unicode.h.
4105
4106         * unicode.h unicode.c Makefile.am: Remove these unused source files.
4107
4108         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
4109
4110         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
4111         indicating the image where custom marshaller types should be looked up.
4112         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
4113         custom marshallers, instead of corlib. Fixes #79425.
4114
4115 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
4116
4117         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
4118
4119 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
4120
4121         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
4122         Implement Environment.ProcessorCount.
4123         
4124         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
4125         Implement Environment.ProcessorCount.
4126         
4127         * icall.c: 
4128         Add Environment.ProcessorCount icall.
4129         
4130         Patch by Jason McFall.
4131
4132 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4133
4134         * assembly.c: don't append .exe/.dll when the filename already contains
4135         one of those extensions.
4136
4137 2006-09-12  Martin Baulig  <martin@ximian.com>
4138
4139         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
4140         to array interfaces.
4141
4142 2006-09-11  Martin Baulig  <martin@ximian.com>
4143
4144         * reflection.c (mono_image_build_metadata): Create the
4145         MethodImpl's after emitting all types and methods, so we don't
4146         need another fixup pass for them.
4147
4148 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
4149
4150         * class.c (mono_class_from_name_case): Fix regression introduced by the last
4151         change.
4152
4153 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
4154
4155         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
4156         unload.
4157
4158 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
4159
4160         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
4161         args is not set. Fixes #78926.
4162
4163 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
4164
4165         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
4166
4167         * image.c (load_class_names): Move this to class.c, and rename it to 
4168         'mono_image_init_name_cache'.
4169         (load_modules): Fix a warning.
4170
4171         * class.c icall.c image.c: Initialize image->name_cache lazily.
4172
4173         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
4174         on its name using information in the AOT file.
4175
4176         * class.c (mono_class_from_name): Use the new hook function.
4177
4178 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
4179
4180         * reflection.c (mono_param_get_objects): Handle enum default parameter values
4181         correctly.
4182
4183         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
4184         Fixes #79289.
4185         
4186 2006-09-06  Martin Baulig  <martin@ximian.com>
4187
4188         * icall.c (mono_lookup_internal_call): Small fix.
4189
4190 2006-09-05  Raja R Harinath  <rharinath@novell.com>
4191
4192         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
4193         double g_free.
4194
4195 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
4196
4197         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
4198         when --debug is specified.
4199
4200 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
4201
4202         * class.c (setup_generic_array_ifaces): Fix a warning.
4203
4204 2006-09-04  Miguel de Icaza  <miguel@novell.com>
4205
4206         * Temporarily remove the patch to assemly.c that checks the
4207         assembly versions as it breaks our gacutil.
4208
4209 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
4210
4211         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
4212
4213         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
4214         a net 1.0 runtime.
4215
4216         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
4217         created using the default ctor. Fixes #79152.
4218         (mono_string_builder_to_utf16): Ditto.
4219
4220 2006-09-01  Martin Baulig  <martin@ximian.com>
4221
4222         Fix handling of the generic array interfaces.
4223
4224         * class-internals.h
4225         (MonoDefaults): Removed `generic_array_class' and added
4226         `generic_ilist' class.
4227
4228         * class.c
4229         (mono_bounded_array_class_get): Add the new generic array interfaces.
4230         (setup_generic_array_ifaces): New static method; create vtable
4231         entries for each method in the generic array interfaces.
4232
4233         * metadata.c
4234         (select_container): Allow "parent-less" generic methods.
4235
4236         * marshal.c
4237         (mono_marshal_get_generic_array_helper): New public method.
4238
4239         * icall.c
4240         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
4241         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
4242         moved the interncall into System.Array.
4243
4244 2006-09-01  Raja R Harinath  <rharinath@novell.com>
4245
4246         A few more cases of avoiding work on types with ->byref set.
4247         Has the real fix for #79238
4248         * icall.c (is_generic_parameter): New helper.
4249         (ves_icall_Type_GetGenericParameterPosition): Use it.
4250         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
4251         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
4252         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
4253         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
4254         reference types.
4255         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
4256         reference types.
4257         (ves_icall_Type_get_IsGenericInstance): Likewise.
4258         (ves_icall_Type_get_IsGenericType): Likewise.
4259
4260 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
4261
4262         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
4263         class if possible.
4264
4265         * mempool.h (mono_mempool_get_allocated): New helper function.
4266
4267         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
4268         change.
4269
4270         * mempool.c: Fix warnings and the calculation of stats.
4271
4272         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
4273
4274         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
4275
4276         * loader.c (mono_get_method_from_token): Update method_count stat.
4277
4278         * class-internals.h (MonoStats): Add some stats.
4279
4280 2006-08-31 Robert Jordan  <robertj@gmx.net>
4281
4282         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
4283         with managed variants.
4284         All code is contributed under the MIT/X11 license.
4285         
4286 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
4287
4288         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
4289         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
4290
4291         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
4292
4293         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
4294         with cycles in classes.
4295
4296         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
4297
4298         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
4299         missing a [MarshalAs] directive. Fixes #79203.
4300
4301         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
4302         klass->marshal_info. Fixes #79217.
4303
4304 2006-08-30  Martin Baulig  <martin@ximian.com>
4305
4306         Committing a patch from Joachim Ante <joe@otee.dk>:
4307         Add support for binary data symbol stores.
4308
4309         * debug-mono-symfile.c
4310         (mono_debug_open_mono_symbol_file): Renamed into
4311         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
4312         arguments.
4313
4314         * mono-debug.c
4315         (mono_debug_open_image): Added `raw_contents' and `size' args.
4316         (mono_debug_init_2_memory): New public function.
4317
4318 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
4319
4320         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
4321
4322 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4323
4324         * appdomain.c: implement support for ShadowCopyFiles.
4325
4326 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
4327
4328         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
4329         when value is NULL (and should remove CID #51).
4330
4331 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4332
4333         * image.c: moved 2 functions to ../utils.
4334
4335 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
4336
4337         * gc.c: cope with the target object of a GC handle being NULL
4338         (bug #78877).
4339
4340 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
4341
4342         * class.c: recursively check parent's explicit implementations
4343         of interface methods (fixes bug #79125).
4344
4345 2006-08-19  Miguel de Icaza  <miguel@novell.com>
4346
4347         * filewatcher.c: Avoid warnings when building, do not redefine
4348         constants that are defined.
4349
4350         Remove warnings.
4351
4352 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4353
4354         * image.c: don't fail when the link points to an absolute path.
4355
4356 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
4357
4358         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
4359         Fix CID #3.
4360
4361 2006-08-17  Miguel de Icaza  <miguel@novell.com>
4362
4363         * image.c (full_path): A new method used to obtain the actual path
4364         of an assembly even in the presence of symbolic links.  
4365
4366         This is necessary for the case where we are running a binary that
4367         has been GACed, but we are using the "published" path name
4368         ($prefix/mono/1.0/blah.exe) which happens to point to the real
4369         file in the GAC.
4370
4371         This was the source of the failure for the `xsp' command with the
4372         recent AppDomain changes, as far as the runtime was concerned,
4373         there were two different assemblies: $prefix/mono/1.0/blah.exe and
4374         $prefix/mono/gac/blah/version/blah.exe.
4375
4376         (do_mono_image_open): use full path
4377
4378 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
4379
4380         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
4381
4382 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
4383
4384         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
4385         domain_id is supplied. Fix CID #241 and corlib's unit tests.
4386
4387 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
4388
4389         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
4390         small structures. Fixes #78990.
4391
4392 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
4393
4394         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
4395
4396         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
4397
4398 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4399
4400         * appdomain.c:
4401         * marshal.c: don't load all the assemblies from a domain into newly
4402         created ones. The new domains might have different rules and load
4403         assemblies from different locations. Fixes bug #76757.
4404
4405         Patch by Lluis. Conflicts resolved by Brian Crowell.
4406
4407 2006-08-16  Alp Toker  <alp@atoker.com>
4408
4409         * socket-io.c: First half of the fix for #79084.
4410         Set sa_size to the length of the content, not that of the struct.
4411         Don't add NULL suffix to the content, this should be done in
4412         managed code if needed.
4413
4414 2006-08-14  Raja R Harinath  <rharinath@novell.com>
4415
4416         Fix part of #79012
4417         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
4418         mono_metadata_parse_type returns NULL.
4419
4420 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
4421
4422         * normalization-tables.h : new file for string normalization data.
4423         * locales.c, locales.h, icall.c :
4424           added load_normalization_resource() for string normalization,
4425           and icall as well.
4426         * Makefile.am : added normalization-tables.h to the sources.
4427
4428 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
4429
4430         * marshal.c: Add more helper functions to reduce code duplication and use them
4431         everywhere.
4432
4433 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
4434
4435         * marshal.c: Fix non-x86 stdcall warnings.
4436         
4437         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
4438         them everywhere.
4439
4440 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
4441
4442         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
4443         type check on multi-dimensional arrays. Fixes #79000.
4444
4445 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
4446
4447         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
4448         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
4449         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
4450         * class-internals.h: add is_com_object to class structure.
4451         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
4452         null checks to COM object marshalling. Fix .ctor call on RCW.
4453         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
4454         
4455         All code is contributed under the MIT/X11 license.
4456
4457 2006-08-09  Dick Porter  <dick@ximian.com>
4458
4459         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
4460         racing mono_monitor_allocator_lock() somewhere, so don't delete
4461         the critical section for now.  Found by running and exiting
4462         monodevelop.
4463
4464 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
4465
4466         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
4467         (ves_icall_System_ComObject_FindInterface): Ditto.
4468         (ves_icall_System_ComObject_CacheInterface): Ditto.
4469
4470         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
4471         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
4472
4473 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4474
4475         * threadpool.c: treat pipes from process asynchronous reads as sockets
4476         when reading from them, so we get select/poll or epoll to wait for
4477         data.
4478
4479 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
4480
4481         * loader.c: Fix a typo (CID #233) in the null check.
4482
4483 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
4484
4485         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
4486         Hopefully fixes #78949.
4487         
4488         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
4489         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
4490         bytes. Fixes #78972.
4491
4492 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4493
4494         * filewatcher.c: we need to set errno here.
4495
4496 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4497
4498         * filewatcher.c: let Win32Exception get the error value.
4499
4500 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4501
4502         * filewatcher.c: translate errno into win32 errors for Win32Exception
4503         to know what happened.
4504
4505 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
4506
4507         * threadpool.c: Fix more warnings.
4508
4509         * assembly.c (search_loaded): Fix warnings.
4510
4511         * threadpool.c (mono_thread_pool_finish): Fix warnings.
4512         (mono_async_invoke): Ditto.
4513
4514 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
4515
4516         * object.c (mono_remote_class_vtable): Need to create proxy vtable
4517         entries for __ComObject type in addition to ComImport types.
4518         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
4519         about hash table.
4520         
4521         All code is contributed under the MIT/X11 license.
4522
4523 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
4524
4525         * image.c: avoid tentative loading of modulerefs that contain
4526         no metadata (P/Invoke library names).
4527
4528 2006-07-28  Dick Porter  <dick@ximian.com>
4529
4530         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
4531         mono_loader_lock() somewhere, so don't delete the critical section
4532         for now.  Found by running and exiting monodevelop.
4533
4534 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4535
4536         * filewatcher.c: define the inotify syscalls when we're building on
4537         linux and have sys/syscall.h. The build system might not have support
4538         for inotify but the target system might have it.
4539
4540 2006-07-26  Miguel de Icaza  <miguel@novell.com>
4541
4542         * domain.c: Documentation updates.
4543
4544         * loader.c (mono_free_method): Do not release the method
4545         information if we are being profiled, as profilers will use this
4546         information at shut down to present some data to the user.
4547
4548         This is needed so that the profiler does not crash, as the
4549         profiler tends to keep MonoMethods around, and they might become
4550         invalid if we free these.
4551
4552         (mono_get_method_constrained): Return the original CIL stream
4553         method as well, so verification can be performed against it.
4554
4555 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4556
4557         * filewatcher.[ch]: support for inotify file system watcher.
4558         * icall.c: add new internal calls for the inotify file system watcher.
4559
4560 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4561
4562         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
4563         #78888.
4564
4565 2006-07-20  Dick Porter  <dick@ximian.com>
4566
4567         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
4568         warning.
4569
4570 2006-07-20  Dick Porter  <dick@ximian.com>
4571
4572         * threads.c (start_wrapper): Do the thread cleanup while we still
4573         hold a reference to its object.  Fixes bug 78123.
4574
4575 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
4576
4577         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
4578         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
4579           "managed-to-managed".
4580         * icall.c: Redirect string constructors that take sbyte* to
4581           ves_icall_System_String_ctor_RedirectToCreateString.
4582         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
4583           to CreateString () methods with matching signature.
4584         * reflection.c: Use original security informations for
4585           MONO_WRAPPER_MANAGED_TO_MANAGED.
4586         * security-manager.c: Use original security informations for
4587           MONO_WRAPPER_MANAGED_TO_MANAGED.
4588         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
4589           that is a placeholder and only its address should be used.
4590         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
4591           that is a placeholder and only its address should be used.
4592
4593 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
4594
4595         Begin implementing COM Interop.
4596         * appdomain.c: Increment corlib version.
4597         * class.c: Set ComImport classes' parent to __ComObject.
4598         * loader.c: Mark cominterop methods as such.
4599         * domain.c: Add __ComObject class to MonoDefaults structure.
4600         * image.c: Add 2 hashtables to the image for COM Interop related methods
4601         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
4602         using the mempool allocator
4603         
4604         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
4605         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
4606         declaration for mono_metadata_type_dup_mp.
4607         
4608         * debug-helpers.c: Added strings for two additional wrapper types
4609         * object.c: Create proxy objects for ComImport classes
4610         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
4611         and added __ComObject class to MonoDefaults structure.
4612         
4613         * object-internals.h: Finish MonoRealProxy definition, and add definition of
4614         MonoComInteropProxy and MonoComObject.
4615         
4616         * marshal.c: Added support for COM Interop
4617         (signature_cominterop): Converts managed signature to corresponding
4618         unmanaged COM signature.
4619         (cominterop_get_function_pointer): gets unmanaged function pointer via
4620         COM object vtable
4621         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
4622         (cominterop_get_method_interface): returns interface type that method is defined on
4623         (mono_mb_emit_cominterop_call): emits native call to function pointer
4624         gotten from vtable
4625         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
4626         that matches signature of unmanaged function.
4627         (cominterop_get_native_wrapper): wrapper around adjusted method call.
4628         (cominterop_get_invoke): forwards call from proxy to __ComObject
4629         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
4630         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
4631         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
4632         
4633         * marshal.h: Added Marshal icall declarations.
4634         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
4635         so we can access them in finalizer
4636         
4637 2006-07-14  Dick Porter  <dick@ximian.com>
4638
4639         * object.c (mono_type_initialization_cleanup): Fix a race
4640         condition by temporarily commenting out the critical section
4641         deletion.
4642
4643 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
4644
4645         * reflection.c (create_custom_attr): Fix some warnings.
4646         (create_custom_attr_data): Ditto.
4647         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
4648         types. Fixes #78855.
4649
4650 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
4651
4652         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
4653
4654         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
4655
4656 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
4657
4658         * reflection.c (resolve_object): Add support for DynamicMethod.
4659
4660         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
4661         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
4662
4663 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
4664
4665         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
4666         don't leak GPtrArray's pdata has we have no use (nor free) for it.
4667
4668 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
4669
4670         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
4671         Fixes #77888.
4672
4673 2006-06-30  Raja R Harinath  <rharinath@novell.com>
4674
4675         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
4676         slightly: remove a shadow local variable.
4677
4678 2006-06-29  Raja R Harinath  <rharinath@novell.com>
4679
4680         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
4681         definition that introduces the virtual function slot.
4682         Also fix Coverity #105.
4683
4684 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
4685
4686         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
4687         for dynamic assemblies. Fixes #78724.
4688
4689 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
4690
4691         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
4692         Fixes #78722.
4693
4694 2006-06-21  Martin Baulig  <martin@ximian.com>
4695
4696         * reflection.c
4697         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
4698         fixes #76484.
4699
4700 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
4701
4702         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
4703
4704 2006-06-20  Raja R Harinath  <rharinath@novell.com>
4705
4706         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
4707         nor TYPEREFs.
4708         * class.c (mono_class_create_from_typespec): Add 'context' argument.
4709         Inflate result if necessary.
4710         (mono_class_get_full): Remove old version.  Rename from
4711         'mono_class_get' and add 'context' argument.  Pass it to
4712         ..._create_from_typespec.
4713         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
4714         (mono_ldtoken): Revert change below.
4715
4716 2006-06-20  Martin Baulig  <martin@ximian.com>
4717
4718         * class.c (mono_ldtoken): Don't pass the generic context to
4719         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
4720
4721 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
4722
4723         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
4724         and later freeing it. Fixes #78638.
4725
4726 2006-06-15  Miguel de Icaza  <miguel@novell.com>
4727
4728         * icall.c (mono_class_get_throw): Revert over-zealous error
4729         throwing, the caller for mono_class_get_throw will cope with
4730         errors when classes are not properly initialized already.
4731
4732         The code still copes with loader exceptions though.
4733
4734         Fixes the regression in reftype1 and reftype3 from the CAS tests.
4735         
4736 2006-06-14  Miguel de Icaza  <miguel@novell.com>
4737
4738         Fixes the `make run1' version of RuntimeAbort (to be commited,
4739         source is in Bugzilla).
4740         
4741         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
4742         FALSE on class loading failure instead of returning true.
4743
4744         * class.c (mono_class_create_from_typedef): It is possible for
4745         mono_metadata_interfaces_from_typedef_full to fail if a class is
4746         not found, cope with this.
4747         
4748
4749 2006-06-14  Dick Porter  <dick@ximian.com>
4750
4751         * socket-io.c: 
4752         * process.c: Fix a bunch of signed/unsigned warnings from gcc
4753         4.1.1
4754
4755 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
4756
4757         * culture-info-table.h : oops, forgot to make it nsync with r61548.
4758
4759 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
4760
4761         * icall.c: Another fix for building mono in Visual Studio.
4762
4763 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
4764
4765         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
4766         
4767 2006-06-09  Martin Baulig  <martin@ximian.com>
4768
4769         * debug-mono-symfile.c: Put this back and really fix it this
4770         time. Sorry for all the trouble.
4771
4772 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
4773
4774         * icall.c (mono_class_get_throw): Fix a warning.
4775         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
4776         ReflectionTypeLoadException if needed. Fixes #78606.
4777
4778         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
4779         (mono_class_init): Ditto.
4780
4781         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
4782         ref_only exceptions.
4783         (mono_loader_clear_error): Make this work even if there is no error.
4784
4785 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
4786
4787         * object-internals.h marshal.c marshal.h icall.c: Implement method 
4788         Marshal.GetComSlotForMethodInfo using internal call.
4789
4790 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
4791
4792         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
4793         a function for signalling it.
4794
4795         * class.c (mono_class_from_typeref): Use the new kind of loader error when
4796         a referenced assembly is not found.
4797
4798         * loader.c (mono_loader_error_prepare_exception): Add support for 
4799         LOADER_ERROR_ASSEMBLY. Fix formatting.
4800
4801 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
4802
4803         * domain.c appdomain.c class-internals.h marshal.c: Add support 
4804         for VARIANT marshalling on windows and increment corlib version
4805         since Variant struct was added.
4806
4807 2006-06-03  Miguel de Icaza  <miguel@novell.com>
4808
4809         * debug-mono-symfile.c: Revert Martin's previous patch which broke
4810         stack trace line information:
4811
4812         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
4813         (Martin) when looking up B which is between A and C, return A not C.
4814
4815         Bug is #78573.
4816
4817         Thanks to Alexander Olk for tracking this down.
4818
4819 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
4820
4821         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
4822         
4823         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
4824         avoid clobbering its value.
4825         (mono_string_to_lpstr): Fix a warning on windows.
4826
4827 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
4828
4829         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
4830
4831         * reflection.c loader.c: Removed references to 'dummy' flag.
4832
4833         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
4834
4835         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
4836         it gets GC tracking.
4837
4838         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
4839         GC tracking.
4840         
4841         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
4842
4843         * marshal.c threadpool.c: Update callers of mono_async_result_new.
4844
4845         * appdomain.c: Bump corlib version.
4846
4847 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
4848
4849         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
4850         CEE_STIND_REF when working with object references.
4851
4852 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
4853
4854         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
4855         Fixes #78539.
4856
4857 2006-05-30  Miguel de Icaza  <miguel@novell.com>
4858
4859         * loader.c (method_from_memberref): Fix argument value for
4860         mono_loader_set_error_method_load (I was passing the MonoClass
4861         instead of the class name char *).
4862
4863 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
4864
4865         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
4866         CEE_STIND_REF when working with object references.
4867
4868 2006-05-30  Martin Baulig  <martin@ximian.com>
4869
4870         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
4871         mono_method_full_name() change and replace the ':' with a '.'
4872         here.
4873
4874 2006-05-30  Martin Baulig  <martin@ximian.com>
4875
4876         * debug-mono-symfile.c
4877         (mono_debug_symfile_lookup_location): Fix the algorithm:
4878         when looking up B which is between A and C, return A not C.
4879
4880 2006-05-29  Martin Baulig  <martin@ximian.com>
4881
4882         * mono-debug.h
4883         (MonoDebugMethodInfo): Make the typedef public.
4884         (MonoDebugSourceLocation): New public struct.
4885
4886         * mono-debug.c
4887         (mono_debug_source_location_from_address): Removed.
4888         (mono_debug_source_location_from_il_offset): Removed.
4889         (mono_debug_il_offset_from_address): Removed.
4890         (mono_debug_address_from_il_offset): Removed.
4891         (mono_debug_lookup_method): New public function.
4892         (mono_debug_lookup_source_location): New public function; replaces
4893         the old mono_debug_source_location_from_*() functions; see the
4894         inline documentation.
4895         (mono_debug_free_source_location): New public function.
4896         (mono_debug_print_stack_frame): New public function; see the
4897         inline documentation.
4898
4899         * debug-mono-symfile.c
4900         (mono_debug_find_source_location): Renamed into
4901         mono_debug_symfile_lookup_location(); only take a
4902         `MonoDebugMethodInfo *' and an `offset' argument; added inline
4903         documentation.
4904         (mono_debug_find_method): Renamed into
4905         mono_debug_symfile_lookup_method().
4906
4907 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
4908
4909         * assembly.c (mono_assembly_open_full): Dont overwrite the status
4910         returned by mono_image_open_full ().
4911
4912         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
4913         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
4914         #78517.
4915
4916         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
4917         #78518.
4918
4919 2006-05-27  Miguel de Icaza  <miguel@novell.com>
4920
4921         * class.c (mono_class_from_typeref): handle missing images
4922         earlier, deals with bug #78418.   Refactor code; 
4923
4924         Fix a warning introduced in my previous commit (some stale code
4925         from before I revisited my patch).
4926
4927         * class.c (mono_class_create_from_typedef): On failure, remove the
4928         class from the MonoImage->class_cache as the class is not
4929         initialized;   Fixes the leak pointed out by Paolo.
4930
4931 2006-05-25  Dick Porter  <dick@ximian.com>
4932
4933         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
4934         DeleteCriticalSections until I figure out which one may still be
4935         sometimes locked when mono_thread_cleanup is called.
4936
4937 2006-05-24  Dick Porter  <dick@ximian.com>
4938
4939         * threads.c (mono_thread_cleanup): Move the threading cleanup out
4940         of mono_thread_manage and back into its own function, so it can be
4941         called after the finalizer thread has finished.
4942
4943         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
4944
4945 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
4946
4947         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
4948         Fixes #78495.
4949
4950         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
4951         with non-blittable elements.
4952         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
4953
4954 2006-05-24  Martin Baulig  <martin@ximian.com>
4955
4956         * mono-debug-debugger.h (MonoDebuggerEvent): Added
4957         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
4958
4959         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
4960         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
4961         `mono_debugger_event_handler' to NULL.
4962
4963 2006-05-24  Martin Baulig  <martin@ximian.com>
4964
4965         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
4966
4967 2006-05-24  Martin Baulig  <martin@ximian.com>
4968
4969         * mono-debug-debugger.h
4970         (mono_debugger_create_notification_function): Added
4971         `MonoCodeManager *' argument.
4972
4973 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
4974
4975         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
4976
4977 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
4978
4979         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
4980         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
4981         implementation.
4982
4983 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
4984
4985         * icall.c: precise GC support: objects can't be stored in unmanaged
4986         memory anymore, even if they are kept alive by other references: since
4987         they can move the GC needs to be able to always find them.
4988
4989 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
4990
4991         * object.c: precise GC support for static fields. Support
4992         for moving GCs: write barriers and pinned allocation for interned
4993         strings.
4994
4995 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
4996
4997         * domain.c, domain-internals.h: precise GC support for the MonoDomain
4998         structure.
4999
5000 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
5001
5002         * class.c, gc.c: sgen and precise GC updates.
5003
5004 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
5005
5006         * marshal.h, marshal.c: added write barrier wrapper and precise type
5007         fixes.
5008
5009 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
5010
5011         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
5012         support.
5013
5014 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
5015
5016         * reflection.c: precise and sgen GC updates.
5017
5018 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
5019
5020         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
5021
5022 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
5023
5024         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
5025
5026 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
5027
5028         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
5029         MONO_TYPE_OBJECT. Fixes #78462.
5030
5031 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
5032
5033         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
5034         and blittable types.
5035
5036 2006-05-17  Miguel de Icaza  <miguel@novell.com>
5037
5038         * class.c (mono_class_get_exception_for_failure): Implement parts
5039         of a TODO: if the loader error is set (instead of the class
5040         error), we return a Loader exception that can be properly thrown
5041         elsewhere.
5042
5043         This was exposed by some Winforms 2.0 code that I tried to run
5044         (Atsushi pointed me to it).
5045
5046 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
5047
5048         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
5049         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
5050         
5051         * marshal.c (emit_marshal_vtype): Add limited support for 
5052         UnmanagedType.LPStruct. Fixes #78427.
5053
5054         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
5055         Applied a patch from kangaroo to fix #77523.
5056
5057 2006-05-17  Martin Baulig  <martin@ximian.com>
5058
5059         * threads.c
5060         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
5061         (debugger_thread_created): Removed.
5062         (debugger_thread_exited): Removed.
5063
5064 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
5065
5066         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5067
5068         * object-internals.h (MonoReflectionResource): Sync with managed version.
5069
5070 2006-05-12  Wade Berrier <wberrier@novell.com>
5071
5072         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
5073
5074 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
5075
5076         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
5077         functions try to allocate from the image mempool.
5078
5079 2006-05-12  Dick Porter  <dick@ximian.com>
5080
5081         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
5082
5083 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
5084
5085         * object.c: The FieldGetter and FieldSetter methods require the full
5086         name of the class, not only the name. Fixes bug #78277.
5087
5088 2006-05-11  Miguel de Icaza  <miguel@novell.com>
5089
5090         * loader.c (method_from_memberref): Do not pass the NULL klass to
5091         mono_loader_set_error_() methods.  Pass the non-NULL value
5092         (class). 
5093
5094 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
5095
5096         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
5097         (mono_assembly_close): Null out assembly->image->references after freeing it.
5098
5099         * image.c (mono_image_close): Free image->references.
5100         
5101         * reflection.c (mono_image_basic_init): Fix a small memory leak.
5102
5103 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
5104
5105         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
5106         before checking if it's NULL (g_assert).
5107
5108 2006-05-10  Martin Baulig  <martin@ximian.com>
5109
5110         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
5111         I thought I already killed that two months ago, but now it somehow reappeared.
5112
5113 2006-05-10  Martin Baulig  <martin@ximian.com>
5114
5115         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
5116
5117 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
5118
5119         * reflection.c: Allocate memory for dynamically created methods in the image
5120         mempools.
5121
5122 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
5123
5124         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
5125         don't use the ad pointer before checking if it's NULL (g_assert).
5126
5127 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
5128
5129         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
5130         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
5131
5132         * marshal.c: Allocate all signatures from mempools.
5133
5134         * marshal.c: Allocate some more signatures from mempools.
5135
5136 2006-05-09  Miguel de Icaza  <miguel@novell.com>
5137
5138         * object.c (mono_load_remote_field): The code used to provide a
5139         temporary variable for returning results if the user did not
5140         provide a result pointer.  But our temporary variable was allocted
5141         on the satck.
5142
5143         Fix calling code to always pass a result area.   Coverity ID 103.
5144
5145 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
5146
5147         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
5148         value, not the old. Fixes #78312.
5149         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
5150
5151         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
5152         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
5153         per-image cache.
5154
5155         * assembly.c (mono_assembly_close): Free image->references.
5156
5157         * assembly.c (mono_assembly_names_equal): Fix a warning.
5158         (mono_assemblies_cleanup): Cleanup more global data.
5159
5160         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
5161
5162         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
5163         ptr_cache and image->modules.
5164
5165         * image.c (mono_image_init): Allocate array_cache lazily.
5166         
5167 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5168
5169         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
5170         behavior was changed recently and has bad side effects.
5171
5172 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
5173
5174         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
5175         
5176         * assembly.c (mono_assembly_close): Remove a debug printf.
5177
5178         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
5179
5180         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
5181         to also allow for temporary references between mono_image_open ()/close ().
5182
5183         * domain.c (get_runtimes_from_exe): Add a FIXME.        
5184
5185 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
5186
5187         * marshal.c: Fix support for dynamic methods.
5188
5189         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
5190
5191         * marshal.c (mono_marshal_cleanup): New cleanup function.
5192
5193         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
5194         image mempools.
5195
5196         * class.c (mono_class_init): Fix leaking class->nested_classes.
5197
5198         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
5199
5200         * image.c (mono_image_init): Initialize the new cashes.
5201
5202         * image.c (mono_image_close): Destroy the new cashes.
5203
5204         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
5205
5206         * mempool.c (mono_mempool_strdup): New helper function.
5207
5208         * class-internals.h: Add prototype for mono_loader_unlock ().
5209
5210         * domain.c (mono_jit_info_table_find): Fix a warning.
5211         (mono_debugger_check_runtime_version): Ditto.
5212
5213         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
5214         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
5215         functions to these modules.
5216
5217         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
5218         metadata modules.
5219         
5220         * marshal.c (mono_free_bstr): Fix a warning.
5221
5222         * assembly.c (mono_assembly_open_full): Fix another small leak.
5223
5224         * object.c: Fix some unload leaks in the remoting code.
5225
5226         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
5227         function.
5228
5229         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
5230
5231         * reflection.c: Fix some unload leaks in dynamic assemblies.
5232
5233 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
5234
5235         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
5236         * marshal.h: Add BSTR support on Win32
5237         * icall.c: Add BSTR icalls
5238         * metadata.h: Add BSTR enums
5239
5240 2006-04-28  Miguel de Icaza  <miguel@novell.com>
5241
5242         Work to catch the crash from #76795 and turn it into an
5243         exception.   As I stubbed out pieces of the VisualBasic support,
5244         I found a number of places where the code was failing and I added
5245         checks to those places. 
5246         
5247         * metadata.c (do_mono_metadata_parse_generic_class): Make this
5248         function return a status code.  If we fail to parse the signature
5249         from mono_metadata_parse_generic_inst, return FALSE.
5250
5251         * loader.c (mono_get_method_from_token): If we fail to load the
5252         method (mono_class_get) return NULL.   
5253
5254         * (method_from_memberref): Return NULL if we are unable to parse
5255         the method signature
5256
5257         (mono_loader_error_prepare_exception): Since we now use the
5258         loader_error flag internally to stop processing, and obtaining
5259         exceptions that might be thrown will walk this code path the
5260         proper way of going from a MonoLoaderError into a
5261         MonoException was convoluted.   This new routine encapsulates the
5262         process of turning the error into an exception and *clearing* the
5263         error afterwards.
5264         
5265 2006-04-27  Miguel de Icaza  <miguel@novell.com>
5266
5267         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
5268         with missing assemblies), and to cope with:
5269
5270                 * Missing fieldref from a non-existing assembly.
5271                 * Missing methodref from a non-existing assembly.
5272
5273         The first batch of work to address *some* of the issues from 76661.
5274         
5275         * object.c (mono_class_create_runtime_vtable): If we fail to
5276         initialize the class raise the exception here. 
5277
5278         * metadata.c (mono_class_get_overrides_full): If any methods fail
5279         to load return the failure to the caller.
5280
5281         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
5282         flagging assemblies that failed to load.   
5283
5284         Do not crash if we are unable to load the assembly.
5285
5286         (mono_assembly_close): Do nothing with REFERENCE_MISSING
5287         assemblies. 
5288
5289         * loader.c (mono_loader_set_error_type_load): Change the
5290         convention to always pass unallocated strings, so we make our own
5291         copies (I know our own code had duplicated strings before, but
5292         this keeps the normal conventions).
5293         (method_from_memberref): Call mono_loader_set_error_method_load
5294         for all possible failures of loading the class. 
5295         Remove assert, turn into a loader error.
5296
5297         (mono_loader_error_to_exception): Move this routine from mini
5298         (mini_loader_error_to_exception) there was no need to have that in
5299         mini. 
5300
5301         * class.c (mono_class_from_typeref): If we were not able to load
5302         the assembly with mono_assembly_load_reference, call the
5303         mono_loader_set_error_type_load to register the problem.
5304
5305         (mono_class_setup_fields): If we fail to load the type from
5306         mono_metadata_parse_type_full, call mono_class_set_failure and
5307         break from the loop.
5308
5309         If class->exception_type is set, we do not layout the fields as
5310         that might crash the runtime, and instead return (from breaking
5311         from the previous loop).
5312
5313         (mono_class_setup_vtable): This now returns a boolean indicating
5314         whether the table was properly setup.   The decision is driven by
5315         mono_class_get_overrides_full which might run into non-existing
5316         methods. 
5317         
5318         (mono_class_init): Returns TRUE on success or FALSE if there was a
5319         problem in loading the type (incorrect assemblies, missing
5320         assemblies, methods, etc).
5321
5322         When we call mono_class_setup_fields we also check for a potential
5323         error inside this call (either a class exception or a general
5324         loader exception).
5325
5326         (mono_class_create_from_typedef): If the parent fails to load
5327         (calling mono_class_get_full) return NULL.
5328         
5329         ** Important **
5330
5331         calls to mono_metadata_parse_type_full should be checked
5332         everywhere and set the mono_class_set_failure
5333         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
5334
5335         The current patch checks the places where my manually constructed
5336         tests show the errors are showing up, but we should do it
5337         everywhere. 
5338
5339         ** Important2 **
5340
5341         mono_class_init return values should be tested everywhere, like
5342         the previous case this is something that we should audit
5343         everywhere and not only on the cases exposed by the tests I
5344         created. 
5345
5346 2006-04-26  Miguel de Icaza  <miguel@novell.com>
5347
5348         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
5349         boolean parameter and instead pass the information on `options'
5350         parameter (FileOptions).
5351
5352         * icall.c: Register the new signature for MonoIO.Open.
5353
5354         * debug-helpers.c (dis_one): Trying to understand how coverity
5355         works.  Fix Run 5, item 78.
5356
5357 2006-04-26  Dick Porter  <dick@ximian.com>
5358
5359         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
5360         dereference.
5361
5362 2006-04-25  Martin Baulig  <martin@ximian.com>
5363
5364         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
5365
5366         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
5367         debugger_thread_created().
5368         (debugger_gc_push_all_stacks): Don't handle the main thread in any
5369         special way.
5370         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
5371         (mono_debugger_finalize_threads): New function; undo the effects
5372         of mono_debugger_init_threads().
5373         (mono_debugger_create_all_threads): Removed.
5374
5375 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
5376
5377         * image.c (mono_image_close): Tidy up trace messages.
5378
5379         * assembly.c (mono_assembly_close): Ditto.
5380
5381         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
5382         no longer references an already freed assembly. Fixes #78168.
5383
5384 2006-04-21  Dick Porter  <dick@ximian.com>
5385
5386         * threads.c (mono_thread_detach): Fix reference counting when
5387         detaching threads.
5388
5389 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
5390
5391         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
5392         #78155.
5393
5394 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
5395
5396         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
5397         (mono_type_to_stind): Ditto.
5398
5399         * marshal.c: Use the new helper functions to simplify code.
5400
5401         * image.c (mono_image_close): Add some code for help debug assembly unloading
5402         problems.
5403
5404         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
5405         image mempool.
5406
5407         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
5408         assembly was already loaded in another appdomain. Fixes #78083.
5409
5410 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
5411
5412         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
5413         referenced assemblies.
5414         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
5415
5416         * domain.c (mono_domain_free): Add a trace message.
5417
5418         * appdomain.c (add_assemblies_to_domain): Ditto.        
5419
5420         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
5421         field.  
5422
5423 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
5424
5425         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
5426
5427 2006-04-12  Martin Baulig  <martin@ximian.com>
5428
5429         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
5430         `USE_INCLUDED_LIBGC'.   
5431
5432 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
5433
5434         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
5435         the patch contains ../ and a small directory name later. Hopefully fixes
5436         #78035.
5437
5438 2006-04-10  Martin Baulig  <martin@ximian.com>
5439
5440         Clean up the debugger's thread-handling code.
5441
5442         The debugger's thread-handling code has been moved from
5443         ../mini/debug-debugger.c to threads.c.  We now iterate directly
5444         over the `threads' hash, keep track of exiting threads and also
5445         use proper locking.
5446
5447         We can now debug XSP and XSP based applications with the debugger.
5448
5449         * object-internals.h (MonoThread): Added `gpointer end_stack'.
5450
5451         * threads.h
5452         (MonoThreadCallbacks): Removed; this was only used by the debugger.
5453         (mono_install_thread_callbacks): Likewise.      
5454
5455         * threads.c (mono_thread_callbacks): Removed.
5456         (debugger_thread_created, debugger_thread_exited): New static functions.
5457         (start_wrapper): Call debugger_thread_created().
5458         (thread_cleanup): Call debugger_thread_exited().
5459         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
5460         (mono_debugger_init_threads): New public function.
5461         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
5462         iterate directly over the `threads' hash and also use proper locking.
5463
5464         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
5465
5466         * mono-debug-debugger.h
5467         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
5468
5469 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
5470
5471         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
5472         argument type=array. Fixes #78057.
5473
5474 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
5475
5476         * culture-info-table.h : regenerated. Fixed bug #69652.
5477
5478 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
5479
5480         * loader.c metadata.c: Reapply a variant r59116.
5481         
5482         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
5483
5484         * class.c (mono_class_setup_interface_offsets): New internal function.
5485
5486         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
5487         interfaces too. Fixes #77398.
5488
5489         * reflection.c (encode_cattr_value): Add support for 
5490         parameter type=object, argument type=array.
5491         (load_cattr_value): Ditto. Fixes #77916.
5492
5493         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
5494         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
5495
5496         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
5497         a byval char array and CharSet is Ansi.
5498
5499         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
5500
5501 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
5502
5503         * metadata.c: Add some locking comments.
5504         
5505         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
5506         mempool.
5507         (mono_metadata_free_method_signature): Don't free the signature itself.
5508
5509         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
5510
5511         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
5512         reference the same MonoImage.
5513         (mono_assembly_load_from_full): Add an assert.
5514
5515 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
5516
5517         * image.c (mono_image_close): Don't put the image we are about to free into the
5518         loaded_images_guid_hash.
5519
5520         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
5521         to reduce code duplication.
5522
5523         * marshal.c: Register the native functions called by this module as icalls, to
5524         somewhat centralize the creation of MonoMethodSignature's.
5525
5526         * loader.c (mono_method_signature): Add a cache for method signatures.
5527
5528         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
5529         the parameter attributes of a method.
5530         (mono_metadata_parse_method_signature_full): Refactored the computation of
5531         parameter attributes into a separate function. Also avoid one allocation in
5532         most cases.
5533
5534         * assembly.c (mono_assembly_close): Ditto.
5535
5536         * image.c (mono_image_close): Log trace messages with INFO level.
5537
5538         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
5539
5540         * image.c reflection.c: Correct reference counting of image modules.
5541         
5542         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
5543         of this function from the image mempool.
5544         
5545         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
5546         to allow more cached types to be used.
5547
5548         * mono-debug.c (mono_debug_add_method): Appled patch from
5549         David S. Miller  <davem@sunset.davemloft.net>: Access 
5550         minfo->lexical_blocks[] entry elements using read32().
5551
5552 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
5553
5554         * loader.c (mono_free_method): No longer free the method header for non-dynamic
5555         methods as it is allocated from the mempool.
5556
5557         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
5558         image mempool.
5559
5560         * metadata-internals.h: Add comments describing the reference counting scheme
5561         used for MonoImage and MonoAssembly.
5562
5563         * image.c assembly.c reflection.c: Rework reference counting of images and 
5564         assemblies so they are freed when the runtime is shut down. Free some 
5565         additional memory structures when an image is unloaded.
5566         
5567 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
5568
5569         * class.c loader.c reflection.c: Allocate more data structures in
5570         the image mempool.
5571
5572 2006-03-31  Miguel de Icaza  <miguel@novell.com>
5573
5574         * icall.c
5575         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
5576         build on pre glib 2.4 systems.
5577
5578 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
5579
5580         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
5581
5582         * icall.c: Fix some warnings.
5583
5584 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
5585
5586         * culture-info-table.h : regenerated.
5587
5588 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
5589
5590         * threads.c, object-internals.h, verify.c: changed the culture caching
5591         code to use a normal MonoArray for storage so the GC can keep track of
5592         them easily. Fixed bits of the cache logic, too and simplified the
5593         code.
5594
5595 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
5596
5597         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
5598         thread for non-Boehm GCs.
5599
5600 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
5601
5602         * domain.c, object.c, domain-internals.h: reduce the amount of memory
5603         needed to keep track of the data for static fields.
5604
5605 2006-03-29  Raja R Harinath  <rharinath@novell.com>
5606
5607         Fix #75172
5608         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
5609         for interface classes.  Use 'num_methods' instead.
5610         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
5611         before using '->vtable_size' field.
5612
5613 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
5614
5615         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
5616         doesn't contain managed pointers, so use a normal hashtable.
5617
5618 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
5619
5620         * reflection.c, class-internals.h, domain.c: fixed handling of types
5621         used as values for objects in custom attributes (bug #77915):
5622
5623 2006-03-24  Martin Baulig  <martin@ximian.com>
5624
5625         * class.c (mono_class_setup_fields): Added support for generic
5626         instances; fixes #77580.
5627
5628 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5629
5630         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
5631
5632 2006-03-24  Dick Porter  <dick@ximian.com>
5633
5634         * file-io.c (get_file_attributes): More stat macro breakage.
5635         Fixes bug 77759.
5636
5637 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
5638
5639         * profiler.c: added the file=filename option in the default profiler
5640         to output the profile data to filename.
5641
5642 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5643
5644         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
5645         bug #77877.
5646
5647 2006-03-22  Martin Baulig  <martin@ximian.com>
5648
5649         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
5650         allocated `MonoClassField *' in `fb->handle'.
5651
5652 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
5653
5654         * class.c, image.c, metadata-internals.h: implemented new mechanism to
5655         allocate interface ID to save memory and allow better ID reuse on
5656         appdomain unload. setup_generic_vtable () removal from Martin.
5657
5658 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
5659
5660         * object.h, appdomain.c, domain.c, exception.c, icall.c,
5661         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
5662         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
5663         write barriers for reference stores with managed objects accessed with
5664         C structures in the runtime and in embedding programs.
5665
5666 2006-03-20  Raja R Harinath  <rharinath@novell.com>
5667
5668         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
5669         'interface_id' and 'max_interface_id' fields of MonoClasses
5670         representing open generic types.
5671
5672 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
5673
5674         * object.h, object.c, icall.c: added functions to deal with
5675         storing valuetypes that contain references in managed objects.
5676         * reflection.c, string-icalls.c, threads.c, marshal.c: small
5677         fixes and comments around uses of mono_array_addr ().
5678
5679 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
5680
5681         * object.h, icall.c, monitor.c: object.GetHashCode ()
5682         implementation that supports the moving garbage collector.
5683
5684 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
5685
5686         * icall.c, threads-types.h, threads.c: implemented finalizer for
5687         LocalDataStoreSlot.
5688
5689 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
5690
5691         * metadata.c (mono_type_size): Add a fixme.
5692         (mono_type_stack_size): Ditto.
5693
5694         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
5695         'type_forwarders' field.
5696
5697         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
5698         attribute from net 2.0.
5699
5700         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
5701         from class.c.
5702
5703         * class.c (mono_class_setup_fields): Fix a warning.
5704         
5705         * class.c (mono_class_from_name): Add support for assemblyref entries
5706         in the EXPORTEDTYPE table.
5707
5708         * reflection.c: Add support for handling type forwarders under net 2.0.
5709
5710         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
5711         
5712 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
5713
5714         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
5715         overwriting entries in ModuleBuild->types, also clean up the code
5716         a little. Fixes #77774.
5717
5718 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
5719
5720         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
5721         load friend assembly info when present.
5722
5723 2006-03-14  Raja R Harinath  <rharinath@novell.com>
5724
5725         Fix crasher on gtest-158.cs.
5726         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
5727         the return value if the MonoClass we want is yet in an
5728         inconsistent state.
5729         * class.c (mono_class_create_from_typedef): Add an comment
5730         explaining an order dependency between mono_class_setup_parent and
5731         mono_class_setup_mono_type.
5732
5733 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
5734
5735         * class.c: documentation updates and events bug fix.
5736
5737 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
5738
5739         * class.c: some cleanup, locking fixes.
5740
5741 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
5742
5743         * class.c: fix the generics code to setup nested
5744         type info to the instantiated type (bug #77770).
5745
5746 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
5747
5748         * marshal.c: fixed a few type correctness issues.
5749
5750 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
5751
5752         * loader.c: the Set/Get/Addrtess array methods should be public.
5753
5754 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
5755
5756         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
5757         
5758         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
5759         info->wrapper.
5760
5761 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
5762
5763         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
5764
5765         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
5766
5767         * mempool.c (mono_mempool_alloc): Speed this up a bit.
5768         (mono_mempool_alloc0): Ditto.
5769
5770 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5771
5772         * socket-io.c:
5773         (create_object_from_sockaddr): it was allocating 4 extra bytes
5774         for the AF_UNIX data. Fixes bug #77747.
5775
5776 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
5777
5778         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
5779
5780 2006-03-09  Dick Porter  <dick@ximian.com>
5781
5782         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
5783         Fixes bug 76966 again.
5784
5785 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
5786
5787         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
5788         names from r57532
5789         * appdomain.c: Bumped corlib version to 48 (due to r57532)
5790
5791 2006-03-07  Martin Baulig  <martin@ximian.com>
5792
5793         * object.c
5794         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
5795
5796 2006-03-07  Martin Baulig  <martin@ximian.com>
5797
5798         * class.c
5799         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
5800         regression introduced in r56970; see gtest-252.cs.
5801
5802         * loader.c (mono_get_method_constrained): Correctly handle generic
5803         methods; see gtest-253.cs.
5804
5805 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
5806
5807         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
5808
5809 2006-03-04  Martin Baulig  <martin@ximian.com>
5810
5811         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
5812         compute the parent type at runtime, just like we're already doing
5813         it for interfaces.
5814
5815         * reflection.c
5816         (mono_reflection_bind_generic_parameters): Don't compute the
5817         parent type anymore.
5818
5819         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
5820
5821 2006-03-04  Martin Baulig  <martin@ximian.com>
5822
5823         * mono-debug-debugger.h
5824         (mono_debugger_create_notification_function): Allocate memory at
5825         runtime and return a pointer to it.
5826
5827 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
5828
5829         * assembly.c: Fix windows build.
5830         
5831         * assembly.c: Fix build.
5832
5833         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
5834
5835         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
5836         
5837 2006-03-03  Dick Porter  <dick@ximian.com>
5838
5839         * process.c
5840         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
5841         Check parameters before dereferencing them.  Fixes Aaron's part of
5842         bug 77393.
5843
5844 2006-03-03  Raja R Harinath  <rharinath@novell.com>
5845
5846         Fix performance regression.
5847         * loader.c (find_method_in_class): Add 'from_class' argument.
5848         Rename 'klass' argument to 'in_class'.  The signature is compared
5849         against the method in 'in_class', and the corresponding method is
5850         returned from 'from_class'.
5851         (find_method): Walk both 'in_class' and 'from_class' in parallel.
5852         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
5853         type definition and generic instantiation in parallel.
5854         (mono_get_method_constrained): Update to changes.
5855
5856 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
5857
5858         * threads.c: make sure the domain is correct, too when doing
5859         mono_thread_attach ().
5860
5861 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
5862
5863         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
5864         windows. Fixes #77683.
5865
5866 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
5867
5868         * object.h, *: introduced specific way to set elements of an array
5869         of references to be used as write barrier. Still need to audit the
5870         uses of mono_array_addr.
5871
5872 2006-03-01  Miguel de Icaza  <miguel@novell.com>
5873
5874         * object-internals.h: New field to cache the assmebly name, patch
5875         from Tambet Ingo (tambet@ximian.com)
5876
5877 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
5878
5879         * decimal.h, class-internals.h, metadata-internals.h,
5880         file-io.h: mark a few function declarations as internal, to
5881         reduce the number of PLT entries.
5882
5883 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5884
5885         * file-io.c: fix typo in warning message.
5886
5887 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
5888
5889         * loader.c: on unix, lookup the "*A" version of a function
5890         if charset is auto as a second option before failing.
5891
5892 2006-02-28  Raja R Harinath  <rharinath@novell.com>
5893
5894         * class.h (mono_class_inflate_generic_method): Revert to two
5895         argument version.
5896         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
5897         (mono_class_inflate_generic_method_full): Add.
5898         * class.c (mono_class_inflate_generic_method_full): Rename from
5899         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
5900         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
5901         * loader.c, reflection.c: Update to changes.
5902
5903 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
5904
5905         * icall.c: const fixes and small improvements.
5906
5907 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5908
5909         * threadpool.c: for asynchronous connect(), enable the same workaround
5910         for BSD 6 as for the Mac. Fixes bug #77637.
5911
5912 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
5913
5914         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
5915         formatted classes. Fixes #77524.
5916
5917 2006-02-24  Raja R Harinath  <rharinath@novell.com>
5918
5919         * class.c (inflate_generic_type): Add a couple more
5920         micro-optimizations.
5921         (inflate_generic_context): Don't use the 'gmethod' from
5922         'inflate_with'.
5923         (mono_class_inflate_generic_method): If the method has generic
5924         parameters, but the passed-in context doesn't have a 'gmethod',
5925         create one.  Use the possibly simplified generic instantiation
5926         from the declaring class instead of the one passed in.
5927
5928 2006-02-24  Raja R Harinath  <harinath@gmail.com>
5929
5930         Make generic method signature and method header handling lazy.
5931         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
5932         (inflate_generic_header): Likewise.
5933         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
5934         parameter to avoid inflating types.
5935         (mono_get_inflated_method): Empty out.
5936         * class.h (mono_class_inflate_generic_method): Update to changes.
5937         * loader.c (mono_get_method_from_token): Don't parse signature for
5938         generic methods, nor methods of generic classes.
5939         (mono_method_signature): Rename from 'mono_method_signature'.
5940         Inflate signature on demand.
5941         (mono_method_get_header): Inflate method header on demand.
5942         * reflection.c: Update to changes.
5943
5944 2006-02-23  Raja R Harinath  <rharinath@novell.com>
5945
5946         * metadata.c (mono_metadata_inflate_generic_inst): If the
5947         instantiation is closed, don't bother expanding it in the new
5948         context.
5949         * class.c (inflate_generic_class): If the generic instantiation
5950         doesn't change after inflation, return the argument itself.
5951         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
5952         Add bounds checks.
5953         (inflate_generic_context): If neither the generic class nor the
5954         generic method instantiations change, return the original context.
5955         * reflection.c (mono_method_get_object): Do
5956         'mono_get_inflated_method' before accessing the ->klass field.
5957         (inflate_mono_method): Don't create a MonoGenericMethod unless
5958         necessary.
5959         (inflate_method): Don't pass a constructed type as the declaring
5960         type of a methodbuilder.
5961
5962 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
5963
5964         * object.c: fix memory overwrite.
5965
5966 2006-02-22  Dick Porter  <dick@ximian.com>
5967
5968         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
5969         it doesn't work any more.
5970         (mono_threads_request_thread_dump): Fix unused variable warnings.
5971
5972 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
5973
5974         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
5975         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
5976         the public header file.
5977
5978 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
5979
5980         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
5981
5982 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
5983
5984         * class-internals.h, object.c: reduce the size of MonoVTable
5985         and store the interface_offsets array at negative offsets.
5986
5987 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
5988
5989         * metadata.c: tweak table descriptors data structures to reduce
5990         size and runtime relocations.
5991
5992 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
5993
5994         * marshal.c: fix some types and opcodes to be type-safe
5995         in marshaling wrappers.
5996
5997 2006-02-21  Ankit Jain  <jankit@novell.com>
5998
5999         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
6000
6001 2006-02-21  Raja R Harinath  <rharinath@novell.com>
6002
6003         * metadata.c (get_constraints): Relax debugging checks for monodis.
6004
6005 2006-02-21  Ankit Jain  <jankit@novell.com>
6006
6007         * metadata.c (mono_metadata_load_generic_params): Move the code
6008         checking for ambiguous generic params from here to mono/dis/get.c
6009         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
6010
6011 2006-02-21  Raja R Harinath  <harinath@gmail.com>
6012
6013         Fix assertion triggered when compiling nemerle.
6014         * class.c (mono_get_shared_generic_inst): Rename from
6015         get_shared_inst and make non-static.
6016         * loader.c (mono_get_shared_generic_method): New.  Used to create
6017         the MonoGenericContext-equivalent of a MonoGenericContainer.
6018         (mono_get_method_from_token): Initialize the 'context' field of
6019         the created MonoGenericContainer.
6020         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
6021         * metadata.c (get_constraints): Add sanity check.
6022         * class-internals.h: Add new internal methods.
6023
6024         * reflection.c (verify_safe_for_managed_space): New sanity check.
6025         Currently checks that owner-less generic parameters aren't allowed
6026         in managed space.
6027         (mono_type_get_object): Use it.
6028         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
6029         that are now in mono_type_get_object.
6030         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
6031
6032 2006-02-19  Raja R Harinath  <harinath@gmail.com>
6033
6034         * metadata.c (mono_type_create_from_typespec): Rename from
6035         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
6036         argument and caching of types in the generic container.
6037         (unwrap_arrays, find_generic_param): Remove.
6038         * metadata-internals.h: Update.
6039         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
6040
6041 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
6042
6043         * class.c (mono_class_get_exception_for_failure): Fix a warning.
6044
6045         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
6046         return values. Fixes #77581.
6047
6048         * class.c (mono_fnptr_class_get): Switch name and name_space.
6049
6050         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
6051         classes and add support for [In, Out] attributes.
6052         (mono_marshal_free_asany): Ditto. Fixes #77524.
6053
6054 2006-02-18  Raja R Harinath  <harinath@gmail.com>
6055
6056         * class.c (mono_class_from_generic_parameter): Make more robust to
6057         incomplete MonoGenericContainers from monodis.
6058
6059 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
6060
6061         * class-internals.h: added some more exception types.
6062         * class.c, metadata.c: added a few checks to handle missing
6063         types.
6064
6065 2006-02-17  Raja R Harinath  <rharinath@novell.com>
6066
6067         Use owner-less generic-params some more.
6068         * class.c (my_mono_class_from_generic_parameter): Remove.
6069         (mono_class_from_generic_parameter): Handle null image,
6070         param->name and param->owner.
6071         (mono_class_from_mono_type): Update.
6072         (mono_class_create_from_typespec): Remove 'container' parameter.
6073         If that parameter is non-null, the result is always inflated by
6074         'mono_class_get_full' anyway.
6075         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
6076         parameter.
6077         (mono_class_get_full): Update.
6078
6079         * class.c (inflate_generic_type) [GENERICINST]: If the generic
6080         instance is not open, don't bother inflating.
6081         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
6082         parse metadata for inflated classes.
6083         (_mono_class_get): Change GenericContext* parameter to
6084         GenericContainer*.
6085         (mono_class_create_from_typespec): Likewise.  Simplify, and
6086         implement trivially.  All the cases are handled in
6087         mono_class_from_mono_type.  Don't inflate returned class.
6088         (mono_class_get_full): Delegate GENERICINST optimization to
6089         inflate_generic_type.
6090         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
6091
6092 2006-02-16  Dick Porter  <dick@ximian.com>
6093
6094         * socket-io.c (create_object_from_sockaddr): Fix typo.
6095         (create_sockaddr_from_object): Check array lengths before
6096         potentially accessing items off the end.
6097         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
6098         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
6099         (ves_icall_System_Net_Sockets_Socket_Send_internal)
6100         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
6101         length checks to avoid wraparound overflows.
6102         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
6103         contents of the array of sockets
6104         (hostent_to_IPHostEntry2)
6105         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
6106         Check return value of inet_ntop ().
6107         (addrinfo_to_IPHostEntry): Fix typo
6108
6109 2006-02-16  Raja R Harinath  <rharinath@novell.com>
6110
6111         Type metadata parsing doesn't use generic-instantiation information.
6112         * metadata.c (mono_metadata_parse_array_full): Change
6113         MonoGenericContext* parameter to MonoGenericContainer*.
6114         (mono_metadata_parse_type_full): Likewise.
6115         (mono_type_create_from_typespec_full): Likewise.
6116         (mono_metadata_parse_mh_full): Likewise.
6117         (mono_metadata_parse_generic_inst): Likewise.
6118         (do_mono_metadata_parse_generic_class): Likewise.
6119         (do_mono_metadata_parse_type): Likewise.
6120         * metadata-internals.h: Update to changes.
6121         * class.c (mono_class_find_enum_basetype): Likewise.
6122         (mono_class_setup_fields): Likewise.
6123         (mono_class_create_from_typespec): Likewise.
6124         * loader.c (method_from_methodspec): Likewise.
6125         (mono_get_method_from_token): Likewise.
6126         (mono_method_get_header): Likewise.
6127
6128 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
6129
6130         * marshal.c: handle additional GENERICINST case (patch from
6131         Thong Nguyen <tum@veridicus.com>).
6132         Fix a few cases where LDIND_I/STIND_I was used for references.
6133
6134 2006-02-16  Raja R Harinath  <rharinath@novell.com>
6135
6136         * reflection.c (mono_reflection_get_token): Remove unused variable.
6137
6138 2006-02-16  Martin Baulig  <martin@ximian.com>
6139
6140         * reflection.c (mono_reflection_get_token): Add support for fields
6141         in instantiated generic types.
6142
6143         * icall.c
6144         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
6145
6146 2006-02-15  Martin Baulig  <martin@ximian.com>
6147
6148         * icall.c
6149         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
6150         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
6151         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
6152         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
6153
6154 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
6155
6156         * class.c, metadata.c, metadata.h, object.c, icall.c,
6157         marshal.c: changed mono_type_get_underlying_type () to do
6158         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
6159         Fixed handling of instantiated generic valuetypes (bug #75479).
6160
6161 2006-02-15  Raja R Harinath  <rharinath@novell.com>
6162
6163         * metadata.c (mono_metadata_decode_signed_value): Simplify.
6164         Delegate to mono_metadata_decode_value, and work on the returned value.
6165
6166         * icall.c (ves_icall_MonoType_GetGenericArguments):
6167         Add consistency check here too.
6168         
6169 2006-02-15  Ankit Jain  <jankit@novell.com>
6170
6171         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
6172         char/short etc.
6173
6174 2006-02-15  Ankit Jain  <jankit@novell.com>
6175
6176         * metadata.c (mono_metadata_decode_signed_value): New function to decode
6177         signed values, used only for representing lower bounds of arrays.
6178         (mono_metadata_parse_array_full): Use new
6179         mono_metadata_decode_signed_value to decode lower bounds.
6180
6181 2006-02-14  Martin Baulig  <martin@ximian.com>
6182
6183         * reflection.c
6184         (mono_reflection_get_token): Support "MonoGenericMethod" and
6185         "MonoGenericCMethod" and allow generic instances / methods.
6186
6187 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
6188
6189         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
6190         to obtain the terminal size using an ioctl.
6191
6192         * object.c (mono_nullable_init): Revert this as nullable reference
6193         types are not valid.
6194         (mono_nullable_box): Ditto.
6195
6196 2006-02-09  Dick Porter  <dick@ximian.com>
6197
6198         * threads.c (mono_thread_detach): Drop a reference to the thread
6199         we're detaching.
6200
6201 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
6202
6203         * object.c (mono_nullable_init): Handle nullable reference types.
6204         (mono_nullable_box): Ditto. Fixes #77446.
6205
6206 2006-02-07  Martin Baulig  <martin@ximian.com>
6207
6208         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
6209
6210 2006-02-07  Ankit Jain  <jankit@novell.com>
6211
6212         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
6213         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
6214         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
6215         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
6216         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
6217         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
6218
6219 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
6220
6221         * class.c (mono_class_create_generic): Set type_token as well.
6222
6223         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
6224         compatible with MS.
6225
6226 2006-02-02  Martin Baulig  <martin@ximian.com>
6227
6228         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
6229         has never been used so far.
6230
6231 2006-02-02  Martin Baulig  <martin@ximian.com>
6232
6233         * mono-debug-debugger.h: Changed comment at the top of this file;
6234         the header is not installed, but it's safe to #include it from
6235         within the JIT.
6236
6237         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
6238         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
6239
6240 2006-02-02  Martin Baulig  <martin@ximian.com>
6241
6242         * mono-debug.h
6243         (MonoSymbolTable): Removed the `metadata_info' field.
6244
6245         * mono-debug.c
6246         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
6247
6248         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
6249         (mono_debugger_add_builtin_types): Removed.
6250         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
6251         (mono_debugger_create_notification_function): We now operate on a
6252         pre-allocated area; take a `gpointer' and return `void'.
6253
6254         * mono-debug-debugger.c
6255         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
6256         (mono_debugger_add_builtin_types): Removed.
6257
6258 2006-02-02  Martin Baulig  <martin@ximian.com>
6259
6260         * threads.c (mono_debugger_create_all_threads): New public method.
6261
6262 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
6263
6264         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
6265         breaks on several platforms.
6266
6267 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
6268
6269         * assembly.c: the VS.NET build doesn't supply default values for
6270         MONO_ASSEMBLIES and MONO_CFG_DIR.
6271
6272 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
6273
6274         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
6275         helper function.
6276
6277         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
6278
6279         * loader.c (method_from_memberref): Fix a warning.
6280
6281         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
6282
6283         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
6284         with explicit layout. Fixes #77433.
6285
6286 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
6287
6288         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
6289         max_interface_id is initialized before using it. Fixes #77398.
6290         (ves_icall_Type_GetInterfaces): Ditto.
6291
6292 2006-01-30  Raja R Harinath  <rharinath@novell.com>
6293
6294         * metadata.c (mono_metadata_parse_method_signature_full): Don't
6295         allocate memory for parameter attributes when parsing memberref
6296         signatures.
6297         * loader.c (mono_loader_set_error_method_load): Don't warn.
6298         (method_from_memberref): Ensure MissingMethodException gets thrown
6299         if method is not found.  Make warning more informative.
6300
6301 2006-01-29  Raja R Harinath  <harinath@gmail.com>
6302
6303         Fix #77397
6304         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
6305         return true if is byref.
6306         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
6307         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
6308         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
6309
6310 2006-01-27  Raja R Harinath  <rharinath@novell.com>
6311
6312         Fix tests/find-method.2.il
6313         * loader.c (find_method, find_method_in_class): Remove is_inflated
6314         argument.  Revert 2006-01-18 change.
6315         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
6316         is generic, search for method in its generic definition.
6317         * class.c (mono_class_setup_vtable_general): Print generic
6318         arguments of generic types in debugging printf.
6319
6320 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
6321
6322         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
6323
6324         * threads.c (mono_threads_request_thread_dump): New helper function.
6325
6326 2006-01-25  Raja R Harinath  <rharinath@novell.com>
6327
6328         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
6329
6330 2006-01-25  Ankit Jain  <jankit@novell.com>
6331
6332         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
6333         move definition to ..
6334         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
6335         
6336 2006-01-25  Ankit Jain  <jankit@novell.com>
6337             Raja R Harinath  <rharinath@novell.com>
6338
6339         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
6340         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
6341         as necessary.
6342
6343 2006-01-25  Martin Baulig  <martin@ximian.com>
6344
6345         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
6346         `MonoDebuggerThread' into debug-debugger.c.
6347
6348 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
6349
6350         * profiler.c: fix printing of data.
6351
6352 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
6353
6354         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
6355           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
6356
6357 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
6358
6359         * object.c: fix deadlock related to string interning.
6360
6361 2006-01-23  Martin Baulig  <martin@ximian.com>
6362
6363         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
6364
6365         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
6366
6367 2006-01-23  Martin Baulig  <martin@ximian.com>
6368
6369         * mono-debug.h: Moved the prototypes of some functions which are
6370         used by the JIT here from mono-debug-debugger.h.
6371
6372 2006-01-21  Martin Baulig  <martin@ximian.com>
6373
6374         * Makefile.am: Don't install mono-debug-debugger.h.
6375
6376 2006-01-21  Martin Baulig  <martin@ximian.com>
6377
6378         * mono-debug-debugger.h: Enforce the private status of this header
6379         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
6380         Moved some stuff from mono-debugger-jit-wrapper.h here.
6381
6382 2006-01-20  Raja R Harinath  <rharinath@novell.com>
6383
6384         * class.c (mono_class_from_typeref): Add a sanity test to help
6385         catch lack of assembly load/search hooks.
6386
6387 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
6388
6389         * marshal.c (emit_struct_conv): Relax the fields with same offset
6390         check even more. Fixes #77230.
6391
6392 2006-01-18  Martin Baulig  <martin@ximian.com>
6393
6394         * loader.c (find_method_in_class): Added `gboolean is_inflated'
6395         argument; if false, we compare the uninstantiated signatures.
6396         (method_from_memberref): Compare the uninstantiated signatures;
6397         fixes #76417.
6398
6399 2006-01-18  Robert Jordan  <robertj@gmx.net>
6400
6401         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
6402         Clear the weak link. Fixes bug #77170.
6403
6404         * gc.c (mono_gchandle_free):
6405         Reflect *-gc.c changes (tiny optimization).
6406
6407 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
6408
6409         * metadata.c (mono_metadata_signature_dup): Applied patch from
6410         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
6411         Fixes #77288.
6412
6413 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
6414
6415         * marshal.c (emit_struct_conv): Allow fields with the same offset when
6416         marshalling from native to managed code. Fixes #77230.
6417
6418 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6419
6420         * threadpool.c: fix problem (Mac only) when more than one asynchronous
6421         connect. Fixes bug #77020.
6422
6423 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
6424
6425         * class.c: fixed id assignement for nested interfaces (bug #77275).
6426         Added also better info for --print-vtable debugging.
6427
6428 2006-01-12  Martin Baulig  <martin@ximian.com>
6429
6430         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
6431         interfaces on-the-fly; fixes #76625.
6432
6433         * class-internals.h
6434         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
6435         don't need that anymore.
6436
6437 2006-01-12  Miguel de Icaza  <miguel@novell.com>
6438
6439         * socket-io.c
6440         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
6441         To avoid initing the nested_classes when not needed I turned the
6442         PeerCredData as a toplevel internal class, as it has to be shared
6443         anyways. 
6444
6445         Fixes the CASA issue.
6446
6447 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
6448
6449         * domain.c: Accessors for MonoJitInfo
6450
6451         * profiler-private.h: Add jitinfo to the end jit hook
6452
6453         * profiler.[ch]: Define new hooks, called after jitting which give
6454         the MonoJitInfo that was compiled
6455
6456 2006-01-10  Martin Baulig  <martin@ximian.com>
6457
6458         * class.c (mono_class_setup_events): Add support for generic
6459         classes; fixes #76440.
6460
6461 2006-01-06  Raja R Harinath  <rharinath@novell.com>
6462
6463         Fix #77160.
6464         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
6465         on passed-in method.
6466
6467 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
6468
6469         * object.c (mono_runtime_invoke_array): Add Nullable support.
6470
6471         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
6472
6473 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
6474
6475         * file-io.c: Don't consider sockets as directory and avoid an endless
6476         loop. Fix bug #76966.
6477
6478 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
6479
6480         * object.c (mono_nullable_init): New helper function.
6481         (mono_nullable_box): Ditto.
6482
6483         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
6484
6485         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
6486
6487         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
6488         
6489 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
6490
6491         * class.c (mono_class_is_assignable_from): Make T assignable to 
6492         Nullable<T>.
6493
6494 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
6495
6496         * appdomain.c: Bump corlib version to 46.
6497         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
6498         serialization purpose) and changed ves_icall_System_Reflection_
6499         Assembly_get_code_base signature to accept a boolean (to escape, or 
6500         not, the assembly code base).
6501
6502 2005-12-23  Dick Porter  <dick@ximian.com>
6503
6504         * icall.c: 
6505         * threads-types.h: 
6506         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
6507         CreateEvent icall now returns "created" boolean parameter.
6508
6509 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
6510
6511         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
6512         #76967.
6513
6514         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
6515         when attr_klass is an interface. Fixes #77045.
6516
6517 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
6518
6519         * marshal.c (emit_struct_conv): Fix previous patch.
6520         
6521         * marshal.c (emit_struct_conv): Add a check for fields with the same
6522         offset.
6523
6524 2005-12-20  Raja R Harinath  <rharinath@novell.com>
6525
6526         Fix regression in Mono.C5.
6527         * class.c (mono_class_create_generic): If 'klass' is an interface
6528         set up the interface offsets.
6529         (mono_class_is_assignable_from): Don't throw away generic arguments.
6530
6531 2005-12-19  Raja R Harinath  <rharinath@novell.com>
6532
6533         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
6534         type parameters.
6535
6536 2005-12-15  Raja R Harinath  <rharinath@novell.com>
6537
6538         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
6539         dead store.
6540         (do_mono_metadata_parse_generic_class): Don't pass the current
6541         generic context when parsing the type being instantiated: it
6542         cannot use it, anyway.
6543
6544         * loader.c (method_from_memberref): Don't inflate a signature if
6545         it doesn't contain any type parameters.
6546
6547 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
6548
6549         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
6550
6551 2005-12-14  Martin Baulig  <martin@ximian.com>
6552
6553         * class.c
6554         (mono_type_get_name_recurse): Don't return null for type
6555         parameters and open generic classes.
6556         (mono_class_setup_methods): Don't exclude generic instances.
6557         (mono_get_unique_iid): Use different IDs for different
6558         instantiations of the same generic type.
6559         (mono_class_setup_vtable): Only use setup_generic_vtable() for
6560         open generic instances; create a normal vtable for closed generic
6561         instances.
6562         (mono_class_setup_vtable_general): We're now also called for
6563         closed generic instances.
6564
6565         * reflection.c
6566         (mono_reflection_bind_generic_parameters): Correctly use
6567         mono_metadata_lookup_generic_inst() everywhere.
6568
6569 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
6570
6571         * object.c (mono_class_create_runtime_vtable): Call 
6572         mono_class_setup_vtable ().
6573
6574         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
6575         function.
6576         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
6577         #76959.
6578
6579         * loader.c (mono_loader_set_error_type_load): Print the type load
6580         warnings to the console so they are more visible to the user.
6581         (mono_loader_set_error_method_load): Ditto.
6582
6583         * reflection.c (ensure_runtime_vtable): Revert the last change as it
6584         is still broken.
6585         
6586         * reflection.c (ensure_runtime_vtable): Fix build.
6587
6588         * reflection.c (ensure_runtime_vtable): Disable an optimization which
6589         doesn't work in all cases.
6590
6591 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
6592
6593         * object.c (mono_array_new_full): Treat a single dimensional array
6594         with 0 lower bounds as an szarray. Fixes #76973.
6595
6596         * reflection.c (custom_attr_visible): Really fix this.
6597
6598 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
6599
6600         * reflection.c (custom_attr_visible): Allow nested public attributes
6601         as well.
6602
6603         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
6604         interface check.
6605
6606 2005-12-12  Raja R Harinath  <harinath@gmail.com>
6607
6608         * class.c (set_generic_param_owner): Delete.
6609         (mono_class_create_from_typedef): Don't set ->owner field of
6610         generic parameters to "param containers" of enclosing classes.
6611         * reflection.c (mono_reflection_initialize_generic_parameter):
6612         Likewise.
6613
6614 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
6615
6616         * reflection.c (custom_attr_visible): Fix build.
6617
6618 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
6619
6620         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
6621         private attributes.
6622         
6623         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
6624         handling of null parameter defaults.
6625
6626 2005-12-09  Raja R Harinath  <rharinath@novell.com>
6627
6628         * class.c (mono_class_from_generic_parameter): Don't set
6629         klass->generic_container.
6630         (my_mono_class_from_generic_parameter): Likewise.
6631
6632 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
6633
6634         * reflection.c (load_public_key): Fix a warning.
6635         (method_encode_code): Fix unaligned accesses.
6636
6637 2005-12-07  Martin Baulig  <martin@ximian.com>
6638
6639         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
6640
6641         * reflection.c
6642         (write_generic_param_entry): Encode our custom attrs.
6643
6644         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
6645
6646 2005-12-07  Martin Baulig  <martin@ximian.com>
6647
6648         * reflection.c (encode_new_constraint): Removed; we don't use the
6649         `NewConstraintAttribute' anymore.
6650
6651 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
6652
6653         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
6654         not fire a TypeResolve event when Assembly.GetType () is called.
6655
6656 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
6657
6658         Beginning of support for nullable types in the runtime. Parts of
6659         this patch are from Martin.
6660
6661         * appdomain.c (MONO_CORLIB_VERSION): Bump
6662
6663         * domain.c (mono_init_internal): get the nullable type
6664
6665         * class.c (mono_class_is_nullable): New method
6666         (mono_class_get_nullable_param): New mehod
6667         (mono_class_create_generic): In types T? set cast_class to T
6668
6669         * class-internals.h (MonoDefaults): new nullable default class
6670         (mono_class_get_nullable_param, mono_class_get_nullable_param):
6671         new methods.
6672
6673 2005-12-05  Raja R Harinath  <rharinath@novell.com>
6674
6675         * metadata.c (select_container): New.  Refactor code to select the
6676         appropriate GenericContainer given the type of generic parameter
6677         we are looking for.
6678         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
6679         not a MonoGenericContext.  Use select_container.  Update parameters.
6680         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
6681         and MONO_TYPE_MVAR.
6682         (unwrap_arrays): Remove duplicate tests.
6683         (find_generic_param): Rename from 'has_same_context'.  Now walks a
6684         generic instantiated class to find any arguments that are generic
6685         parameters.
6686         (mono_type_create_from_typespec_full): Use find_generic_param to
6687         avoid evicting some generic instantiations from the typespec
6688         cache.
6689
6690 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
6691
6692         * reflection.c: fixed writing of doubles on ARM FPA.
6693
6694 2005-12-02  Robert Jordan  <robertj@gmx.net>
6695
6696         * icall.c: Fixed EventInfo.ReflectedType (#76829).
6697
6698 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6699
6700         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
6701         least on SUSE 10 they are not the same (on debian, they are just the
6702         same thing).
6703
6704 2005-12-01  Raja R Harinath  <rharinath@novell.com>
6705
6706         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
6707         DeclaringType for VARs and MVARs.
6708         * class.c (set_generic_param_owner): Fix initialization of owner
6709         fields.
6710
6711 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
6712
6713         * icall.c: fixed Enum.ToObject() to correctly convert the values.
6714
6715 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6716
6717         * threadpool.c: workaround for a bug that shows up on the Mac:
6718         select()+connect() on a blocking socket is not like it should
6719         be, so we proceed to connect() in that case, wasting the I/O
6720         threadpool thread until connect succeedes. Fixes bug #75436.
6721
6722 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6723
6724         * threadpool.c: fix typo when setting file descriptor states.
6725
6726 2005-11-28  Raja R Harinath  <rharinath@novell.com>
6727
6728         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
6729         * metadata.c (mono_metadata_parse_method_signature_full): Don't
6730         create a temporary signature container.
6731         (mono_metadata_parse_generic_param): Update to changes.
6732         (mono_type_create_from_typespec_full): Update to changes.
6733         * loader.c (method_from_memberref): Don't use a
6734         MonoGenericContainer while parsing a memberref signature.
6735         (method_from_methodspec): Remove dead-store of the 'container'
6736         variable.  It's overwritten before use.
6737
6738         * metadata.c (mono_type_create_from_typespec_full): Make debugging
6739         checks tighter.
6740         (mono_metadata_parse_generic_param): Likewise.
6741         * loader.c (find_method_in_class): Does not need a
6742         MonoGenericContainer.  Use 'mono_method_signature' rather than
6743         'mono_method_signature_full'.
6744         (find_method, mono_get_method_constrained, method_from_memberref):
6745         Update to changes.
6746
6747         * metadata.c (mono_type_create_from_typespec_full): Ensure that
6748         owner-less generic-parameters are never evicted from the typespec
6749         cache.
6750
6751         * loader.c (method_from_memberref): Don't use the current context
6752         when parsing signatures.
6753         (method_from_methodspec, mono_get_method_from_token): Update to changes.
6754
6755         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
6756         side-effects in g_assert.
6757         * loader.c (mono_get_method_from_token): Resolve klass earlier so
6758         that we don't potentially lose information.
6759
6760 2005-11-26  Dick Porter  <dick@ximian.com>
6761
6762         * icall.c:
6763         * threads.c: icalls to implement basic (ie, not named)
6764         System.Threading.Semaphore.
6765
6766 2005-11-24  Dick Porter  <dick@ximian.com>
6767
6768         * process.c
6769         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
6770         Use GetProcessId() if it's available.
6771
6772 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
6773
6774         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
6775
6776 2005-11-23  Raja R Harinath  <rharinath@novell.com>
6777             Ankit Jain  <jankit@novell.com>
6778
6779         * loader.c (mono_get_method_from_token): Initialize 'method' field
6780         of all generic parameters before parsing the signature.  Remove
6781         code that "fixed"-up MVAR references.
6782
6783 2005-11-23  Ankit Jain  <jankit@novell.com>
6784
6785         * metadata.c (mono_metadata_has_generic_params):
6786         (mono_metadata_load_generic_param_constraints):
6787         (mono_metadata_load_generic_params): Move duplicate code ...
6788         (mono_metadata_get_generic_param_row): ... here. Returns the
6789         first row-id in GenericParam table for a given owner (token).
6790         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
6791         prototype.
6792
6793 2005-11-23  Raja R Harinath  <rharinath@novell.com>
6794             Ankit Jain  <jankit@novell.com>
6795
6796         * metadata.c (mono_metadata_class_equal): Pass signature_only when
6797         comparing VARs too.
6798         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
6799         type->data.generic_param only if the type is an MVAR.
6800         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
6801         leak owner-less VARs and MVARs into managed space.
6802
6803 2005-11-21  Martin Baulig  <martin@ximian.com>
6804
6805         * class-internals.h
6806         (MonoMethod): Moved the `generic_container' here from
6807         `MonoMethodNormal' since we now also need it for
6808         `MonoMethodPInvoke';
6809         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
6810         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
6811         an union containing both `MonoMethodNormal' and
6812         `MonoMethodPInvoke'.
6813
6814         * loader.c
6815         (mono_get_method_from_token): Allow implementing generic methods
6816         as interncalls.
6817
6818         * threads.c
6819         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
6820         icall.
6821
6822 2005-11-17  Dick Porter  <dick@ximian.com>
6823
6824         * icall.c: 
6825         * process.h: 
6826         * process.c: Split the Process Start_internal icall into
6827         ShellExecuteEx_internal and CreateProcess_internal, which are
6828         called depending on whether UseShellExecute is true.  Fixes bug
6829         76670.
6830
6831         * appdomain.c (MONO_CORLIB_VERSION): Incremented
6832
6833 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
6834
6835         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
6836         'msize' parameters, use the information in 'mspec' instead.
6837         (emit_object_to_ptr_conv): Ditto.
6838
6839         * marshal.c (emit_struct_conv): Handle explicit layout structs with
6840         fields out of order. Fixes #76733.
6841
6842 2005-11-17  Ankit Jain  <jankit@novell.com>
6843
6844         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
6845
6846 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
6847
6848         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
6849           bug #76575.
6850
6851 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
6852
6853         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
6854         for types with non-auto layout. Fixes #76717.
6855
6856 2005-11-16  Ankit Jain  <jankit@novell.com>
6857
6858         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
6859         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
6860         if generic_context is null.
6861           (mono_metadata_generic_param_equal): param->owner can be null.
6862           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
6863         null.
6864
6865 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
6866
6867         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
6868         the correct value.
6869
6870 2005-11-15  Martin Baulig  <martin@ximian.com>
6871
6872         * object.c (set_value): Use mono_class_from_mono_type() instead of
6873         the hack for generic instances; fixes #76136.
6874
6875 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
6876
6877         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
6878         fields.
6879
6880         * image.c (load_metadata_ptrs): Initialize the new fields.
6881
6882         * reflection.c (create_dynamic_mono_image): Ditto.
6883
6884         * reflection.c (build_compressed_metadata): Use the new fields.
6885
6886         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
6887         icall.
6888
6889         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
6890         icall.
6891         
6892 2005-11-15  Ankit Jain  <jankit@novell.com>
6893             Raja R Harinath  <harinath@gmail.com>
6894
6895         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
6896         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
6897         new per-generic_container cache if the cached MonoType's context matches
6898         the current context.
6899           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
6900         to the expected context.
6901           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
6902
6903 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6904
6905         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
6906         we changed the signature of an icall.
6907         * icall.c: Modify to mono_double_ParseImpl return true/false 
6908         depending on the success, instead of throwing the exception. This will
6909         help us in Double.TryParse methods.
6910         
6911 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
6912
6913         * marshal.c (emit_marshal_object): Throw an exception when
6914         marshalling 'object' instead of crashing. Fixes #76696.
6915
6916 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
6917
6918         * class-internals.h: Add prototype for mono_type_get_full_name ().
6919
6920 2005-11-11  Dick Porter  <dick@ximian.com>
6921
6922         * threads.c (mono_thread_manage): Make sure the main thread has
6923         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
6924
6925 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
6926
6927         * loader.c (mono_loader_set_error_type_load): Log a warning to the
6928         console about the missing type.
6929         (mono_loader_set_error_method_load): Ditto.
6930
6931 2005-11-09  Miguel de Icaza  <miguel@novell.com>
6932
6933         * mono-config.c (mono_get_config_dir): Set the system defaults if
6934         none is specified.
6935
6936         * assembly.c (mono_set_dirs): New API entry point to set the
6937         assembly and the config directory in one call
6938
6939 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
6940
6941         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
6942         the ftnptr was created from a delegate in a domain other than the
6943         current domain. Fixes #75377.
6944
6945         * exception.h exception.c: Add mono_get_exception_not_supported ().
6946
6947 2005-11-08  Martin Baulig  <martin@ximian.com>
6948
6949         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
6950
6951 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
6952
6953         * security-manager.h: Added definitions to deal with strongname key 
6954         pairs bigger (and smaller) than 1024 bits.
6955         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
6956         adjust wrt the public key length being used.
6957
6958 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
6959
6960         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
6961           Windows build (r51396-51397).
6962
6963 2005-11-03  Martin Baulig  <martin@ximian.com>
6964
6965         * class.c (mono_class_setup_vtable_general): Also add generic
6966         methods to the vtable; fixes #76581.
6967
6968 2005-11-01  Miguel de Icaza  <miguel@novell.com>
6969
6970         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
6971         sure that we lookup GetString method from the System.Text.Encoding
6972         class, not the derived class or we get an empty method.
6973
6974         Fixed class #76612.
6975
6976 2005-10-25  Miguel de Icaza  <miguel@novell.com>
6977
6978         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
6979         if it has been previously set (embedders). 
6980
6981         Make mono_set_rootdir available also on Unix.
6982
6983 005-10-24  Robert Jordan  <robertj@gmx.net>
6984
6985         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
6986
6987 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
6988
6989         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
6990         only calls which are made to native code use this flag.
6991
6992         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
6993
6994 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
6995
6996         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
6997         Add support for FieldBuilders.
6998
6999 2005-10-29  Martin Baulig  <martin@ximian.com>
7000
7001         * mono-debug.c
7002         (mono_debug_using_mono_debugger): New public method; returns
7003         whether we're running inside the debugger.
7004
7005 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
7006
7007         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
7008         for Method/Constructor/FieldBuilders.
7009
7010 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
7011
7012         * reflection.c (module_add_cattrs): Save custom attributes for global methods
7013         and fields as well.
7014
7015 2005-10-26  Martin Baulig  <martin@ximian.com>
7016
7017         * mono-debug-debugger.c
7018         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
7019
7020 2005-10-24  Raja R Harinath  <harinath@gmail.com>
7021
7022         * icall.c (base64_to_byte_array): Don't pass an out-of-range
7023         integer to isspace.
7024
7025 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
7026
7027         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
7028         when passing valuetypes byref. Fixes #76502.
7029
7030 2005-10-19  Jackson Harper  <jackson@ximian.com>
7031
7032         * profiler.c: Don't put a . in front of types that are not in a
7033         namespace.
7034
7035 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
7036
7037         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
7038
7039 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
7040
7041         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
7042         #76436.
7043         (mono_marshal_get_ldflda_wrapper): Fix a warning.
7044
7045 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7046
7047         * assembly.c metadata-internals.h icall.c: Define an additional
7048         parameter for mono_assembly_name_parse_full, so we can avoid creating
7049         S.R.AssemblyName.Version when no version info wasn't passed.
7050         
7051 2005-10-09  Miguel de Icaza  <miguel@novell.com>
7052
7053         * class.c (mono_type_get_full_name): Reimplement method that was
7054         removed. 
7055
7056         * image.c: Some docs
7057
7058 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
7059
7060         * profiler.c (output_newobj_profile): Fix printing of Total memory
7061         on x86.
7062
7063 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
7064
7065         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
7066
7067 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
7068
7069         * threads.c: remove debug output.
7070
7071 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
7072
7073         * threads.c (mono_thread_manage): Fix crashes if more than 64
7074         threads need to be aborted. Hopefully fixes #75899.
7075
7076         * assembly.c (mono_stringify_assembly_name): New helper function.
7077
7078         * class.c: Use mono_stringify_assembly_name instead of the similar
7079         static function.
7080
7081         * assembly.h assembly.c: Add support for calling a postload search 
7082         hook if an assembly cannot be loaded.
7083
7084         * appdomain.c: Register new search hooks which call the AssemblyResolve
7085         events in AppDomain. Fixes #75231
7086
7087 2005-10-07  Martin Baulig  <martin@ximian.com>
7088
7089         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
7090         methods without debug info.
7091
7092 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
7093
7094         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
7095         wrappers.
7096
7097 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7098
7099         * file-io.c: now that we return symlinks, use lstat and, when the file
7100         is a symbolic link, stat, to get the file attributes. Also avoid the
7101         conversion to/from utf16/external.
7102
7103 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
7104
7105         * class.c (mono_class_layout_fields): Compute klass->has_references
7106         correctly if an embedded valuetype is not yet initialized. Fixes
7107         #76331.
7108
7109 2005-10-04  Martin Baulig  <martin@ximian.com>
7110
7111         * metadata.c
7112         (mono_metadata_load_generic_param_constraints): New public
7113         function; splitted the constraints loading out from
7114         mono_metadata_load_generic_params().
7115
7116         * class.c (mono_class_create_from_typedef): Call
7117         mono_metadata_load_generic_param_constraints() after setting up
7118         the type and creating our parent; fixes #75329.
7119
7120 2005-10-04  Martin Baulig  <martin@ximian.com>
7121
7122         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
7123         non-dynamic parent classes.
7124
7125 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
7126
7127         * file-io.c : win32 build fix (ETXTBSY seems not found).
7128
7129 2005-10-04  Martin Baulig  <martin@ximian.com>
7130
7131         * reflection.c
7132         (mono_image_get_methodspec_token): Make the cache actually work;
7133         fixes #75974.
7134
7135 2005-10-04  Martin Baulig  <martin@ximian.com>
7136
7137         * class.c (mono_class_name_from_token): Removed the unneccessary
7138         `MonoGenericContext *' argument.
7139
7140 2005-10-04  Martin Baulig  <martin@ximian.com>
7141
7142         * loader.c
7143         (method_from_methodspec): Make the caching work again; fixes the
7144         performance regression from #76262.
7145
7146 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7147
7148         * file-io.c:
7149         * file-io.h:
7150         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
7151         GetFileSystemEntries that performs the same work but without going
7152         into io-layer, locking, etc.
7153
7154 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
7155
7156         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
7157         ThreadState_Stopped as well. Fixes #76047.
7158
7159 2005-09-29  Martin Baulig  <martin@ximian.com>
7160
7161         * class.c
7162         (inflate_generic_context): If the new context has a `gmethod', set
7163         its `container' that that gmethod's `container'.
7164
7165         * metadata.c
7166         (mono_metadata_parse_generic_param): Simplify things;
7167         `generic_container = generic_context->container;' is just fine.
7168
7169         * loader.c (method_from_methodspec): Code cleanups.
7170
7171 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
7172
7173         * decimal.c: fix warning (and let gcc generate correct
7174         code on ARM with optimizations).
7175
7176 2005-09-28  Martin Baulig  <martin@ximian.com>
7177
7178         * loader.c
7179         (method_from_memberref): Added `MonoGenericContext *class_context'
7180         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
7181         (method_from_methodspec): If we're a memberref, use the enclosing
7182         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
7183
7184 2005-09-28  Martin Baulig  <martin@ximian.com>
7185
7186         * object.c (mono_runtime_invoke_array): Added support for
7187         MONO_TYPE_GENERICINST; fixes #75917.
7188
7189 2005-09-27  Martin Baulig  <martin@ximian.com>
7190
7191         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
7192         `k->byval_arg.type' to determine the actual type.
7193
7194         * loader.c (method_from_methodspec): Removed some hacks.
7195
7196 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
7197
7198         * class-internals.h (mono_field_is_deleted): Do the test for
7199         rtspecialname before we check the actual name of the field. This
7200         prevents us from dereferencing a pointer into the string table,
7201         saving us from accessing a few pages
7202
7203         * *.c: Replace the use of {Enter,Leave}CriticalSection with
7204         macros. This will allow a deadlock debugger to easily be plugged
7205         in.
7206
7207 2005-09-27  Martin Baulig  <martin@ximian.com>
7208
7209         * loader.c (method_from_methodspec): Create a "signature"
7210         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
7211
7212 2005-09-27  Martin Baulig  <martin@ximian.com>
7213
7214         * class.c
7215         (inflate_generic_class): Correctly set the new context's
7216         container.
7217
7218         * loader.c
7219         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
7220         instead of a `MonoGenericContext *'.
7221         (mono_method_signature_full): Take a `MonoGenericContainer *'
7222         instead of a `MonoGenericContext *'.
7223
7224         * metadata.c
7225         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
7226         instead of a `MonoGenericContext *'.
7227         (mono_metadata_parse_method_signature_full): Likewise.
7228
7229 2005-09-26  Martin Baulig  <martin@ximian.com>
7230
7231         * class.c
7232         (mono_class_from_generic_parameter): Set `klass->generic_container'
7233         (mono_class_from_generic_parameter): Likewise.
7234         (mono_bounded_array_class_get): We inherit the generic container
7235         from the element class.
7236
7237         * loader.c
7238         (find_method, find_method_in_class): Take a `MonoGenericContext *'
7239         argument rather than computing it here.
7240         (method_from_memberref): Correctly set the generic context before
7241         parsing the signature.  Fixes #75681.
7242
7243 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
7244
7245         * object.c (mono_class_has_special_static_fields): Fix warnings.
7246
7247 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7248
7249         * assembly.c: Add parse_public_key function, to
7250         par the public keys. Also added mono_assembly_name_parse_full,
7251         to define it the parsed key should be freed or not.
7252         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
7253         to parse a long format assembly name.
7254         * metadata-internals.h: Keep mono_assembly_name_parse_full as
7255         private, since calling it to preserve the key requires
7256         freeing it manually.
7257         
7258 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
7259
7260         * locales.c : removed HAVE_ICU part.
7261
7262 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
7263
7264         * object.c (mono_class_create_runtime_vtable): Avoid calling 
7265         field_is_special_static if the klass has no special static fields.
7266
7267         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
7268         (MonoCachedClassInfo): Likewise.
7269
7270         * object.c (mono_class_has_special_static_fields): New helper function.
7271
7272 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
7273
7274         * class.c (mono_class_create_from_typedef): Don't call 
7275         interfaces_from_typedef_full for enums.
7276         (mono_class_create_from_typedef): Compute the base types of enums directly
7277         without calling mono_class_setup_fields ().
7278         (mono_class_find_enum_basetype): New helper function.
7279
7280         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
7281         one place inside the string heap.
7282         
7283 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
7284
7285         * class.c: locking fixes, code cleanups, some docs added.
7286         Allocate some data structures in the image mempool.
7287
7288 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
7289
7290         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
7291         the example code.
7292         
7293 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
7294
7295         * class-internals.h, class.c, reflection.c: reduce memory taken by
7296         MonoClass.
7297
7298 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
7299
7300         * metadata.c, metadata.h, loader.h: documentation updates, code and
7301         API cleanups.
7302
7303 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
7304
7305         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
7306         the example code.
7307
7308         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
7309         page faults caused by the runtime while reading metadata.
7310
7311 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7312
7313         * socket-io.c: the field names were changed 3 months ago and no one
7314         realized until bug #76077 got filed!
7315
7316 2005-09-20  Martin Baulig  <martin@ximian.com>
7317
7318         * icall.c (assembly_icalls): Removed some unused debugger icalls.
7319
7320 2005-09-20  Martin Baulig  <martin@ximian.com>
7321
7322         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
7323         write the rank into the class entry.
7324
7325 2005-09-20  Martin Baulig  <martin@ximian.com>
7326
7327         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
7328
7329 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
7330
7331         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7332
7333         * icall.c (custom_attrs_defined_internal): New icall.
7334
7335         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
7336         function.
7337         (mono_custom_attrs_construct_by_type): New helper function.
7338
7339 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
7340
7341         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
7342         terminate the resulting string. Fixes #76123.
7343
7344 2005-09-16  Martin Baulig  <martin@ximian.com>
7345
7346         * mono-debug.c
7347         (mono_debug_add_method): Ignore inflated methods for the moment.
7348
7349 2005-09-14  Martin Baulig  <martin@ximian.com>
7350
7351         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
7352
7353 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
7354
7355         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
7356         return a success/failure indication.
7357         (mono_metadata_interfaces_from_typedef_full): Ditto.
7358         (get_constraints): Ditto.
7359
7360 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
7361
7362         * marshal.c (emit_marshal_array): Fix handling of null arrays.
7363         
7364         * marshal.c (emit_marshal_array): Add support for returning string
7365         arrays from delegates. Fixes #76063.
7366
7367         * marshal.c: Use the emit_ldloc/stloc macros where possible.
7368
7369 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
7370
7371         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
7372         icall.
7373
7374 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
7375
7376         * reflection.c icall.c: Fix after mono_get_exception_type_load
7377         signature change.
7378
7379         * assembly.c (mono_assembly_get_assemblyref): New helper function.
7380         (mono_assembly_load_reference): Use the new helper.
7381
7382         * class-internals.h (MonoLoaderError): New structure containing 
7383         information about type loading errors.
7384
7385         * class-internals.h loader.c: Add APIs to store per-thread loader
7386         error information.
7387
7388         * loader.c class.c: Set the loader error if needed.
7389
7390         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
7391
7392 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
7393
7394         * decimal.c: fixed to handle the broken ARM fp format.
7395
7396 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
7397
7398         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
7399         broken.
7400
7401 2005-09-06  Martin Baulig  <martin@ximian.com>
7402
7403         * domain.c (supported_runtimes): Added v2.0.50727.
7404
7405 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
7406
7407         * culture-info.h: reduce the size of some structures.
7408
7409 2005-09-05  Martin Baulig  <martin@ximian.com>
7410
7411         Reflect latest API changes in the August CTP.
7412
7413         * icall.c
7414         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
7415         ("MonoType.HasGenericArguments"): Removed.
7416         ("MonoMethod.BindGenericParameters"): Renamed to
7417         "MakeGenericMethod".
7418         ("MethodBuilder.BindGenericParameters"): Renamed to
7419         "MakeGenericMethod".    
7420
7421 2005-09-05  Martin Baulig  <martin@ximian.com>
7422
7423         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
7424
7425 2005-09-05  Martin Baulig  <martin@ximian.com>
7426
7427         Applying a patch from Michal Moskal <malekith@nemerle.org>.
7428
7429         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
7430         generic_container is non-NULL.
7431
7432 2005-09-05  Martin Baulig  <martin@ximian.com>
7433
7434         Applying a patch from Michal Moskal <malekith@nemerle.org>.
7435
7436         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
7437
7438 2005-08-29  Michal Moskal  <malekith@nemerle.org>
7439
7440         * reflection.c (encode_locals,
7441         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
7442         for large generic types.
7443
7444 2005-09-05  Martin Baulig  <martin@ximian.com>
7445
7446         Applying a patch from Michal Moskal <malekith@nemerle.org>.
7447
7448         * class.c (mono_dup_array_type): New public method.
7449         (mono_metadata_signature_deep_dup): New public method.
7450         (dup_type): Correctly duplicate array and function types.
7451
7452 2005-09-05  Martin Baulig  <martin@ximian.com>
7453
7454         Applying a patch from Michal Moskal <malekith@nemerle.org>.
7455
7456         * reflection.c (get_default_param_value_blobs): Handle generic types
7457         and generic methods.
7458
7459 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
7460
7461         * class.c: Fixed error reporting (method/class were inversed) for 
7462         inheritance demands.
7463         * security-manager.c|h: Added the AppDomain when calling the managed
7464         System.Security.SecurityManager.InheritanceDemand method.
7465
7466 2005-09-01  Raja R Harinath  <rharinath@novell.com>
7467
7468         * reflection.c (encode_marshal_blob): 'marshaltype' and
7469         'marshaltyperef' are alternate sources for the custom marshaler
7470         name.
7471
7472 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
7473
7474         * class.c: fix creation of array classes with rank == 1
7475         (patch by Ankit Jain <jankit@novell.com>).
7476
7477 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
7478
7479         * object.c: fix check for creating the bound data for arrays vs
7480         szarrays.
7481
7482 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7483
7484         * object.c: configuration file name is now based on the executable name,
7485         not the image name. Fixes bug #75931.
7486
7487 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
7488
7489         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
7490         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
7491
7492 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
7493
7494         * rand.c: Use wincrypt.h instead of WinCrypt.h.
7495
7496 2005-08-24  Ankit Jain  <jankit@novell.com>
7497             Raja R Harinath  <rharinath@novell.com>
7498
7499         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
7500           called by it recursively.
7501           (mono_class_init): Remove special case in pending_init handling, since it's
7502           superseded by the fix to mono_class_from_typeref.
7503
7504 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
7505
7506         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
7507         BROKEN_THREAD_START stuff.
7508
7509 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
7510
7511         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
7512         trampoline.
7513
7514         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
7515         
7516         * object.c (mono_delegate_ctor): Replace the original function address with
7517         a delegate trampoline.
7518
7519 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
7520
7521         * icall.c: add boolean argument to base64_to_byte_array and 
7522         InternalFromBase64String to control whether a whitespace-only string
7523         is allowed (or should casue a FormatException to be thrown). We need
7524         this as the behavior has changed between MS.NET 1.x and 2.0, and we
7525         to match the MS behaviour in both profiles.
7526         * appdomain.c: Bump corlib version.
7527
7528 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7529
7530         This patch implements a big portion of publisher policy
7531         support, used to bind assembly versions and redirect
7532         one assembly from version A to version B.
7533
7534         * assembly.c:
7535         New GSList loaded_assembly_bindings, for storing the cached
7536         assembly bindings.
7537         (assembly_binding_maps_name): New static function for checking if a 
7538         assembly binding information maps an assembly name.
7539         (mono_assembly_binding_info_free): New function for freeing
7540         assembly binding information resources.
7541         (get_publisher_policy_info): New static function for retrieving 
7542         assembly binding information from a MonoImage.
7543         (compare_versions): New static function for comparing an assembly
7544         binding information data and the version of an assembly name.
7545         (check_policy_versions): New static function for checking if an
7546         assembly binding info mapping an assembly name is valid for it.
7547         (mono_assembly_load_publisher_policy): New static function for
7548         loading the 'policy.major.minor.MyAssembly' image for an assembly
7549         with an assembly name 'aname'.
7550         (mono_assembly_bind_version): New static function for updating
7551         assembly redirection.
7552         (mono_assembly_apply_binding): New static function for applying
7553         assembly binding.
7554         (search_binding_loaded): New static function for searching 
7555         loaded assembly binding infos in the cache domain.
7556         (mono_assembly_load_full): Don't apply assembly binding for
7557         reflection only assemblies.
7558
7559         * metadata-internals.h: Add MonoAssemblyBindingInfo,
7560         which contains information about assembly binding. Also
7561         declare signature for mono_config_parse_publisher_policy ()
7562         function, used to retrieve pub policy info.
7563         
7564         * mono-config.c:
7565         (publisher_policy_start): New static function used to parse publisher 
7566         policy config files.
7567         (publisher_policy_parser): New static MonoParseHandler containing 
7568         the functions used when parsing config files.
7569         (mono_config_parse_publisher_policy): New function for parsing
7570         publisher policy files.
7571         
7572 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
7573
7574         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
7575
7576         * marshal.c (mono_delegate_free_ftnptr): Ditto.
7577
7578         * object.c (mono_get_addr_from_ftnptr): New helper function.
7579
7580         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
7581
7582         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7583
7584 2005-08-19  Dick Porter  <dick@ximian.com>
7585
7586         * threads.c, threads.h, appdomain.c, appdomain.h,
7587         profiler-private.h, monitor.c, object.c, object-internals.h,
7588         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
7589         store the thread ID, so it can hold a 64 bit value if needed.
7590
7591 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
7592
7593         * reflection.c (mono_reflection_create_dynamic_method): Store the
7594         handle class into the method references as well so ldtoken works in
7595         dynamic methods.
7596
7597         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
7598         types.
7599
7600 2005-08-19  Ankit Jain <jankit@novell.com>
7601
7602         Fix #75847.
7603         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
7604           here rather than using the method signature of a arbitrary function
7605           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
7606           two arguments.
7607           Hack done with Harinath.
7608
7609 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7610
7611         * threadpool.c: disable printing stack traces when we get a exception
7612         in a threadpool thread. I need to do more testing to figure out which
7613         cases actually print this. Fixes bug #75828.
7614
7615 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7616
7617         * icall.c: there might be ignored whitespace after the last '='. This
7618         fixes length computation and bug #75840.
7619
7620 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
7621
7622         * assembly.c (mono_assembly_load_full): Consider .exe extension as
7623         well. Fixes #75809.
7624
7625         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
7626         #75784.
7627         
7628         * reflection.c (create_custom_attr_data): Ditto.
7629
7630 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
7631
7632         * locales.c, culture-info.h : removed RegionLCIDMap.
7633         * culture-info-tables.h : regenerated.
7634
7635 2005-08-16  Martin Baulig  <martin@ximian.com>
7636
7637         * class.c (mono_type_get_name_recurse): Small fix.
7638
7639 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
7640
7641         * locales.c : indentation fixie.
7642
7643 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
7644
7645         * object-internals.h,
7646           locales.h,
7647           locales.c,
7648           culture-info.h,
7649           icall.c : added RegionInfo table support.
7650         * culture-info-table.h : regenerated for region support.
7651
7652 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
7653
7654         * reflection.c (resolve_object): handle all kinds of MonoMethod
7655         including generic ones
7656
7657 2005-08-12  Ankit Jain <jankit@novell.com>
7658
7659         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
7660           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
7661
7662 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
7663
7664         * process.c: Don't close a thread handle when it's NULL. This is a
7665         workaround for bug #75733.
7666
7667 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
7668
7669         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
7670
7671 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
7672
7673         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
7674
7675 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7676
7677         * threadpool.c: if a work item in the thread pool has a callback that
7678         catches a exception, don't propagate it after invoking the callback.
7679         Fixes bug #75336.
7680
7681 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
7682
7683         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
7684
7685         * class-internals.h (MonoCachedClassInfo): Add some new fields.
7686
7687         * class.c (mono_class_init): Load field info lazily in the AOT case.    
7688
7689         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
7690
7691 2005-08-03  Ankit Jain  <jankit@novell.com>
7692
7693         Fix #75683.
7694         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
7695           PInvoke calling convention is 0.
7696
7697 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
7698
7699         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
7700         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
7701
7702 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
7703
7704         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
7705         to handle threads not started by the GC (patch by Michael Meeks
7706         <michael.meeks@novell.com>).
7707
7708 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
7709
7710         * reflection.c: Make buffer used in emitting types larger for some
7711         big generic types (patch by Michal Moskal).
7712
7713 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
7714
7715         * mono-debug.c: Fix some (not all) alignment problems.
7716
7717 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7718
7719         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
7720         Invoke mono_image_load_from_data_full passing the refonly
7721         parameter.
7722
7723         * assembly.c
7724         (mono_assembly_open_from_bundle): Add the refonly argument, 
7725         in order to pass it to other methods it calls to.
7726         (do_mono_assembly_open): Add the refonly argument, in order 
7727         to pass it to other methods it calls to.
7728         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
7729         the refonly parameter to it.
7730
7731         * image.c: Add loaded_images_refonly_hash and
7732         loaded_images_refonly_guid_hash to cache the reflection
7733         only loaded images.
7734         (mono_images_init): Initialize the hash tables used for
7735         caching the reflection only images.
7736         (load_modules): Invoke mono_image_open_full passing the refonly
7737         parameter to load the modules the correct way.
7738         (build_guid_table): Add the refonly argument, to re-build the 
7739         correct hash table.
7740         (do_mono_image_open): Added the refonly argument, in order to
7741         define it for the loaded image.
7742         (mono_image_loaded_full): New function, which receives an
7743         additional parameter to look for the image in the refonly or
7744         non-refonly section.
7745         (mono_image_loaded): Updated, using mono_image_loaded_full.
7746         (mono_image_loaded_by_guid_full): The same case that happens
7747         with mono_image_loaded_full.
7748         (mono_image_loaded_by_guid): Likewise.
7749         (register_image): Use the ref_only variable inside MonoImage
7750         to decide in which hash table store the current image.
7751         (mono_image_open_from_data_full): Rename
7752         mono_image_open_from_data to mono_image_open_from_data_full,
7753         adding the refonly argument, to define the ref_only variable 
7754         inside MonoImage.
7755         (mono_image_open_from_data): Return 
7756         mono_image_open_from_data_full.
7757         (mono_image_open_full): Rename mono_image_open to
7758         mono_image_open_full, receiving the new refonly argument,
7759         to pass it to inner methods.
7760         (mono_pe_file_open): Update this function, to open
7761         a MonoImage as a non-refonly image.
7762         (mono_image_close): Use the refonly variable inside
7763         MonoImage to remove the image from the correct caches.
7764
7765         * image.h: Add the signatures of mono_image_open_full,
7766         mono_image_open_from_data_full, mono_image_loaded_full,
7767         mono_image_loaded_by_guid_full.
7768
7769         * metadata-internals.h: Add the ref_only field to 
7770         MonoImage.
7771         
7772 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7773
7774         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
7775         Fix the last behavior, which used to load the assemblies and
7776         extract MonoReflectionAssemblyName information, instead of
7777         extract it from the metadata tables. Needed for Reflection
7778         Only assemblies.
7779         
7780 2005-07-29  Martin Baulig  <martin@ximian.com>
7781
7782         * mono-debug-debugger.c
7783         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
7784         not initialized.
7785
7786         * mono-debug.c
7787         (mono_debug_address_from_il_offset): Check whether we have
7788         debugging support before attempting to take the lock.
7789         (mono_debug_source_location_from_address): Likewise.
7790         (mono_debug_source_location_from_il_offset): Likewise.
7791         (mono_debug_il_offset_from_address): Likewise.
7792         (mono_debug_address_from_il_offset): Likewise.
7793
7794 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
7795
7796         * class.c (mono_class_from_name_case): Add support for dynamic images.
7797         Fixes #75650.
7798
7799         * object.c (mono_class_compute_gc_descriptor): Add a workaround
7800         for #75479.
7801
7802 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
7803         
7804         * reflection.c (mono_method_get_object): Fix warning.
7805
7806 2005-07-28  Martin Baulig  <martin@ximian.com>
7807
7808         * mono-debug.c
7809         (mono_debug_add_wrapper): Also write the wrapper type.
7810
7811 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
7812
7813         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
7814         
7815         * class.c (mono_class_init): Avoid reading nested classes if the AOT
7816         data indicates the class has none.
7817
7818 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
7819
7820         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
7821         loader lock with the debugger lock. Prevents deadlocks for beagle.
7822
7823         Beagle can now run on an smp box for a weekend without any
7824         issues. Woohoo!
7825
7826 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
7827
7828         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
7829         in a module. Fixes #75629.
7830
7831 2005-07-26  Martin Baulig  <martin@ximian.com>
7832
7833         * mono-debug.c (mono_debug_add_wrapper): New static method.
7834         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
7835         interncall or a wrapper.
7836
7837         * mono-debug.h (MonoDebugWrapperData): New public typedef.
7838         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
7839         (MONO_DEBUGGER_VERSION): Bump to 51.
7840
7841         * mono-debug-debugger.c
7842         (mono_debugger_add_type): Removed this empty function.
7843         (mono_debugger_add_method): Likewise.
7844
7845 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
7846
7847         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
7848         before accessing method->slot.
7849
7850 2005-07-21  Jb Evain  <jbevain@gmail.com>
7851
7852         * reflection.c (method_encode_clauses/class): Handle filters clauses.
7853         Fixes #75010.
7854
7855 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
7856
7857         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
7858         #75587.
7859
7860 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
7861
7862         * image.h image.c: Add mono_image_get_guid () API function.
7863
7864 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
7865
7866         There were issues when multiple threads tried to load
7867         assemblies. A deadlock was created between assemblies_mutex and
7868         mono_domain_assemblies_lock. This fixes the issue by making the
7869         assembly ref counting be lock free. See bug 75586.
7870         
7871         * image.c (mono_image_close): The add ref function here was using
7872         Interlocked operations while the unref was using a mutex and a
7873         --. I don't think this was ever a bug that would be exposed in a
7874         non-pendantic way (ie, by an embedder doing a ref on one thread
7875         and an unref on another), but for the sake of correctness, this is
7876         now Interlocked.
7877
7878         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
7879         (mono_assembly_load_reference): Call mono_assembly_addref rather
7880         than touching the refcount ourselves.
7881         (mono_assembly_close): Use InterlockedDecrement to unref the
7882         assembly. Don't acquire the lock unless it is actually needed.
7883
7884 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
7885
7886         * class.c (mono_class_layout_fields): Fix calculation of has_references
7887         for generic types.
7888
7889 2005-07-12  Martin Baulig  <martin@ximian.com>
7890
7891         Applying a patch from Michal Moskal <malekith@nemerle.org>.
7892
7893         * metadata.c
7894         (mono_type_hash): Provide better hashing for generic instances.
7895         (mono_generic_inst_hash): Improve hashing.
7896         (mono_generic_class_hash): Likewise.
7897
7898         * reflection.c (mymono_metadata_type_hash): Improve hashing for
7899         generic instances.
7900
7901 2005-07-12  Martin Baulig  <martin@ximian.com>
7902
7903         * reflection.c (mono_reflection_create_runtime_class): Remove the
7904         hack for generic type definitions and non-`Run' assemblies.
7905         (mono_reflection_bind_generic_parameters): Also use
7906         `klass->wastypebuilder' to check for TypeBuilders.
7907
7908 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
7909
7910         * class.c (mono_class_layout_fields): Fix calculation of has_references
7911         for generic types.
7912
7913         * class.c (inflate_generic_class): Fix a leak.
7914         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
7915         for generic types.
7916
7917 2005-07-11  Martin Baulig  <martin@ximian.com>
7918
7919         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
7920         on error.
7921
7922 2005-07-11  Martin Baulig  <martin@ximian.com>
7923
7924         * loader.c (find_method): Also lookup in
7925         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
7926
7927 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
7928
7929         * appdomain.c (mono_domain_unload): Don't free the error message
7930         before passing it to mono_get_exception_...
7931
7932         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
7933         
7934 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
7935
7936         * threads.c: try to better guess an available RT signal (bug #75387).
7937
7938 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
7939
7940         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
7941         and CACHE_OBJECT.
7942
7943 2005-07-07  Martin Baulig  <martin@ximian.com>
7944
7945         * class.c (mono_type_get_name_full): Return NULL for
7946         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
7947         fixes #75408.
7948
7949 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
7950
7951         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
7952         exit the appdomain as well being aborted.
7953
7954         * threadpool.c: Create all threadpool threads inside the root appdomain, and
7955         change back to the root domain after calling managed code. This enables
7956         appdomains using threadpools to be unloaded.
7957
7958 2005-07-07  Martin Baulig  <martin@ximian.com>
7959
7960         * class-internals.h
7961         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
7962         into `MonoDynamicGenericClass' since we only need it for dynamic
7963         types.
7964
7965         * reflection.c (mono_class_bind_generic_parameters): We don't need
7966         to compute the `parent' here.
7967
7968 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
7969
7970         * culture-info-table.h : regenerated.
7971
7972 2005-07-06  Martin Baulig  <martin@ximian.com>
7973
7974         * icall.c
7975         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
7976
7977         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
7978
7979 2005-07-06  Martin Baulig  <martin@ximian.com>
7980
7981         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
7982         we're doing a signature-only comparision; fixes #74945.
7983
7984 2005-07-06  Martin Baulig  <martin@ximian.com>
7985
7986         * class-internals.h (MonoGenericClass): Moved some things out into
7987         a new `MonoInflatedGenericClass' type.  
7988         (MonoInflatedGenericClass): New type; the `klass' of a
7989         `MonoGenericClass' is now computed lazyly in
7990         mono_get_inflated_generic_class().      
7991
7992         * class.c (mono_get_inflated_generic_class): New public function.
7993         (mono_class_inflate_generic_method): Removed the unused
7994         `MonoClass *' argument.
7995         (setup_generic_vtable): Don't call mono_get_inflated_method() on
7996         all the methods.
7997         (mono_class_create_generic): Make this static and merge it with
7998         mono_class_create_generic_2(); we're now called automatically from
7999         mono_get_inflated_generic_class().
8000
8001         * loader.c (mono_method_signature): Call
8002         mono_get_inflated_method() here.
8003
8004 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
8005
8006         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
8007         type of fields with RVA.
8008
8009         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
8010         for this pseudo class.
8011         (my_mono_class_from_generic_parameter): Likewise.
8012         (mono_class_init): Allow interfaces to have cctors.
8013
8014 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
8015
8016         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
8017         lazily for AOT methods.
8018
8019 2005-07-05  Martin Baulig  <martin@ximian.com>
8020
8021         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
8022         returns FALSE for a successful match, not TRUE.
8023
8024 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
8025
8026         * loader.c (mono_method_get_index): Optimize this a bit.
8027
8028 2005-07-04  Martin Baulig  <martin@ximian.com>
8029
8030         * class.c
8031         (class_compute_field_layout): Move the check for generic type
8032         definitions into mono_class_layout_fields().  Fixes #74684.
8033         (mono_class_from_generic_parameter): Correctly compute
8034         `klass->parent'; fixes #75457.
8035
8036         * reflection.c (register_assembly, register_module): Make sure
8037         `domain->rejobject_hash' is already created.
8038
8039 2005-07-02  Martin Baulig  <martin@ximian.com>
8040
8041         * class-internals.h
8042         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
8043         `MonoDynamicGenericClass'.      
8044
8045 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
8046
8047         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
8048         returned by a field getter is null, since null is a valid value.
8049
8050 2005-07-01  Martin Baulig  <martin@ximian.com>
8051
8052         * reflection.c (mono_reflection_generic_class_initialize): Update
8053         the `dgclass->fields [i].parent' to the correct class.
8054         (mono_image_get_fieldref_token): Use the declaring type, not the
8055         reflected type.
8056
8057 2005-07-01  Martin Baulig  <martin@ximian.com>
8058
8059         * loader.c (find_method): Also look in the interfaces; fixes #75429.
8060
8061 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
8062
8063         * threads.c (thread_cleanup): assert that thread != NULL
8064         (wait_for_tids_or_state_change): We were using the wrong variable
8065         when accessing wait->threads. `i' was always out of the bounds of
8066         the array.
8067
8068 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8069
8070         * loader.c: map user32 and kernel32 to libMonoSupportW
8071
8072 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
8073
8074         * appdomain.c (unload_thread_main): Mark this as WINAPI.
8075
8076 2005-06-28  Martin Baulig  <martin@ximian.com>
8077
8078         * loader.c (method_from_methodspec): Fix #75334.
8079
8080 2005-06-28  Martin Baulig  <martin@ximian.com>
8081
8082         Fix #74953 - Arrays now implement the generic IList<T> interface
8083         on the 2.0 platform.
8084
8085         * class-internals.h (MonoDefaults): Added `generic_array_class'.
8086
8087         * reflection.c (mono_class_bind_generic_parameters): New public
8088         function; similar to mono_reflection_bind_generic_parameters(),
8089         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
8090
8091         * domain.c (mono_init_internal): Try to initialize.
8092         `mono_defaults.generic_array_class' here; this'll only succeed if
8093         we're using the 2.0 corlib.
8094
8095         * icall.c
8096         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
8097         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
8098         (mono_lookup_internal_call): Added support for nested classes.
8099
8100         * loader.c
8101         (mono_get_method_from_token): Set `result->signature->pinvoke' if
8102         we're an interncall and have generic arguments.
8103
8104         * class.c
8105         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
8106         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
8107         instance of System.Array.InternalArray<T> for arrays, so they
8108         implement the generic IList<T> interface.
8109
8110 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
8111
8112         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
8113         (chastamar@yahoo.com). Fixes #75374.    
8114
8115 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
8116
8117         * culture-info-table.h: regenerated.
8118
8119 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8120
8121         * icall.c: handle spaces correctly for base64 strings.
8122
8123 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
8124
8125         * *.c: Kill some warnings.
8126
8127 2005-06-23  Duncan Mak  <duncan@novell.com>
8128
8129         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
8130         that this builds on Solaris 10 (x86).
8131
8132 2005-06-23  Martin Baulig  <martin@ximian.com>
8133
8134         * class.c
8135         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
8136         generic type definitions.
8137
8138 2005-06-23  Martin Baulig  <martin@ximian.com>
8139
8140         Fix #75331.
8141
8142         * metadata.c (mono_class_get_overrides): Renamed to
8143         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
8144         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
8145         pass it to mono_get_method_full().
8146
8147 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
8148
8149         * reflection.c (mono_reflection_create_runtime_class): take the
8150         mono_domain_lock in this method. Prevents deadlocks
8151
8152 2005-06-22  Martin Baulig  <martin@ximian.com>
8153
8154         * loader.c (method_from_methodspec): Fix #75330.
8155
8156 2005-06-22  Martin Baulig  <martin@ximian.com>
8157
8158         * reflection.c (type_get_qualified_name): Use
8159         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
8160         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
8161         argument; use it if we don't have an assembly name.
8162
8163 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
8164
8165         * object.c: In mono_message_init, set "copy out" flag for in
8166         parameters with the [Out] flag.
8167
8168 2005-06-21  Martin Baulig  <martin@ximian.com>
8169
8170         * class.c
8171         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
8172         and MONO_TYPE_PTR.
8173
8174 2005-06-21  Martin Baulig  <martin@ximian.com>
8175
8176         * class.c (mono_class_init): Don't initialize `class->fields' for
8177         generic instances since they're initialized again in
8178         compute_field_layout(). 
8179         (compute_field_layout): Set the field's `generic_info' here; fix
8180         #75320. 
8181
8182 2005-06-21  Martin Baulig  <martin@ximian.com>
8183
8184         * class-internals.h
8185         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
8186
8187         * metadata.c (mono_metadata_generic_method_equal): Also
8188         distinguish the `generic_class'; fixes #75334.
8189
8190 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8191
8192         * domain.c:
8193         * appdomain.c:
8194         * domain-internals.h:
8195         * reflection.c: 'domain_assemblies' field is now protected by its own
8196         lock. Don't call into managed code to run the AssemblyLoad event if we
8197         now there are no registered delegates for it.
8198
8199 2005-06-20  Martin Baulig  <martin@ximian.com>
8200
8201         * class.c (mono_class_is_assignable_from): Use a custom version of
8202         mono_class_has_parent() to make things work for generic instances;
8203         fix #75300.
8204
8205 2005-06-20  Martin Baulig  <martin@ximian.com>
8206
8207         * loader.c (method_from_methodspec): Apply a patch from
8208         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
8209
8210 2005-06-20  Martin Baulig  <martin@ximian.com>
8211
8212         * class.c (mono_class_init): Reverted Zoltan's last change; it
8213         breaks generics.
8214
8215 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
8216
8217         * threads.c (wait_for_tids_or_state_change): Add missing locking.
8218
8219 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8220
8221         * socket-io.c: fix the index in the socket array for writable/error
8222         sockets. Fixes bug #75306.
8223
8224 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
8225
8226         * class.c (mono_class_init): Allow interfaces to have static ctors.
8227
8228 2005-06-17  Martin Baulig  <martin@ximian.com>
8229
8230         * loader.c (method_from_methodspec): Use `context->container' when
8231         parsing the `gmethod->inst'.
8232
8233 2005-06-17  Martin Baulig  <martin@ximian.com>
8234
8235         * class.c (mono_type_get_name_recurse): Don't add the assembly
8236         name for type arguments.
8237
8238 2005-06-15  Martin Baulig  <martin@ximian.com>
8239
8240         * reflection.c (mono_image_get_inflated_method_token): Encode
8241         correct klass; fixes #75260.
8242
8243 2005-06-13 Michal Moskal <malekith@nemerle.org>
8244
8245         * icall.c: Make GetCorrespondingMethod/Constructor take
8246         MonoReflectionMethod method not MonoMethod. Removed
8247         MonoType.GetCorrespondingField, and make
8248         MonoGenericType.GetCorrespondingField take name not
8249         MonoClassField.
8250
8251 2005-06-13  Michal Moskal <malekith@nemerle.org>
8252
8253         * reflection.c (field_encode_signature, encode_locals):
8254          Make sizes of buffers for types larger (for big generic types).
8255          (create_generic_typespec,
8256          mono_reflection_sighelper_get_signature_local,
8257          mono_reflection_sighelper_get_signature_field):
8258          Add asserts for too small buffers.
8259
8260 2005-06-15  Martin Baulig  <martin@ximian.com>
8261
8262         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
8263         if our parent is not a dynamic type.
8264
8265 2005-06-15  Martin Baulig  <martin@ximian.com>
8266
8267         * class-internals.h (MonoTypeNameFormat): New enum.
8268
8269         * class.c
8270         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
8271         (mono_type_get_full_name): Removed.
8272         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
8273         argument instead of the boolean's.
8274
8275         * icall.c (ves_icall_System_MonoType_getFullName):
8276         Added `gboolean assembly_qualified'.    
8277
8278         * reflection.h
8279         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
8280
8281         * reflection.c (mono_reflection_parse_type): Parse the new type
8282         name format.
8283
8284 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8285
8286         * icall.c: no need to convert from utf16 to utf8 and then back again
8287         after the call to GetLogicalDrives.
8288
8289 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8290
8291         * icall.c: frombase64. Fix problems exposed by new tests.
8292
8293 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8294
8295         * icall.c: added internal calls for converting char [] and strings in
8296         base64 into byte [].
8297
8298 2005-06-10  Martin Baulig  <martin@ximian.com>
8299
8300         * class.c (mono_class_create_generic_2): Read the nested classes
8301         from the metadata rather than from `gklass->nested_classes' since
8302         `gklass' might not be initialized yet.
8303
8304 2005-06-09  Duncan Mak  <duncan@novell.com>
8305
8306         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
8307         all public headers. Fixes #74919.
8308
8309 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
8310
8311         * domain.c: The key for proxy_vtable_hash is now a pointer
8312         array. Added new GHashFunc and GCompareFunc functions for this.
8313
8314         * class.h: The list of interfaces in MonoRemoteClass is known in
8315         advance and can't grow (we create a new MonoRemoteClass if needed),
8316         so now the interface array can be allocated together with
8317         MonoRemoteClass.
8318         
8319         * object.c: Added a new method create_remote_class_key.
8320         Fixed mono_remote_class so it does not depend on
8321         mono_upgrade_remote_class.
8322         Removed extend_interface_array.
8323         Added new method clone_remote_class(), which makes a copy of a remote
8324         class and adds a new interface or class to it.
8325         mono_upgrade_remote_class() now creates a new remote class (or gets
8326         it from the cache) if an vtable upgrade is needed. In this way
8327         we make sure that other objects sharing the same remote class
8328         don't get the new vtable with unwanted interfaces.
8329         
8330         * object-internals.h:
8331         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
8332         
8333         * marshal.c: Track changes in mono_upgrade_remote_class().
8334
8335 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
8336         * icall.c: Add runtime methods for obtaining members of inflated
8337         class, which were created from supplied non-inflated members. It
8338         is used in internal Get{Method,Constructor,Field} methods in
8339         System.Type
8340
8341 2005-06-09  Martin Baulig  <martin@ximian.com>
8342
8343         * reflection.c
8344         (mono_reflection_bind_generic_method_parameters): Fix #75169.
8345
8346 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8347         * reflection.c (mono_image_basic_init): Define
8348         Version in MonoDynamicAssembly. 
8349         
8350 2005-06-08  Martin Baulig  <martin@ximian.com>
8351
8352         Fix #75136.
8353
8354         * loader.c
8355         (mono_method_signature_full): New public method; takes a
8356         `MonoGenericContext *'.
8357         (find_method): Use mono_method_signature_full() and pass the
8358         klass'es context to it.
8359
8360         * class.c (mono_class_is_inflated_method): Use
8361         mono_method_signature_full() and pass the context to it.
8362
8363 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
8364
8365         * object.c: add proper locking in mono_remote_class_vtable(),
8366         fixes possible memory corruption.
8367
8368 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
8369
8370         * marshal.c (mono_remoting_marshal_init): set
8371         initialized after initialization.
8372
8373 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
8374
8375         * locales.c : hush.
8376
8377 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
8378
8379         * object.c (extend_interface_array): fix really silly
8380         memory corrupting / comparison bug.
8381
8382 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8383
8384         * reflection.c: Functions added to support the creation
8385         of CustomAttributeData, which includes Attribute data
8386         used by ReflectionOnly methods.
8387
8388         * reflection.h:  mono_reflection_get_custom_attrs_data and
8389          mono_custom_attrs_data_construct added (functions exposed).
8390
8391          * icall.c: Added mono_reflection_get_custom_attrs_data
8392          as icall.
8393         
8394 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
8395
8396         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
8397         lupus's request.
8398
8399 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
8400
8401         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
8402
8403         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
8404         dynamic DllImportAttribute.
8405
8406         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
8407         dynamic DllImportAttribute.
8408
8409         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
8410         Fixes #75162.
8411
8412 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8413
8414         * threads.c: avoid segfault when an unstarted thread is aborted.
8415
8416 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
8417
8418         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
8419         Returns the name and version of the runtime for reporting.
8420
8421 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8422
8423         * appdomain.c: bump corlib version.
8424         * object-internals.h: new field in MonoReflectionAssembly.
8425
8426 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8427
8428         * object-internals.h: Carlos forgot to add this field.
8429
8430 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8431
8432         * icall.c: Added create_version to create instances
8433         of Version of MonoReflectionAssemblyName. This change helps
8434         the AssemblyName tests to keep running fine.
8435         
8436 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
8437   
8438         * object.c (mono_method_return_message_restore): A somehow less
8439         intrusive fix for #75138.
8440
8441 2005-06-03  Raja R Harinath  <rharinath@novell.com>
8442
8443         * object.c (mono_method_return_message_restore): Fix computation
8444         of expected number of out args.
8445
8446 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
8447
8448         * reflection.c (mono_image_get_method_info): Fix the case when the
8449         charset is empty.
8450
8451 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
8452
8453         * object.c: Added missing null check in
8454           mono_method_return_message_restore.
8455
8456 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
8457
8458         * reflection.c (mono_image_get_method_info): Handle the case when
8459         dllentry is empty.
8460
8461 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
8462
8463         * object.c: When creating the vtable for a proxy, take into account
8464         all inherited interfaces, not only the ones registered in
8465         iclass->interfaces. This fixs bug #74996.
8466         Also, in mono_method_return_message_restore, verify that the array
8467         of out args has the expected lengh.
8468
8469 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8470
8471         * socket-io.c: update the timeout in Poll when the call is interrupte.
8472
8473 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8474
8475         * socket-io.c: support abort/suspend in Select_internal after last
8476         change.
8477
8478 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8479
8480         * threadpool.c: remove warning.
8481
8482 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8483
8484         * icall.c:
8485         * socket-io.[ch]: Select_internal uses poll() now when available, thus
8486         removing the 1024 limit from select(). Runtime part of the fix for
8487         bug #71203.
8488
8489 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8490
8491         * socket-io.c: when resolving the addresses for the same
8492         host returned by gethostname(), get the local IPs from the interface
8493         list. Loopback addresses are discarded if the are interfaces up with
8494         non-loopback ones. Fixes bug #63265.
8495
8496 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
8497
8498         * appdomain.c, verify.c, object-internals.h, reflection.c:
8499         bumped corlib number to 36, and added new extra_flags field
8500         to ReflectionMethodBuilder and friends.  Fixes #75060.
8501
8502 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
8503
8504         * gc.c: register a new weak link only if the object is non-null
8505         (fixes bug#75047).
8506
8507 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
8508
8509         * culture-info.h : short time pattern too.
8510
8511 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
8512
8513         * culture-info.h : expand long time pattern string length.
8514
8515 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
8516
8517         * culture-info-table.h : update (more French date format; #72788).
8518
8519 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
8520
8521         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
8522         the method is static. Fixes #75029.
8523
8524 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
8525
8526         * reflection.c: Update the table_idx field of method builders after
8527         saving the module, since it can change. This is a workaround for
8528         bug #74914. 
8529
8530 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
8531
8532         * culture-info-table.h : update (additional French date format).
8533
8534 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
8535
8536         * icall.c (ves_icall_type_Equals): Revert last change.
8537         
8538         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
8539
8540         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
8541
8542 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
8543
8544         * class-internals.h: Added executioncontext_class field to 
8545         MonoDefaults structure.
8546         * domain.c: Cache System.Threading.ExecutionContext class in 
8547         mono_defaults.
8548         * object.c: Capture the ExecutionContext for asynchroneous calls in
8549          mono_async_result_new.
8550         * object-internals.h: Added execution_context and original_context 
8551         fields to MonoAsyncResult. Added execution_context to MonoThread.
8552         * security-manager.c|.h: Added mono_get_context_capture_method to 
8553         return the capture method (if required by the security manager or by
8554         the framework version used).
8555         * threadpool.c: Apply capture (if present) ExecutionContext in 
8556         mono_async_invoke and revert to original context after it completes.
8557
8558 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
8559
8560         * culture-info-table.h : updated (real hacky solution for zh-CHT).
8561
8562 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
8563
8564         * culture-info-table.h : zh-CHT related workaround.
8565
8566 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
8567
8568         * marshal.c (emit_marshal_custom): Add some error checking and call the
8569         methods in the ICustomMarshaler interface. Fixes #74875.
8570         
8571         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
8572         native->managed wrappers.
8573
8574 2005-05-12  Martin Baulig  <martin@ximian.com>
8575
8576         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
8577         here and use the loader lock.
8578
8579         * mono-debug.c: Properly lock when the debugger is not attached.
8580         (mono_debug_init): Release the initial lock if we're not running
8581         in the debugger.
8582
8583 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
8584
8585         * marshal.c (emit_marshal_custom): Pass through NULL values without
8586         calling the custom marshalling routines.
8587
8588         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
8589         conversion in structures. Fixes #74882.
8590
8591 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
8592
8593         * culture-info-table.h : zh-* cultures were missing.
8594
8595 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
8596
8597         * threads.c: Added a new event background_change_event which is signaled
8598         when a thread changes its background mode.
8599         Moved here several checks previously done in managed code. The checks
8600         require the thread lock, and using the thread lock in managed code
8601         can result in deadlocks.
8602         Merged Start_internal and Thread_internal into a single method. Now 
8603         Thread_internal does all work of creating and starting a thread.
8604         Added icalls for setting and getting the state of the object. Moved from
8605         managed code to avoid locking there.
8606         Added wait_for_tids_or_state_change() which is called instad of
8607         wait_for_tids when waiting for non-backround threads to end. This method
8608         will return if one of the threads ends or the background_change_event
8609         is signaled.
8610         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
8611         the background mode. This method signals the background_change_event
8612         event.
8613         * icall.c:
8614         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
8615         removed Start_internal.
8616         
8617 2005-05-11  Martin Baulig  <martin@ximian.com>
8618
8619         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
8620         to order of some fields to get proper alignment on 64-bit machines.
8621
8622 2005-05-11  Martin Baulig  <martin@ximian.com>
8623
8624         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
8625         changes as they're broken and completely fuck up the debugger.
8626
8627         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
8628
8629 2005-05-10  Martin Baulig  <martin@ximian.com>
8630
8631         * reflection.c (mono_reflection_generic_class_initialize): Don't
8632         call mono_class_setup_parent() here.
8633
8634 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8635
8636         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
8637         send/receive timeout use an integer in milliseconds. We were using a
8638         struct timeval.
8639
8640 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8641
8642         * locales.c:
8643         (internal_get_cultures): reserve the first slot of the array for the
8644         InvariantCulture, which will be filled in managed code.
8645
8646 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
8647
8648         * reflection.c (mono_image_fill_module_table): Initialize the
8649         GENERATION field as well.
8650
8651 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8652
8653         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
8654         Monitor.Enter on the object.
8655
8656 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
8657
8658         * threads.c: Enable the wait for running threads when exiting.
8659         * icall.c: Suspend all threads before exiting.
8660
8661 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
8662
8663         * assembly.c (mono_assembly_load_reference): Fix warning.
8664
8665 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8666
8667         * threadpool.c: changed the default number of threads per cpu. From now
8668         on, the default will be 20 + (5 * number of cpus) instead of 50.
8669
8670 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
8671
8672         * loader.c (mono_method_get_signature_full): Add locking here.
8673
8674 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
8675
8676         * appdomain.c: Moved methods for parsing and freeing assembly
8677         names to assembly.c.
8678         * assembly.c, domain-internals.h: Created public methods for parsing
8679         assembly names. Fixed mono_assembly_load_with_partial_name:
8680         it now finds the best match, taking into account the version,
8681         token and culture specified in the partial name. Also return
8682         the latest version if no version information is specified.
8683
8684 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
8685
8686         * threadpool.c: replace check for SocketAsyncCall class.
8687
8688 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8689
8690         * threadpool-internals.h:
8691         * Makefile.am: added threadpool-internals.h
8692
8693         * threadpool.c: call mono_unhandled_exception on exceptions not handled
8694         that happen in threadpool threads (tested on MS).
8695         (mono_thread_pool_remove_socket): new function that dispatch any pending
8696         AIO call on a socket that is closing. By now only epoll really needs it,
8697         as select/poll wake up when the socket closes.
8698
8699
8700         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
8701
8702 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
8703
8704         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
8705
8706 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
8707
8708         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
8709
8710 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
8711
8712         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
8713         has an abort request, convert it into a suspend request.
8714
8715 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
8716
8717         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
8718         warning for the usage of `UnmanagedFunctionPointerAttribute' which
8719         is not supported yet.
8720
8721 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8722
8723         * image.c: register assemblies loaded from data (bundles) in the loaded
8724         assemblies hash. Fixes bug #74772.
8725
8726 2005-04-29  Martin Baulig  <martin@ximian.com>
8727
8728         * class.c (mono_type_get_name_recurse): Update to the new naming
8729         schema from the latest .NET 2.x beta2.
8730         (mono_class_setup_vtable_general): If we're a generic instance,
8731         copy the vtable from our generic type definition and inflate all
8732         the methods in it.
8733
8734         * loader.c (find_method): Update to the new naming schema from the
8735         latest .NET 2.x beta2.
8736
8737 2005-04-29  Raja R Harinath  <harinath@gmail.com>
8738
8739         * class.c (mono_class_init): Add a mono_loader_unlock to the
8740         #74734 fix.
8741
8742 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
8743
8744         * icall.c (ves_icall_System_Environment_Exit): Remove the 
8745         suspend_all_other_threads () call for the time being, since it can hang.
8746
8747         * threads.c (mono_thread_manage): Similarly, disable the waiting for
8748         the background threads to exit, since it can also hang.
8749
8750         * class.c (mono_class_init): Applied patch from Ankit Jain 
8751         (radical@gmail.com). Avoid pending init errors when a field refers
8752         to a nested class using a typeref. Fixes #74734.
8753
8754         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
8755         this for dynamic modules.
8756
8757 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8758
8759         * threads.c: don't wait for threads that are in the process of aborting
8760         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
8761         and waiting for background threads to finish. This makes xsp and
8762         mod-mono-server exit without random length delays and/or hangs.
8763
8764 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8765
8766         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
8767
8768 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
8769
8770         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
8771         dynamic types to prevent infinite loops. Fixes #74727.
8772
8773         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
8774         ..._is_assignable_to.
8775
8776 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
8777
8778         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
8779
8780 2005-04-25  Martin Baulig  <martin@ximian.com>
8781
8782         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
8783
8784         * domain.c
8785         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
8786
8787         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
8788
8789         * reflection.c (build_compressed_metadata): Set metadata header
8790         version to 2.0.
8791
8792 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
8793
8794         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
8795         number into an integral and a decimal part. Fixes #70473.
8796
8797         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
8798
8799 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
8800
8801         * culture-info-table.h : reflected the latest locale-builder output.
8802
8803 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8804
8805         * threadpool.c: check for SuspendRequested too when deciding if
8806         mono_thread_interruption_checkpoint should be called.
8807
8808 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8809
8810         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
8811         * threads.c: remove interruption_mutex and use Interlocked instead. When
8812         suspending all the threads, wait for all the suspended events at once.
8813         If we're shutting down and get an APC that is going to be queued,
8814         call mono_thread_execute_interruption immediately, as the thread might
8815         be sleeping on a pthread condition or mutex.
8816
8817         * icall.c: call mono_runtime_set_shutting_down before suspending the
8818         threads.
8819
8820         Fixes bug #74693. And now xsp is happier when exiting.
8821
8822 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
8823
8824         * loader.c (mono_stack_walk): Fix #74690.
8825
8826 2005-04-22  Martin Baulig  <martin@ximian.com>
8827
8828         * mono-debug.h (MonoDebugMethodJitInfo): Added
8829         `MonoDebugMethodJitInfo *jit'.
8830
8831         * mono-debug.c (mono_debug_read_method): Cache the
8832         MonoDebugMethodJitInfo in `address->jit'.
8833         (mono_debug_free_method_jit_info): New public method.
8834
8835 2005-04-22  Martin Baulig  <martin@ximian.com>
8836
8837         * class.c (mono_class_is_assignable_from): Disallow
8838         type parameter -> interface.
8839
8840 2005-04-21  Dick Porter  <dick@ximian.com>
8841
8842         * threads.c (mono_thread_create): Turn an assertion into an error.
8843
8844 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
8845
8846         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
8847         
8848         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
8849         Fix some gcc 4.0 warnings.
8850
8851 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
8852
8853         * file-io.c: fix alt dir separator char on unix systems
8854         and cleanup (fixes bug #71214).
8855
8856 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
8857
8858         * marshal.c: Use CALLVIRT instead of CALL when dispatching
8859         a call to a remote domain, since the method may be an
8860         interface method in the client domain. This fixes bug #74192.
8861
8862 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8863
8864         * threadpool.c: recv/send are now performed before going back to managed
8865         code to save one transition.
8866
8867 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8868
8869         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
8870
8871         * metadata/threadpool.c: removed hack to workaround the bug above.
8872
8873         Fixes bug #74618.
8874
8875 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
8876
8877         * reflection.c reflection.h: Fix handling of parameter defaults in
8878         dynamic methods. Also fixes handling of parameter attributes.
8879         Fixes #74609.
8880
8881         * mono-debug.c (mono_debug_close_image): Fix warning.
8882
8883 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8884
8885         * socket-io.h: replaced old unused field with new 'blocking'.
8886         * threadpool.c: restore socket blocking state on windows(tm).
8887
8888 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
8889
8890         * icall.c: don't return the codebase in the AssemblyName[] returned by
8891         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
8892         * object-internals.h: Removed FIXME (fields were presents) and fixed
8893         versioncompat declaration.
8894
8895 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8896
8897         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
8898         not closed, so don't cleanup when it happens.
8899
8900 2005-04-13  Chris Toshok  <toshok@ximian.com>
8901
8902         * mono-debug-debugger.h: change prototype for
8903         mono_debugger_lookup_type.
8904
8905         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
8906         this function, although it should probably be named
8907         mono_debugger_init_type.
8908
8909 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8910
8911         * threadpool.c: fix non-AIO case.
8912
8913 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
8914
8915         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
8916         the built-in profiler to measure just JIT compilation times.
8917
8918 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8919
8920         * threadpool.c: the epollfd might be closed by another thread at
8921         any time, so ignore EBADF at treat it as a "we're closing" sign.
8922
8923 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8924
8925         * threadpool.c: release the semaphores with a count equals to the number
8926         of working threads in both IO and regular pools. Fixed typo that messed
8927         up the count of IO pool threads. Don't initialize the pipe handles if
8928         we're using epoll.
8929
8930 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8931
8932         * threadpool.c: some systems don't like a NULL when deleting the socket
8933         from epoll.
8934
8935 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8936
8937         * threadpool.c: fix semaphore allocation.
8938
8939 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8940
8941         * threadpool.c: added epoll() based implementation for asynchronous IO
8942         that is used instead of the default poll() when available.
8943         It can be disabled by setting MONO_DISABLE_AIO.
8944
8945 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8946
8947         * threadpool.c: windows needs 'closesocket' and instead of returning
8948         0 when the stream is closed while in select, it returns -1. Fixes bug
8949         #74573.
8950
8951 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
8952
8953         * class.c (class_compute_field_layout): Fix the regression caused by
8954         the previous try.
8955
8956 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8957
8958         * threadpool.c: separate pool for socket async. IO.
8959         * threadpool.h: mono_max_worker_threads is not a global any more.
8960
8961 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
8962
8963         * class.c (class_compute_field_layout): Fix #74549.
8964
8965 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8966
8967         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
8968         use 2 connected sockets instead.
8969
8970 2005-04-08  Miguel de Icaza  <miguel@novell.com>
8971
8972         * mono-config.c: Add new entry point for mkbundle
8973         mono_config_parse_memory. 
8974
8975 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8976
8977         * threadpool.c: removed another unused function.
8978
8979 2005-04-08  Ankit Jain  <radical@corewars.org>
8980
8981         * reflection.c (get_default_param_value_blobs): Add 'types'
8982         parameter to get the types encoded in the constant table.
8983         (mono_param_get_objects): Use the type from the constant table,
8984         not the type of the parameter, when creating default values.
8985         Handle null default values correctly.
8986
8987 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8988
8989         * file-io.c:
8990         * file-io.h:
8991         * threadpool.c:
8992         * threadpool.h:
8993         * icall.c:
8994         * socket-io.c: removed dead code for async IO.
8995
8996 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8997
8998         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
8999
9000         * threadpool.c: intercept socket async. calls and pass them to a thread
9001         that is polling and dispatching the job items to the threadpool as
9002         socket become ready. Fixes bugs #71217, #71933.
9003
9004         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
9005         between char and short/ushort arrays.
9006
9007         * socket-io.c: remove dead code.
9008
9009 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
9010
9011         * locales.c,
9012           icall.c : removed InternalToUpper_Comp() and
9013           InternalToLower_Comp().
9014
9015 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
9016
9017         * char-conversions.h : The tables were incorrectly generated. Should
9018           be generated against invariant culture.
9019
9020 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
9021
9022         * object.c (mono_runtime_invoke_array): Fix return value when 
9023         passing pre-created valuetype objects to ctors.
9024
9025         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
9026         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
9027         Fixes #74338.
9028
9029 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
9030
9031         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
9032         only used with --security and hides the wrong corlib version error.
9033
9034 2005-03-30  Joshua Tauberer  <tauberer@for.net>
9035
9036         * class.c: Changed mono_class_name_from_token so that types
9037         outside of a namespace don't have an initial period.  Improved
9038         the g_warning message used in _mono_class_get when loading
9039         fails.
9040         * assembly.c: In mono_assembly_load_reference, when an assembly
9041         can't be found, "No such file or directory" is misleading and
9042         unhelpful because a few paths were checked for the presence of
9043         the assembly.  When that happens (ENOENT), display a nicer
9044         message indicating the directories that were searched.  In all
9045         cases, the warning is made easier to read for non-hackers.
9046
9047 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
9048
9049         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
9050         project/solution.
9051         * appdomain.h|domain.c: Removed inline from functions.
9052         * appdomain.c: Reduced warnings when compiling on windows.
9053         * icall.c: Fixed output_debug declaration to gunichar2*.
9054         * mono-config.c: Reduced warnings when compiling on windows.
9055         * rand.c: Added missing "windows.h". Added missing return value.
9056         * rawbuffer.c: Added missing winsock2.h for windows.
9057         * sysmath.h: Added mono-compiler.h header to allow/ease 
9058         compilation with non-GCC compilers.
9059         * threads.c: Fixed declarations to compile with VS.NET C compiler.
9060         Removed cast warnings.
9061
9062         Adapted from the work of J Lothian (for VC6).
9063
9064 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
9065
9066         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
9067         from default_path.
9068
9069 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
9070
9071         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
9072         the 2.0 profile.
9073
9074 2005-03-27  Raja R Harinath  <harinath@gmail.com>
9075
9076         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
9077         has to be in $(exec_prefix).  $(prefix) is for arch-independent
9078         stuff, and it would probably use $(prefix)/share rather than
9079         $(prefix)/lib.
9080
9081 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9082
9083         * console-io.c: added 2 includes that might be missing.
9084
9085 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
9086
9087         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
9088         profile.
9089
9090         * reflection.c (create_custom_attr): Allocate the params array using
9091         alloca so it gets GC tracking.
9092
9093 2005-03-23  Chris Toshok  <toshok@ximian.com>
9094
9095         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
9096         out some spew.
9097
9098 2005-03-24  Raja R Harinath  <rharinath@novell.com>
9099
9100         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
9101         changes to pick up any changes in prefix, etc.
9102
9103 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
9104
9105         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
9106         
9107         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
9108         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
9109
9110 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
9111
9112         * class-internals.h object-internals.h class.c reflection.c: Extend the
9113         mono_lookup_dynamic_token () function to return the class of the
9114         token as well. 
9115
9116         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
9117         well. Fixes #73848.
9118
9119 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
9120
9121         * security-manager.c: Skip inheritance checks for intra-corlib
9122         class inheritance and method overrides. This skips a lot of checks
9123         and (anyway) permissions cannot work until corlib is loaded.
9124
9125 2005-03-23  Martin Baulig  <martin@ximian.com>
9126
9127         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
9128         MONO_TYPE_GENERICINST.  
9129
9130 2005-03-23  Martin Baulig  <martin@ximian.com>
9131
9132         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
9133
9134 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
9135
9136         * class.c: added locking comments to some functions.
9137         Cache the interface offsets arrays (saves about 20 KB
9138         of runtime memory in a typical app).
9139         Reduce the time overhead in mono_class_setup_supertypes ().
9140
9141 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
9142
9143         * icall.c: speedup and fix leaks in GetMethodsByName and
9144         GetPropertiesByName.
9145
9146 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
9147
9148         * reflection.c: some locking fixes.
9149
9150 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
9151
9152         * metadata.c: added missing break in case statement.
9153
9154 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
9155
9156         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
9157         typedbyref return values. Fixes #73941.
9158
9159 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
9160
9161         * security-manager.c|h: Added demandunmanaged method and 
9162         suppressunmanagedcodesecurity class to MonoSecurityManager.
9163         Renamed aptc class to allowpartiallytrustedcallers.
9164
9165 2005-03-17  Martin Baulig  <martin@ximian.com>
9166
9167         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
9168
9169 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9170
9171         * file-io.c: disabled file async. IO using aio_*. It uses the
9172         threadpool now. Workaround for bug #73718.
9173
9174 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
9175
9176         * assembly.h, mono-config.c: added code to deal with bundled configs
9177         for bundled assemblies.
9178
9179 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
9180
9181         * *.c, private.h: cleanup, removing old private.h header file.
9182
9183 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
9184
9185         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
9186         and throw_on_unmappable_char attributes.
9187
9188 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
9189
9190         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
9191         _ProcessName_internal.
9192
9193 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
9194
9195         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
9196         #73631.
9197
9198         * icall.c threads.c threads-types.h: Remove slothash icalls as they
9199         are no longer used.
9200
9201 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
9202
9203         * object.c (compute_class_bitmap): Add support for generics. Fixes
9204         #73527.
9205
9206 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
9207
9208         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
9209
9210 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9211
9212         * filewatcher.c: commented out the code for windows watcher, as we don't
9213         use it (we use the managed implementation instead).
9214
9215 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
9216
9217         * object-internals.h (MonoThread): Remove 'unused1' field.
9218
9219         * appdomain.c: Bump corlib version.
9220
9221         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
9222
9223         * reflection.c (mono_reflection_create_runtime_class): Remove the
9224         AssemblyBuilder.Save optimization since it causes too many problems.
9225
9226 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
9227
9228         * exception.c|h: Added mono_get_exception_reflection_type_load to
9229         create a ReflectionTypeLoadException object.
9230         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
9231         to return NULL is a InheritanceDemand fails during reflection. Updated
9232         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
9233         ReflectionTypeLoadException if an InheritanceDemand fails during 
9234         reflection. Added icall mapping for GetLinkDemandSecurity.
9235         * security-manager.c|h: Added ves_icall_System_Security_
9236         SecurityManager_GetLinkDemandSecurity internal call to return the
9237         class and methods permissions set for a LinkDemand. Removed unused
9238         fields in MonoSecurityManager.
9239
9240 2005-03-10  Martin Baulig  <martin@ximian.com>
9241
9242         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
9243         it's a generic instance.
9244
9245 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
9246
9247         * reflection.c (mono_get_object_from_blob): Applied patch from
9248         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
9249
9250         * class.c (mono_class_is_assignable_from): Another try at fixing 
9251         #73469 without breaking anything.
9252
9253 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
9254
9255         * class.c: (mono_class_is_assignable_from): Revert the last changes
9256         since they don't work with generics.
9257         
9258         * class.c (mono_class_is_assignable_from): Fix build bustage.
9259
9260         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
9261         the managed IsAssignableFrom method. Fixes #73469.
9262
9263         * reflection.c (mono_reflection_call_is_assignable_from): New helper
9264         function.
9265
9266 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
9267
9268         * object.c (mono_load_remote_field_new): Fix returning uninitialized
9269         memory when the remoting callback does not sets the out arguments.
9270         Fixes #73007.
9271
9272         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
9273         by mistake.
9274
9275         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
9276
9277         * object-internals.h (MonoStackFrame): Sync with managed object layout.
9278
9279         * appdomain.c: Bump corlib version.
9280
9281 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
9282
9283         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
9284         function.
9285
9286         * threads.c (mono_thread_attach): Detect threads which are not started
9287         by the GC pthread wrappers.
9288
9289 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
9290
9291         * icall.c: Added new icall for RNG.
9292         * rand.c|h: Added new icall to open the RNG. This allows to share a 
9293         single handle on Linux to access /dev/urandom and fix #73183.
9294
9295 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
9296
9297         * object.c: setting the new vtable in a transparent proxy object must
9298         not change the GC descriptor.
9299
9300 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
9301
9302         * object.c: fixed compilation without GCJ support.
9303         * reflection.c: for runtime-created types ensure klass->has_references
9304         is correct (bug #73215).
9305
9306 2005-03-02  Martin Baulig  <martin@ximian.com>
9307
9308         * class.c (mono_class_is_assignable_from): Make this work if
9309         `oklass' is a generic instance; fixes #72831.
9310
9311 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
9312
9313         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
9314         with hasthis set.
9315         
9316         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
9317
9318         * marshal.c: Reorganize native->managed marshalling code to also use
9319         the emit_marshal_... functions.
9320
9321 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
9322
9323         * object.c: typed allocs have issues with bitmap sizes > 30,
9324         so check for max_set >= 30.
9325
9326 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
9327
9328         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
9329         managed code. Fixes #73012.
9330
9331         * metadata.h (MonoMarshalSpec): Add elem_mult field.
9332
9333         * metadata.c reflection.c: Load/Emit elem_mult as well.
9334         
9335         * metadata.h (MonoMarshalSpec): Add comment.
9336
9337         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
9338
9339         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
9340         num_elem to -1 if not given.
9341
9342         * object-internals.h (MonoReflectionMarshal): Add has_size field.
9343
9344         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
9345         given values.
9346
9347 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
9348
9349         * null-gc.c (mono_gc_free_fixed): Was not compilable.
9350
9351 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
9352
9353         * reflection.c (encode_marshal_blob): Encode param_num field as well.
9354
9355         * object-internals.h (MonoReflectionMarshal): Add param_num field.
9356
9357 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
9358
9359         * object.c: generalized the reference bitmap creation
9360         and added hooks for the new GC.
9361         * class-internals.c: removed the gc_bitmap field from MonoClass.
9362
9363 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
9364
9365         * domain.c: help the compiler to produce better code
9366         in mono_jit_info_table_find ().
9367
9368 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
9369
9370         * object.c: make all allocations look typed.
9371
9372 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
9373
9374         * socket-io.c: load Mono.Posix if it's not loaded already
9375         (fixes bug#73033).
9376
9377 2005-02-24  Martin Baulig  <martin@ximian.com>
9378
9379         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
9380         * reflection.c (dup_type): Likewise.
9381
9382 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
9383
9384         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
9385         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
9386
9387 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
9388
9389         * domain.c, threads.c, object-internals.h: make the critical thread
9390         local vars use the fast access mode (even when we're compiled in
9391         a lib). Provide accessors to be used by the jit during codegen.
9392
9393 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9394
9395         * appdomain.c: Changed hook functios behavior to include
9396         support for the reflection only assemblies. Some icalls were changed
9397         to support the mentioned assemblies too. Signatures of static methods
9398         try_assembly_resolve and real_load now have an additional parameter:
9399         refonly.
9400
9401         * assembly.c: General changes to mono_assembly_ methods to support
9402         reflection only api. Functions mono_assembly_open, mono_assembly_load,
9403         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
9404         suffix, to support an additional gbool parameter to specify whether
9405         the assembli is reflection only or not. Created some new hook functions 
9406         to add support for reflection only assemblies. Signatures of static 
9407         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
9408         have now an additional parameter: refonly.
9409
9410         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
9411         indicating whether the assembly is reflection only or not.
9412
9413         * exception.c: Add mono_get_exception_invalid_operation.
9414
9415         * icall.c: Throw an InvalidOperationException when trying to invoke
9416         a property/method/event, or trying to set/get the value of a field.
9417         Also add an icall to retrieve the ref_only flag to the
9418         MonoReflectionAssembly.
9419
9420 2005-02-23  Chris Toshok  <toshok@ximian.com>
9421
9422         Part of fix for #72827.
9423         * mono-debug.c (mono_debug_add_method): add lexical block data to
9424         the info we write.  Kind of a hack at the moment - we copy the
9425         lexical block info from the MonoDebugMethodInfo to the
9426         MonoDebugMethodJitInfo here, before writing it.
9427         (mono_debug_read_method): read the lexical block info.
9428
9429         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
9430
9431         * debug-mono-symfile.h: add lexical block support.
9432
9433         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
9434         support.
9435
9436 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
9437
9438         * loader.c (mono_lookup_pinvoke_call): Fix warning.
9439
9440         * object.c (mono_runtime_free_method): Call mono_free_method () and
9441         put the TODOs there.
9442
9443         * loader.c (mono_free_method): Free up most memory allocated for 
9444         dynamic methods.
9445
9446 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
9447
9448         * reflection.c: properly flag a Type argument to a
9449         named custom attr value (bug #72248).
9450
9451 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
9452
9453         * reflection.c: reduce code duplication in named custom
9454         attribute encoding.
9455
9456 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
9457
9458         * reflection.c: properly encode custom attrs of type object
9459         (bug #72649).
9460
9461 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
9462
9463         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
9464
9465 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
9466
9467         * socket-io.c: load System.dll if it's not loaded already
9468         (bug #72850 and #70477).
9469
9470 2005-02-21  Martin Baulig  <martin@ximian.com>
9471
9472         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
9473         generic instances.
9474
9475 2005-02-21  Martin Baulig  <martin@ximian.com>
9476
9477         * reflection.c (mono_image_build_metadata): We also need to
9478         "fixup" the MethodImpl table after we computed the final method
9479         indices.  Call fixup_methodimpl() to do that.
9480         (fixup_methodimpl): New private method.
9481
9482 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
9483
9484         * assembly.c: special case mscorlib.dll (bug#72536),
9485         patch from Carlos Alberto Cortez.
9486
9487 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
9488
9489         * threads-types.h threads.c: Fix build bustage.
9490
9491         * threads.c: Use a union for long<->double conversions.
9492
9493         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
9494         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
9495
9496         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
9497         containing the checkpoint call with NOT_TAKEN.
9498         
9499         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
9500         checkpoint before pushing the arguments, so they won't have to be
9501         spilled to stack.
9502
9503 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
9504
9505         * domain.c, assembly.c, domain-internals.h: make some data
9506         const and relocation-free.
9507
9508 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
9509
9510         * object.c, appdomain.c, class-internals.h: introduce the
9511         MonoClassRuntimeInfo structure to hold the info needed to
9512         use a class at runtime. Made mono_class_vtable() lock-free
9513         for all the appdomains.
9514
9515 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
9516
9517         * metadata-internals.h, image.c: introduce a per-image mempool to
9518         be used for memory that has the same lifetime as the image.
9519
9520 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
9521
9522         * domain.c: In mono_init_internal(), instead of selecting the first
9523         runtime version supported by an executable, get a list of all
9524         supported versions and select the one for which an mscorlib exists
9525         (since even if the runtime supports a given version, it doesn't mean
9526         that the framework for that version is installed).
9527         Modified get_runtimes_from_exe to support this behavior.
9528         In supported_runtimes, added information about additional system
9529         assembly versions.
9530         
9531         * assembly.c: Added support for more than one system assembly version
9532         per runtime version. Updated the assembly list.
9533         In mono_assembly_remap_version, removed the initial version check,
9534         since we don't know to which version we need to compare until we
9535         get the version set on which the assembly is based.
9536         Moved the code for loading corlib into the new method
9537         mono_assembly_load_corlib(), so it can be used by the initialization
9538         code.
9539         
9540         * domain-internals.h: Updated data structures and added declaration
9541         for mono_assembly_load_corlib.
9542
9543 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
9544
9545         * reflection.c (resolve_object): Fix the creation of the signature in 
9546         the SignatureHelper case.
9547
9548         * assembly.c (mono_assembly_remap_version): Fix binary search.
9549         
9550 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
9551  
9552         * class.c: Added inheritance check when a method is overloaded (from a
9553         virtual method or when implementing an interface) and when a class is
9554         inherited. Added functions to set a failure for a class and to 
9555         retreive the exception from a failure.
9556         * class-internals.h: Added fields to MonoClass to keep the exception
9557         information status for inheritance (or other exceptions) to be thrown
9558         later (i.e. not at load time).
9559         * object.c: Throw the inheritance SecurityException when a type is to 
9560         be created with either class or method inheritance violations.
9561         * reflection.c|h: Fix when getting declsec from a class. Removed 
9562         unrequired code for class. Improved sanity in parameter naming.
9563         * security-manager.c|h: Added functions to check for class and method
9564         inheritance.
9565
9566 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
9567
9568         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
9569         and has_finalize in dynamic types as well.
9570
9571 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
9572
9573         * culture-info-table.h : fixed currency format for en-GB (and so on).
9574
9575 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
9576
9577         * gc.c: ensure the GC handles never have 0 as a value.
9578
9579 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
9580
9581         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
9582         a pointer to a struct to unmanaged code. Fixes #72625.
9583
9584 2005-02-16  Martin Baulig  <martin@ximian.com>
9585
9586         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
9587
9588 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
9589
9590         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
9591
9592 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
9593
9594         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
9595
9596         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
9597         UnmanagedFunctionPointerAttribute, use it for determining calling convention
9598         etc. Fixes #71471.
9599
9600         * reflection.c (mono_custom_attrs_get_attr): New helper function.
9601
9602         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
9603
9604 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
9605
9606         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
9607         changes to make the current context a field in MonoThread.
9608
9609 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
9610
9611         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
9612         the last change.
9613         
9614         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
9615         extracted from mono_marshal_get_native_wrapper.
9616
9617         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
9618         to create wrappers around native functions.
9619
9620         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
9621         delegates for arbitrary function pointers. Fixes #71472.
9622
9623 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
9624
9625         * threads.c: cleaned up the code a little.
9626
9627 2005-02-15  Martin Baulig  <martin@ximian.com>
9628
9629         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
9630         the data table.
9631
9632         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
9633         allocate larger chunks if needed.
9634
9635 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
9636
9637         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
9638         in by mistake.
9639
9640 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
9641
9642         * domain.c: keep the domains in an array and ensure the domain ids
9643         are kept small, so they can be used as indexes to domain-specific data
9644         with a small memory overhead.
9645
9646 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
9647
9648         * icall.c: Handle byref types in Type icalls. Fixes #72544.
9649
9650 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
9651
9652         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
9653
9654 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
9655
9656         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
9657
9658         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
9659         values.
9660
9661         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
9662         
9663 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
9664
9665         * domain-internals.h: add the hashtable here.
9666
9667         * class-internals.h: Remove `info' from MonoMethod
9668
9669         * domain.c: Add a new hashtable, jit_trampoline_hash
9670
9671 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
9672
9673         * object.c: don't set the value of static fields
9674         (fixes bug#72494).
9675
9676 2005-02-11  Martin Baulig  <martin@ximian.com>
9677
9678         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
9679         (mono_debug_add_method): Silently ignore the method if it's too big.
9680         (mono_debug_add_type): Likewise.
9681
9682 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
9683
9684         * threads.c, appdomain.c: remove #ifdefs from the code.
9685
9686 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
9687
9688         * metadata-internals.h: Added flags to MonoAssembly to cache the most
9689         common security informations. This allows us to stay in unmanaged code
9690         when doing LinkDemand and it's special cases (except for the first 
9691         time for initialization). The flags a very much used with --security.
9692         * reflection.c|h: Added code to get declarative security attributes 
9693         for LinkDemand and InheritanceDemand. This required to refactor the
9694         existing code for Demand.
9695         * security-manager.c|h: Added new method fields for the special cases
9696         of LinkDemand.
9697
9698 2005-02-10  Martin Baulig  <martin@ximian.com>
9699
9700         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
9701         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
9702
9703 2005-02-10  Martin Baulig  <martin@ximian.com>
9704
9705         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
9706         debugging code; this is almost a complete rewrite.
9707
9708         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
9709
9710 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
9711
9712         * domain.c, object.h: expose mono_string_equal () and 
9713         mono_string_hash ().
9714         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
9715         it's implemented in managed code.
9716
9717 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
9718
9719         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
9720         lo leak objects between appdomains.
9721
9722 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
9723
9724         * assembly.c: old compilers compilation fix from 
9725         robertj@gmx.net (Robert Jordan).
9726
9727 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
9728
9729         * class-internals.h: Little reminder for the future.
9730
9731         * debug-helpers.c: Fix up wrapper_type_names
9732
9733 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
9734
9735         * image.c, metadata-internals.h: when loading an image from a file,
9736         mmap all of it and use the same codepaths as when using a
9737         in-memory image: the code is simpler and we use less memory
9738         (both writable and readonly).
9739
9740 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
9741
9742         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
9743         API to alloc runtime data structures that need to be tracked by the
9744         GC and contain pointers.
9745         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
9746         make the code more readable and eventually use a different GC.
9747
9748 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
9749
9750         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
9751         for out arguments.
9752         
9753 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
9754
9755         * object.c: In release_type_locks(), don't release the cctor lock
9756         if it has already been released. This fixes a crash in the
9757         thread5 test.
9758
9759 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
9760
9761         * gc.c, marshal.c, icall.c: register a delegate for finalization
9762         only when the native function pointer has been allocated for it.
9763
9764 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
9765
9766         * object.c: cleaned up some code, allocate objects that are
9767         pointer free with the atomic malloc variant. Allocate memory
9768         for static data from the mempool if it's pointer-free.
9769         Allocate the bounds array at the end of the array data, when needed.
9770         * object-internals.h, object.h: move a private function in a private
9771         header.
9772         * class.c: handle missing case in tracking references in fields.
9773
9774 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
9775
9776         * class.c, class-internals.h: keep track if a type has
9777         reference fields in either the instance or static fields.
9778
9779 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
9780
9781         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
9782         and renamed to MonoRuntimeInfo. Added fields to store the expected
9783         framework assembly version. Changed mono_get_framework_version and
9784         mono_get_runtime_version for a single mono_get_runtime_info method.
9785         
9786         * assembly.c: Added method to remap system assembly versions to the
9787         current executing runtime version. Removed old mapping code.
9788         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
9789         
9790         * icall.c, reflection.c: Track api changes.
9791
9792 2005-02-06  Miguel de Icaza  <miguel@novell.com>
9793
9794         * loader.c (method_from_memberref): Improve error reporting,
9795         produce the class name instead of the typeref/typedef index. 
9796
9797 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
9798
9799         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
9800
9801 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
9802
9803         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
9804         stdcall and charset name mangling.  Reorganize the code and add
9805         some tracing stuff.
9806
9807 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
9808
9809         * monodiet.c: More iters!
9810
9811         * marshal.c: Iter usage.
9812
9813         * icall.c: Iter usage.
9814
9815         * object.c: Use iters.
9816
9817         * debug-helpers.c: More iters
9818
9819 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
9820
9821         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
9822         under win32.
9823
9824 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
9825
9826         * mono-debug-debugger.c: use iters
9827
9828         * class.c, class-internals.h: mono_class_setup_events is static
9829         now
9830
9831         * All callers: use iters
9832
9833 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
9834
9835         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
9836         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
9837
9838 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
9839
9840         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
9841
9842         * marshal.h: Add prototypes for ldfld/stfld_remote.
9843
9844         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
9845         this is called during startup.
9846         
9847 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
9848
9849         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
9850         MonoThreadsSync struct private in monitor.c. Changed the way
9851         MonoThreadsSync is allocated so it's faster and there is no
9852         need to keep track of it with a finalizer and it uses less memory.
9853         This also finally allows us to allocate mono objects as ptrfree when
9854         there are no reference fields.
9855
9856 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
9857
9858         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
9859         disappearing link to the GC interface and use them to simplify
9860         the gchandles code.
9861
9862 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
9863
9864         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
9865         stfld_remote which call mono_load/store_field_new. This allows methods
9866         calling ldfld/stfld wrappers to be AOTed.
9867
9868         * console-io.c: Include sys/filio.h under solaris.
9869         
9870         * console-io.c: Include curses.h if needed correctly.
9871
9872 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
9873         
9874         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
9875         method->klass as well.
9876
9877         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
9878
9879         * class.c (mono_class_init): Switch on lazy initialization of 
9880         methods.
9881
9882         * class.c (mono_class_get_finalizer): Handle the case when the 
9883         finalizer is inherited.
9884
9885 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9886
9887         * console-io.c: <curses.h> is needed by term.h on solaris.
9888
9889 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
9890
9891         * icall.c, class-internals.h, monodiet.c, class.c: Remove
9892         mono_class_setup_properties where possible. Remove this ftn from
9893         the header file, and make it static.
9894
9895 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
9896
9897         * loader.c: Add missing setup_... call.
9898
9899         * class.c: Add missing setup_... calls.
9900
9901         * class.c (mono_class_init): Switch on lazy initialization of 
9902         the generic vtable.
9903         
9904         * class.c (mono_class_init): Fix generics broken by the recent changes.
9905
9906         * monodiet.c (handle_type): Add missing setup_... calls.
9907
9908         * class.c: Back out garbage in previous patch.
9909         
9910         * class.c: Add missing setup_... calls.
9911
9912         * class.c (mono_class_get_method_from_name_flags): Avoid calling
9913         mono_class_setup_methods () if possible.
9914
9915         * class-internals.h (MonoClass): Add 'has_cctor' flag.
9916
9917         * class-internals.h (MonoCachedClassInfo): New structure.
9918
9919         * class.c: Initialize properties and events fields of MonoClass lazily.
9920
9921         * class.c: Add infrastructure for lazily initializing the methods and
9922         vtable fields of MonoClass. Not yet used.
9923
9924         * class.c (mono_class_get_finalizer): New helper function.
9925
9926         * class.c: Add infrastructure for loading some class related data from
9927         an AOT file.
9928
9929         * object.c: Add infrastructure for initializing the vtable from data
9930         in the AOT file.
9931
9932         * gc.c (run_finalize): Use mono_class_get_finalizer ().
9933
9934         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
9935         appropriate initialization function before accessing parts of the
9936         MonoClass structure.
9937
9938         * marshal.c: Fix warnings.
9939         
9940         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
9941
9942         * mono-debug-debugger.c (get_exception_message): Use 
9943         mono_class_get_method_from_name_flags ().
9944
9945 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
9946
9947         * reflection.c, appdomain.c: Replace a few manual searches that
9948         Zoltan missed. (Paolo approved this part of my initial patch).
9949
9950 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
9951
9952         * profiler.c: disable recording statistical events at report time.
9953
9954 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
9955
9956         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
9957         to byteswap arrays of enum values, too (bug #72080).
9958
9959 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
9960
9961         * appdomain.c (set_domain_search_path): Allow this to be called if
9962         domain->setup is not yet set.
9963
9964         * loader.c (mono_method_get_index): New helper function.
9965
9966         * loader.c reflection.c: Use mono_method_get_index ().
9967
9968         * class.c (mono_class_get_method_from_name_flags): New helper method.
9969
9970         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
9971         this.
9972
9973         * class.c (mono_class_get_cctor): New helper method.
9974
9975         * string-icalls.c object.c class.c marshal.c reflection.c: Use
9976         mono_class_get_method () to look up methods.
9977
9978 2005-02-01  Miguel de Icaza  <miguel@novell.com>
9979
9980         * console-io.c: Fix the build, this should work on Windows.
9981
9982 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
9983
9984         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
9985         be set to null to keep things valid
9986
9987 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9988
9989         * icall.c: added Console 2.0 icalls.
9990         * Makefile.am: added console-io.[ch]
9991         * console-io.[ch]: internal calls for Console 2.0 API.
9992
9993 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
9994
9995         * class.c: make sure we consider all the interfaces
9996         when calculating max_interface_id (bug found by
9997         Jeroen Frijters running ikvm).
9998
9999 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
10000
10001         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
10002         valuetype fields to null.
10003
10004         * object.c (set_value): Ditto. Fixes #71669.    
10005
10006 2005-01-31  Martin Baulig  <martin@ximian.com>
10007
10008         * metadata.c (mono_metadata_has_generic_params): New public
10009         function; checks whether something is a generic method.
10010
10011 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
10012
10013         * appdomain.c: fix infinite recursion when adding assemblies.
10014
10015 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
10016
10017         * object.c: Fix small typo to return all items for Environment.
10018         GetCommandLineArgs.
10019
10020 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
10021
10022         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
10023         reflection.c: more domain and assembly-unload related fixes
10024         and memory leaks plugs.
10025
10026 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
10027
10028         * 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.
10029
10030 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
10031
10032         * loader.c (mono_method_signature): Make this method lazy
10033         (mono_get_method_from_token): Don't computate the signature here.
10034
10035         Doing this saves quite a bit of memory. I got 90 kb on starting up
10036         monodoc. It should also save some disk reads on startup.
10037
10038         * *: MonoMethod->signature might be NULL now. You *MUST* use
10039         mono_method_signature.
10040
10041 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
10042
10043         * object.c (mono_runtime_get_main_args): Return an array from the
10044         current domain here. Fixes #71938.
10045
10046 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
10047
10048         * monitor.c: formatting changes to comply with the
10049         mono coding style and remove #ifdefs from the code.
10050
10051 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
10052
10053         * metadata.c, private.h: remove some unneeded data
10054         and use a more compact representation for table schemas.
10055
10056 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
10057
10058         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
10059         to get a better distribution in hash tables.
10060         * *.c: use mono_aligned_addr_hash() where appropriate.
10061         * assembly.c: make var static.
10062
10063 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
10064
10065         * domain-internals.h: Put MonoJitInfo on a diet.
10066
10067         * domain.c: Fix a warning.
10068
10069 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
10070
10071         * gc.c: rework the gc handles code to reuse handles
10072         when freed.
10073
10074 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
10075
10076         * domain.c: fixed long standing bug in mono_string_equal() which
10077         was brought to light with the ldstr changes.
10078
10079 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
10080
10081         * reflection.c: Remove warning by adding missing include for marshal.h
10082
10083 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
10084
10085         * domain.c, object.c: change the ldstr_table to hold
10086         MonoString* as keys: makes the runtime isinterned lookup
10087         faster and simplifies memory management.
10088
10089 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
10090  
10091         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
10092         possible to add imperative security checks before calling the icall.
10093         * reflection.c: Return security attributes on the original MonoMethod
10094         (and not the wrapped one). This fix permissions on icalls.
10095
10096 2005-01-25  Dick Porter  <dick@ximian.com>
10097
10098         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
10099         the check for mktime() support actually test the mktime() return
10100         value.  "Fixes" bug 71682, though the output is still different to
10101         MS.
10102
10103 2005-01-25  Martin Baulig  <martin@ximian.com>
10104
10105         * class.c (mono_class_is_assignable_from): Make this work for
10106         generic instances.
10107
10108 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
10109
10110         * marshal.c (mono_string_utf8_to_builder)
10111         (mono_string_builder_to_utf16): We might not have ownership of the
10112         string. In thise case, we need to create a new buffer.
10113
10114         * object-internals.h (mono_stringbuilder_capacity): sb->str might
10115         be null, in which case, use the default capacity.
10116
10117 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
10118
10119         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
10120         GC events to the profiler.
10121
10122 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
10123
10124         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
10125         if you don't want the GC to run.
10126
10127 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
10128
10129         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
10130         start providing a GC API and keeping different implementations in
10131         their own file.
10132         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
10133
10134 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
10135
10136         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
10137         mmap rather than allocating a huge buffer.
10138         (mono_debug_close_mono_symbol_file): Free the buffer allocated
10139         above.
10140
10141 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
10142
10143         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
10144         and CheckExecutionRights.
10145         * reflection.c|h: Keep the index of the declarative security to be 
10146         used, instead of the pointer, when AOT compiler is used. Also add 
10147         class initialization when requesting demands.
10148         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
10149         CheckExecutionRights. Both properties are now FALSE by default, and
10150         unmodifiable, unless the --security option is used.
10151
10152 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
10153
10154         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
10155         reflection.c: properly refcount images and assemblies, many leaks fixed.
10156
10157 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10158
10159         * threadpool.c: increase the timeout for threads in the thread pool to
10160         10s.  Fixes bug #67159.
10161
10162 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
10163
10164         * class-internals.h: Sun's compiler insists on explicit
10165         signed on bit fields to handle then correctly.
10166
10167 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
10168
10169         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
10170         Make the size of the array fit only the number of invalid path
10171         chars that we have.
10172
10173         * class.c (_mono_class_get): Improve the error reporting when a
10174         class referenced is not found, to assist debugging. 
10175
10176 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
10177
10178         * threads.c: fix off-by-one error.
10179         * domain.c: free data allocated in the domain.
10180
10181 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
10182
10183         * reflection.c (mono_method_body_get_object): Fill out exception info
10184         as well.
10185
10186         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
10187         structure.
10188         
10189 2005-01-19  Martin Baulig  <martin@ximian.com>
10190
10191         * loader.c (mono_get_method_constrained): Make this work again.
10192
10193 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
10194
10195         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
10196         guint16 to match the managed side.
10197
10198         * reflection.c (mono_reflection_body_get_object): Fill out local
10199         variables array.
10200
10201         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
10202         as well.
10203
10204         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
10205         'local_var_sig_token'.
10206
10207 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
10208
10209         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
10210         System.Drawing.
10211
10212         * reflection.c (mono_method_body_get_object): Handle abstract and
10213         runtime methods.
10214
10215 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
10216
10217         * marshal.c, loader.c, class-internals.h, reflection.c:
10218         store the emthod data for a wrapper in an array instead of a list.
10219
10220 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
10221
10222         * marshal.c: change the code to allocate memory more
10223         conservatively for method wrappers.
10224
10225 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
10226
10227         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
10228         fields from MonoClass to the marshal info structure where they belong.
10229
10230 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
10231
10232         * class.c, object.c, class-internals.h, marshal.c: rearrange
10233         some fields and tweak some types to lower memory usage.
10234
10235 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
10236
10237         * threads.c (signal_thread_state_change): Handle the case when the
10238         target thread is the current thread.
10239
10240         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
10241
10242         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
10243         emit_ptr_to_object_conv. 
10244
10245         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
10246         marshalling. Fixes #71352.
10247
10248 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
10249
10250         * metadata.h, blob.h: move table enum to blob.h so it can be included
10251         in any header.
10252         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
10253         cut the size of MonoImage/MonoDynamicImage.
10254
10255 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
10256
10257         * profiler.c (mono_profiler_install_simple): Fix default arguments.
10258
10259 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
10260
10261         * reflection.c, reflection.h, icall.c: add a function to check
10262         if an attribute type is defined for a metadata object.
10263
10264 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
10265
10266         * object-internals.h: Added some needed fields from StringBuilder class.
10267         * marshal.c: Set the maxCapacity when creating a StringBuilder.
10268
10269 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
10270
10271         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
10272         threads before shutting down the runtime.
10273
10274         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
10275
10276 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
10277
10278         * object-internal.h, threads.c: implement stacksize and 
10279         parameterized thread start functionality (requires
10280         matching corlib). Marked broken code for later removal.
10281
10282 2005-01-12  Martin Baulig  <martin@ximian.com>
10283
10284         * class-internals.h (MonoGenericClass): Moved the `initialized'
10285         flag to MonoDynamicGenericClass, removed `init_pending'.
10286         (MonoGenericInst): Added `is_reference' flag.
10287
10288 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
10289
10290         * reflection.c (mono_image_create_pefile): Only set the pe_offset
10291         inside the MSDOS header. Fixes #71201.
10292
10293         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
10294         gc thread.
10295         (mono_domain_finalize): Ditto.
10296
10297 2005-01-12  Martin Baulig  <martin@ximian.com>
10298
10299         * class.c (mono_get_shared_generic_class): Use the cache for
10300         non-dynamic generic classes.
10301
10302         * class-internals.h (mono_class_create_generic_2): Removed
10303         function prototype, this function is now static inside class.c.
10304
10305         * class.c (mono_class_create_generic_2): Made this static, only
10306         call it from mono_class_init() and mono_class_setup_parent().
10307         (collect_implemented_interfaces_aux): Call mono_class_init() on
10308         the interfaces we collect.
10309         (mono_class_setup_vtable): Call mono_class_init (class->parent).
10310
10311 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
10312
10313         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
10314         it a real thread handle.
10315
10316         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
10317         MonoJitExceptionInfo, since each catch clause needs its own variable.
10318         
10319 2005-01-11  Dick Porter  <dick@ximian.com>
10320
10321         * image.c (mono_pe_file_open): New variant on mono_image_open()
10322         that does not set up the CLI metadata; used for FileVersionInfo so
10323         it can get the data for windows binaries too.
10324         
10325         * process.c (process_read_string_block): Don't read off the end of
10326         the StringTable block.
10327
10328         These both fix bug 70766.
10329
10330 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
10331
10332         * gc.c: set some fields to NULL at GC cleanup time.
10333         * threads.c: if we quit the main thread, call exit ().
10334
10335 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
10336
10337         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
10338
10339 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
10340
10341         * threads.h, threads.c, object.c: added accessor and settor for
10342         main_thread. Handle it specially when exiting from it: wait
10343         for other foreground threads to exit.
10344
10345 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
10346
10347         * process.c, verify.c: remove some bloat.
10348
10349 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
10350
10351         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
10352         the calling convention to cdecl under win32.
10353
10354 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
10355
10356         * object.c (mono_object_get_size): New function to get the size of
10357         an object instance.
10358
10359         * profiler.c (simple_allocation): Use above.
10360
10361 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
10362
10363         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
10364         ves_icall_System_AppDomain_getRootDomain (as it's not required to
10365         get an appdomain by it's id and we can't assume the root's id is 0).
10366         * domain-internals.h: Change the function prototype to match.
10367         * icall.c: Change the icall table for AppDomain.
10368
10369 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
10370
10371         * locales.c (string_invariant_compare_char): Only compute
10372         GUnicodeTypes in the case where we need them.  Test for ordinality
10373         first and return if so.
10374
10375         From the commit:
10376
10377                 /*
10378                  * FIXME: here we must use the information from c1type and c2type
10379                  * to find out the proper collation, even on the InvariantCulture, the
10380                  * sorting is not done by computing the unicode values, but their
10381                  * actual sort order.
10382                  */
10383
10384 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
10385
10386         * loader.c: for P/Invoke methods, allow the "Internal" shared
10387         library name to refer to the calling process symbol namespace.
10388
10389 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
10390
10391         * Makefile.am: Add the security manager to the build.
10392         * security-manager.c|h: New. Initialization of the security manager.
10393
10394 2005-01-07  Dick Porter  <dick@ximian.com>
10395
10396         * threads.c: 
10397         * monitor.c: Update thread state during Monitor and WaitHandle
10398         waits.  Fixes bug 71031.
10399
10400 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
10401
10402         * reflection.c (property_encode_signature): Correctly handle when the
10403         property has no methods.
10404
10405 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
10406
10407         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
10408         
10409         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
10410         fields from mb, not rmb. Fixes #71017.
10411
10412         * marshal.c (emit_ptr_to_str_conv): Add support for 
10413         ByValTStr -> string conversion. Fixes #71015.
10414
10415         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
10416
10417         * mempool.c (mono_mempool_contains_addr): New helper function.
10418
10419 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
10420
10421         * metadata.c (mono_metadata_compute_size): Fix size calculation of
10422         HasSematics encoded fields.
10423         
10424         * metadata.c (mono_type_to_unmanaged): Improve error message for 
10425         invalid string marshalling.
10426
10427         * metadata.c: Fix warnings.
10428         
10429 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
10430
10431         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
10432         profiler support.
10433
10434 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
10435
10436         * domain.c object.c domain-internals.h: Revert part of r38077 since the
10437         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
10438         tests.
10439
10440 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
10441
10442         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
10443         so methods containing these can be AOTed.
10444
10445 2005-01-03  Martin Baulig  <martin@ximian.com>
10446
10447         * loader.c (find_method): Removed the hack for generic instances.
10448         (method_from_memberref): If our parent is a generic instance, pass
10449         its generic type definition to find_method() and then inflate the
10450         method.
10451         (mono_get_method_constrained): Pass the generic type definition to
10452         find_method() and inflate the method later.
10453
10454         * class-internals.h (MonoStats): Added `generic_class_count'.
10455
10456         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
10457         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
10458
10459         * reflection.c (mono_custom_attrs_from_params): Don't ignore
10460         generic type definitions.
10461
10462 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
10463
10464         * loader.c icall.c: Fix warnings.
10465
10466 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
10467
10468         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
10469         blittable types. Fixes #70864.
10470
10471 2004-12-29  Martin Baulig  <martin@ximian.com>
10472
10473         * icall.c
10474         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
10475
10476         * reflection.c (mono_method_get_object): Create a
10477         "System.Reflection.MonoGenericMethod" for inflated methods; don't
10478         call mono_get_inflated_method().
10479
10480         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
10481
10482 2004-12-27  Martin Baulig  <martin@ximian.com>
10483
10484         * class-internals.h (MonoMethod): Added `is_inflated' flag.
10485         (MonoMethodInflated): Added `inflated' field.
10486
10487         * class.c (mono_class_inflate_generic_method): Don't really
10488         inflate the method here; just set the `is_inflated' flag in the
10489         MonoMethod.
10490         (mono_class_get_inflated_method): Actually inflate the method here
10491         if it's not already inflated; we use the MonoMethodInflated's new
10492         `inflated' field as a cache.
10493
10494 2004-12-26  Martin Baulig  <martin@ximian.com>
10495
10496         * class.c
10497         (inflate_generic_class): Moved some code out of inflate_generic_type().
10498         (mono_class_inflate_generic_method): If we're already inflated,
10499         inflate the context and use the declaring method; ie. make sure
10500         the declaring method of an inflated method is always the generic
10501         method definition.
10502         (mono_class_create_from_typedef): Create
10503         `class->generic_container->context->gclass'.
10504
10505 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
10506
10507         * metadata-internals.h, marshal.c, reflection.c: More
10508         MonoGHashTable->GHashTable.
10509
10510         * domain-internals.h, class.c: Change MonoGHashTable's into
10511         GHashTables for some cases where no gc stuff is used
10512
10513         All users: update apis
10514
10515 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
10516
10517         * metadata.c (builtin_types): Make this `const'. Makes this get
10518         put into the shareable section.
10519         (mono_metadata_init): Casts to make gcc happy.
10520
10521 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
10522
10523         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
10524
10525 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
10526
10527         * icall.c: Added an internal call to retrieve the position and length
10528         of assembly-level declarative security attributes (RequestMinimum, 
10529         RequestOptional and RequestRefuse). This is used by the Assembly class
10530         to re-create the corresponding permission sets.
10531
10532 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
10533
10534         * marshal.c: fix the stelemref wrapper to be type correct
10535         (and faster).
10536
10537 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
10538
10539         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
10540         to do key & 0x7fffffff. Hashtable already does this. It just
10541         results in longer code.
10542
10543 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
10544
10545         * appdomain.c: Bump corlib version.
10546         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
10547         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
10548         * reflection.c|h: Add functions to get declarative security infos
10549         (blob position and length) for assemblies, classes and methods.
10550
10551 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
10552
10553         * reflection.c: sort the constant table (bug #70693).
10554
10555 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
10556
10557         * object-internals.h, threads.c, domain.c: add accessors for
10558         the MonoThread and MonoDomain tls keys.
10559
10560 2004-12-18  Martin Baulig  <martin@ximian.com>
10561
10562         * class.c (inflate_generic_type): If we're inflating a generic
10563         instance, set `ngclass->context->container = context->container';
10564         ie. the container we inflated into.
10565
10566         * metadata.c (mono_metadata_parse_generic_param): Reflect above
10567         inflate_generic_type() changes.
10568
10569 2004-12-17  Martin Baulig  <martin@ximian.com>
10570
10571         * class-internals.h
10572         (MonoGenericClass): Replaced `MonoType *generic_type' with
10573         `MonoClass *generic_class'.  Removed `dynamic_info'; if
10574         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
10575         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
10576
10577 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
10578
10579         * exception.c (mono_exception_from_token): New helper function.
10580
10581 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
10582
10583         * assembly.c (mono_assembly_load_with_partial_name): Call 
10584         mono_assembly_loaded before invoking the preload hooks. Fixes
10585         #70564.
10586
10587         * object-internals.h (MonoThread): Change culture_info and 
10588         ui_culture_info into an array.
10589
10590         * threads.c: Cache culture info objects from more than one appdomain.
10591
10592         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
10593         current UI culture.
10594
10595 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
10596
10597         * threads.h threads.c appdomain.c: Clear the culture_info field of
10598         all threads during unloading if they point to an object in the dying
10599         appdomain.
10600
10601 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
10602
10603         * culture-info.h (TextInfoEntry): New struct
10604         * object-internals.h: sync with managed
10605         * locales.c: fill the `text_info_data' field
10606         * culture-info-tables.h: update
10607
10608 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
10609
10610         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
10611         collector.
10612
10613 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
10614
10615         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
10616         (ves_icall_ModuleBuilder_getMethodToken): Ditto
10617
10618 2004-12-12  Martin Baulig  <martin@ximian.com>
10619
10620         * mono-debug-debugger.c (write_type): If we're an enum and the
10621         builtin types have already been initialized, call mono_class_init().
10622
10623 2004-12-11  Martin Baulig  <martin@ximian.com>
10624
10625         * metadata.c (mono_metadata_load_generic_params): Added
10626         `MonoGenericContainer *parent_container' argument; automatically
10627         compute `container->is_method'; pass the correct owner to
10628         get_constraints().      
10629
10630         * reflection.c (compare_genericparam): Sort the GenericParam table
10631         according to increasing owners. 
10632
10633 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
10634
10635         * profiler.c: allow disabling the default profiler.
10636
10637 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
10638
10639         * decimal.c, icall.c: allow disabling System.Decimal support.
10640
10641 2004-12-09  Marek Safar <marek.safar@seznam.cz>
10642
10643         * reflection.c: Add support for null attribute arguments.
10644
10645 2004-12-09  Martin Baulig  <martin@ximian.com>
10646
10647         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
10648         names to get rid of compiler warnings.
10649
10650 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
10651
10652         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
10653         mono_marshal_load_type_info (). Fixes #69625.
10654         (mono_marshal_get_ptr_to_struct): Likewise.
10655
10656 2004-12-08  Martin Baulig  <martin@ximian.com>
10657
10658         * mono-debug.h: Bumped version number to 47.
10659
10660         * mono-debug-debugger.c
10661         (mono_debugger_event_handler, mono_debugger_event): Take two
10662         guint64 arguments insteed of a gpointer and a guint32.  
10663
10664 2004-12-08  Martin Baulig  <martin@ximian.com>
10665
10666         * debug-mono-symfile.h
10667         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
10668         `address' to `native_offset'.
10669
10670 2004-12-08  Martin Baulig  <martin@ximian.com>
10671
10672         * class.c (mono_class_create_from_typespec): Only inflate if we
10673         either have `context->gclass' or `context->gmethod'.
10674
10675 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
10676
10677         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
10678
10679         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
10680
10681         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
10682
10683         * reflection.c (mono_assembly_get_object): Remove the workaround put
10684         in for the release.
10685         
10686         * appdomain.c: Use the corlib_internal field from MonoAssembly.
10687
10688         * appdomain.c: Bump corlib version.
10689
10690         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
10691         be visible in other appdomains.
10692
10693 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
10694
10695         * threads.c: Interlocked inc and dec for longs were messed up,
10696         use a KISS based impl for this. Fixes 70234
10697
10698 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
10699
10700         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
10701
10702 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
10703
10704         * icall.c: fix to follow policy not to allow struct
10705         arguments in icalls.
10706
10707 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10708
10709         * process.c: make the patch that handles spaces in file paths work
10710         on mono/windows too.
10711
10712 2004-12-06  Martin Baulig  <martin@ximian.com>
10713
10714         * class.c (mono_class_create_generic): Call
10715         mono_class_setup_supertypes() if we're dynamic.
10716         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
10717
10718 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
10719
10720         * object-internals.h: Add new fields to MonoThread.
10721
10722         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10723
10724         * icall.c threads-types.h threads.c: Add new icalls.
10725
10726         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
10727
10728         * object-internals.h (MonoReflectionAssembly): Sync object layout with
10729         managed side.
10730
10731         * appdomain.c: Bump corlib version.
10732
10733         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
10734         internal assemblies. Fixes #69181.
10735
10736 2004-12-05  Martin Baulig  <martin@ximian.com>
10737
10738         * class.c (mono_class_inflate_generic_signature): Make this a
10739         no-op if `context' is NULL or we don't have any type parameters;
10740         also copy `sentinelpos'.        
10741
10742 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
10743
10744         * image.c: Add unbox_wrapper_cache.
10745
10746         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
10747
10748         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
10749         function generator.
10750         
10751         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
10752         Fixes #70173.
10753
10754         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
10755         
10756 2004-12-04  Martin Baulig  <martin@ximian.com>
10757
10758         * loader.c (mono_method_get_signature_full): New public function;
10759         like mono_method_get_signature(), but with an additional
10760         `MonoGenericContext *' argument.
10761
10762         * class.c (mono_class_inflate_generic_signature): Formerly known
10763         as inflate_generic_signature(); make this public.
10764
10765 2004-12-04  Martin Baulig  <martin@ximian.com>
10766
10767         * metadata.c
10768         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
10769         instead of a `MonoGenericContainer *'.  
10770         (mono_metadata_parse_array_full): Likewise.
10771         (mono_metadata_parse_signature_full): Likewise.
10772         (mono_metadata_parse_method_signature_full): Likewise.
10773         (mono_metadata_parse_generic_inst): Likewise.
10774         (mono_metadata_parse_generic_param): Likewise.
10775         (mono_metadata_parse_mh_full): Likewise.
10776         (mono_type_create_from_typespec_full): Likewise.
10777
10778 2004-12-03  Martin Baulig  <martin@ximian.com>
10779
10780         * class-internals.h (MonoGenericContainer): Replaced the
10781         `MonoGenericContext * pointer with a `MonoGenericContext'
10782         structure and made it the first element.
10783
10784 2004-12-03  Martin Baulig  <martin@ximian.com>
10785
10786         * class.c
10787         (inflate_generic_type): Set the `context->container' when creating
10788         a new MonoGenericContext.
10789         (mono_class_inflate_generic_method): Likewise.
10790         (mono_class_create_from_typespec): Just use `context->container'
10791         to get the container.
10792
10793         * loader.c (method_from_methodspec): Set `context->parent' from
10794         `context->container' - and if that's a method container, use its
10795         parent.  Also set the `context->container' when creating a new
10796         MonoGenericContext.
10797         (mono_get_method_from_token): Use just `context->container' to get
10798         the container.
10799
10800         * metadata.c (do_mono_metadata_parse_generic_class): Also set
10801         `gclass->context->container'.
10802
10803         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
10804         the `context->container' when creating a new MonoGenericContext.
10805
10806 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
10807
10808         * reflection.c (compare_genericparam): Sort params with identical
10809         owner by their number. Fixes gen-111 on sparc.
10810
10811 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
10812
10813         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
10814         around the domain changes.
10815
10816         * appdomain.c (mono_domain_unload): Handle the case when the thread
10817         calling Unload is itself being aborted during unloading. Fixes #70022.
10818
10819         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
10820
10821         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
10822         checkpoint_func as an icall so it gets a wrapper.
10823         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
10824         in the cross-appdomain wrappers too.
10825
10826         * threads.c (mono_thread_has_appdomain_ref): Make this public.
10827
10828         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
10829
10830         * reflection.c: Fix some memory leaks.
10831         
10832 2004-12-02  Martin Baulig  <martin@ximian.com>
10833
10834         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
10835
10836         * metadata.c (generic_class_cache): New static hashtable.
10837         (mono_metadata_lookup_generic_class): New public method.
10838
10839 2004-12-02  Martin Baulig  <martin@ximian.com>
10840
10841         * class.c (mono_class_create_from_typedef): Call
10842         mono_class_setup_parent() and mono_class_create_mono_type() before
10843         parsing the interfaces.
10844
10845 2004-12-02  Martin Baulig  <martin@ximian.com>
10846
10847         * metadata.c (generic_inst_cache): New static hashtable.
10848         (mono_metadata_lookup_generic_inst): New public function.
10849         (mono_metadata_inflate_generic_inst): New public function.
10850         (mono_metadata_parse_generic_inst): New public function.
10851         (do_mono_metadata_parse_generic_class): Use the new
10852         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
10853         since this'll also use the cache.
10854
10855         * reflection.c (mono_reflection_bind_generic_method_parameters):
10856         Use mono_metadata_lookup_generic_inst() to use the new cache.
10857
10858         * class.c (inflate_mono_type): Use
10859         mono_metadata_inflate_generic_inst() to inflate a generic
10860         instance; this'll also use the new cache.
10861
10862         * loader.c (method_from_methodspec): Use
10863         mono_metadata_parse_generic_inst() and
10864         mono_metadata_inflate_generic_inst() rather than parsing it
10865         manually, so we can use the new cache.
10866
10867 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
10868
10869         * threads.c (wait_for_tids): Do not incorrectly free threads when 
10870         the wait times out.
10871
10872 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
10873
10874         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
10875         iter->args based on whether parameters are passed in registers (i.e.
10876         MONO_ARCH_REGPARMS is defined)
10877
10878 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
10879
10880         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
10881         the exception message. Fixes #70070.
10882         (method_from_methodspec): Fix warnings.
10883
10884 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10885
10886         * process.c: (complete_path) return the path quoted
10887
10888 2004-12-01  Martin Baulig  <martin@ximian.com>
10889
10890         * class-internals.h (MonoGenericInst): New structure.
10891         (MonoGenericClass): Replaced `type_argc', `type_argv' and
10892         `is_open' with `MonoGenericInst *inst'.
10893         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
10894         `is_open' with `MonoGenericInst *inst'.
10895
10896 2004-11-30  Martin Baulig  <martin@ximian.com>
10897
10898         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
10899
10900         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
10901         to `generic_class_cache'.
10902
10903         * metadata.c
10904         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
10905         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
10906         (mono_generic_inst_is_valuetype): Renamed to
10907         mono_generic_class_is_valuetype().
10908
10909         * class-internals.h
10910         (MonoGenericInst): Renamed to MonoGenericClass.
10911         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
10912         (MonoClass): Renamed `generic_inst' to `generic_class'.
10913         (MonoGenericContext): Renamed `ginst' to `gclass'.
10914
10915         * object-internals.h
10916         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
10917
10918         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
10919         mono_reflection_generic_class_initialize().
10920
10921         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
10922         now known as "System.Reflection.MonoGenericClass".
10923         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
10924
10925 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
10926
10927         * class-internals.h: Added a flag field to MonoClass to cache the
10928         declarative security attributes actions associated with the class.
10929         * domain-internals.h: Added booleans to MonoJitInfo to cache the
10930         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
10931         applicable to the JITted method.
10932         * reflection.c|h: Added functions to extract (as flags) which security
10933         actions are available (declaratively) for a method, class or assembly.
10934         * metadata.c|h: Added functions to search the declarative security
10935         table in the metadata.
10936         
10937 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
10938
10939         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
10940         EXPORTEDTYPES are already in the class name cache, so there is no
10941         need to add extra code here to look at them. Just removes a bit of
10942         cruft.
10943
10944         (ves_icall_System_Environment_get_TickCount): No need for #if
10945         WINDOWS. We already have the code in io-layer.
10946
10947 2004-11-28  Martin Baulig  <martin@ximian.com>
10948
10949         * loader.c
10950         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
10951         Fixes gen-112.cs.
10952
10953 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
10954
10955         * assembly.c (do_mono_assembly_open): Instead of having a
10956         conditional WITH_BUNDLE, incorporate support for bundles here, by
10957         having a global `bundles' variable holding a pointer to the actual
10958         bundles. 
10959
10960         (mono_register_bundled_assemblies): New API call used by the
10961         bundle code. 
10962
10963         See mkbundle.1 for details.
10964         
10965 2004-11-27  Martin Baulig  <martin@ximian.com>
10966
10967         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
10968         the vtable for generic methods.
10969
10970 2004-11-26  Martin Baulig  <martin@ximian.com>
10971
10972         * metadata.c
10973         (mono_metadata_generic_method_hash): New public function.
10974         (mono_metadata_generic_method_equal): Likewise.
10975
10976         * class-internals.h
10977         (MonoGenericContainer): Added `GHashTable *method_hash'.
10978
10979         * reflection.c (ReflectionMethodBuilder): Added
10980         `MonoGenericContainer *generic_container'.
10981         (reflection_methodbuilder_to_mono_method): Don't create a new
10982         MonoGenericContainer each time we're called.
10983         (mono_reflection_bind_generic_method_parameters): Use
10984         `container->method_hash' to cache the results so we don't create a
10985         different method if we're called several times with the same
10986         arguments.
10987
10988         * loader.c (method_from_methodspec): Use the new
10989         `container->method_hash' here, too.
10990
10991 2004-11-26  Martin Baulig  <martin@ximian.com>
10992
10993         * class.c (inflate_generic_signature): Correctly compute
10994         `res->has_type_parameters'.
10995         (mono_class_vtable): Use the `has_type_parameters' flag to
10996         determine whether we're a generic method.
10997
10998         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
10999
11000 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
11001
11002         * object.c (mono_runtime_run_main): Fix a small memory leak.
11003
11004 2004-11-25  Martin Baulig  <martin@ximian.com>
11005
11006         * class.c (set_generic_param_owner): Fixed the loop.
11007
11008 2004-11-25  Martin Baulig  <martin@ximian.com>
11009
11010         * object.c (mono_class_vtable): Don't create any JIT wrappers for
11011         generic methods.
11012
11013 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
11014
11015         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
11016         names. Fixes #69787.
11017
11018 2004-11-24  Martin Baulig  <martin@ximian.com>
11019
11020         * class.c (mono_class_create_generic_2): If we don't have a
11021         `ginst->parent', inflate `gklass->parent' to get our parent.
11022
11023 2004-11-24  Martin Baulig  <martin@ximian.com>
11024
11025         * reflection.c (compare_genericparam): Correctly sort the
11026         GenericParam table; fixes #69779.
11027
11028 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
11029
11030         * reflection.c: When writing a PE file, don't create a huge
11031         buffer in memory. Just write the arrays we have to the file.
11032         This reduces memory usage.
11033
11034         * metadata-internals.h: MonoDynamicStream pefile is no longer used
11035         globally.
11036
11037 2004-11-17  Martin Baulig  <martin@ximian.com>
11038
11039         * class.c (mono_class_init): Don't setup `class->parent' for
11040         dynamic instances; moved this to mono_class_generic_2().
11041         (mono_class_create_generic): Also set `klass->inited' for dynamic
11042         generic instances.
11043         (mono_class_create_generic_2): Don't do anything for dynamic
11044         generic instances.  Set `klass->parent' here and also call
11045         mono_class_setup_parent() here. 
11046
11047         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
11048         `MonoType *parent' argument; set `ginst->parent' before calling
11049         mono_class_create_generic_2(), so we set the correct parent.
11050
11051 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
11052
11053         * reflection.c: allow getting attributes from ModuleBuilder
11054         (used by ikvm).
11055
11056 2004-11-17  Martin Baulig  <martin@ximian.com>
11057
11058         * class.c (mono_class_create_from_typedef): If a type parameter is
11059         inherited from an outer class, set its owner to that class.
11060
11061 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
11062
11063         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
11064           for (int*) written size. This fixes bug #69592.
11065
11066 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
11067
11068         * icall.c: Added IsAuthenticodePresnet internal call.
11069         * image.c|h: New function that check a MonoImage for an Authenticode
11070         signature in the certificate PE data directory.
11071         * security.c|h: New internal call to ask the runtime if an 
11072         Authenticode signature seems referenced in the PE header.
11073
11074 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
11075
11076         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
11077
11078         * reflection.c (mono_image_create_pefile): Free the assembly streams
11079         after writing out the assembly file.
11080
11081         * object.c (mono_runtime_run_main): Fix small memory leak.
11082
11083         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
11084         property access modifiers. Fixes #69389.
11085
11086 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
11087
11088         * domain.c, object.c, object-internals.h, domain-internals.h,
11089         object.h, marshal.c: keep dynamic code info per domain.
11090
11091 2004-11-15  Martin Baulig  <martin@ximian.com>
11092
11093         * class.c (mono_type_get_name_recurse): Put type arguments in
11094         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
11095         see bug #68387.
11096
11097 2004-11-15  Martin Baulig  <martin@ximian.com>
11098
11099         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
11100         (mono_class_setup_vtable): When computing `the_cname' for a
11101         generic instance, don't include the namespace since we'd otherwise
11102         add it twice.
11103
11104 2004-11-15  Martin Baulig  <martin@ximian.com>
11105
11106         * class.c (mono_class_create_generic): Changed return type to void.
11107         (mono_class_create_generic_2): New public function; setup
11108         `class->method', `class->field' and `class->interfaces' here
11109         instead of in mono_class_init().
11110
11111         * class.h (mono_class_create_generic): Moved to class-internals.h.
11112
11113 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
11114
11115         * reflection.c (mono_image_create_pefile): take a file HANDLE.
11116         rather than writing to memory, write to this file. Right now,
11117         we are just writting into a buffer, and copying that. However
11118         we can avoid the buffer later.
11119
11120         (mono_dynamic_stream_reset): new function
11121
11122         * icall.c, object-internals.h: update for the above.
11123
11124 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
11125
11126         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
11127         have been using gc'd memory. First it is slower, unlikely
11128         the comment in the source code said, secondly, it increases
11129         our footprint to do it in the gc.
11130
11131         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
11132         the method so that it does not have to copy to managed code.
11133
11134 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
11135
11136         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
11137
11138 2004-11-12  Martin Baulig  <martin@localhost>
11139
11140         * reflection.c (mono_image_create_token): Allow generic method
11141         definitions here, since they may appear in an `.override'; see
11142         gen-98/gen-99 for an example.
11143
11144 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
11145
11146         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
11147         #69365.
11148
11149         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
11150         descriptive.
11151
11152 2004-11-11  Martin Baulig  <martin@ximian.com>
11153
11154         * class.c (mono_class_setup_vtable): In an explicit interface
11155         implementation, the method name now includes the arity.
11156
11157 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
11158
11159         * object.c (mono_array_full_copy): Fix warning.
11160
11161 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
11162
11163         * appdomain.c: Removed look_for_method_by_name(). Use the new method
11164         mono_class_get_method_from_name() instead.
11165         
11166         * class-internals.h: Added two new types of wrappers. 
11167         Added MonoRemotingTarget enum. Added new trampoline function type, which
11168         takes an additional MonoRemotingTarget value as parameter, so it is
11169         possible to request a trampoline for a specific target.
11170         
11171         * class.c: Added new mono_class_get_method_from_name() method.
11172         
11173         * class.h: In MonoRemoteClass, we can have now to vtables, one for
11174         general remoting sinks and one specific for cross domain calls.
11175         
11176         * debug-helpers.c: Added new wrapper names.
11177         
11178         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
11179         of a remote class.
11180         
11181         * image.c: Porperly delete value objects form the remoting invoke hashtable.
11182         
11183         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
11184         with several other methods (mono_marshal_get_xappdomain_dispatch,
11185         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
11186         and others) can generate a fast remoting wrapper for cross domain calls.
11187         More information can be found in docs/remoting.
11188         Other changes: Removed mono_find_method_by_name, and used
11189         mono_class_get_method_from_name instead.
11190         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
11191         is stored in the remoting invoke hashtable.
11192         
11193         * marshal.h: published the new method for getting the xdomain wrapper,
11194         and also added a method for getting the adequate wrapper for a given
11195         method and target.
11196         
11197         * object-internals.h, object.c: Added a couple of methods for capying and
11198         cloning arrays.
11199         Modified mono_install_remoting_trampoline, which takes the new remoting
11200         trampoline that has a remoting target as parameter.
11201         mono_class_proxy_vtable now also takes a remoting target as parameter, and
11202         will return the most suitable vtable for the target.
11203         Added mono_remote_class_vtable, which returns the vtable of a remote class
11204         (which can be the normal remoting vtable or the xdomain vtable).
11205         
11206         * threads.c: the xdomain invoke and dispatch wrappers must also be
11207         protected against interruptions.
11208
11209 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11210
11211         * icall.c: use memmove in BlockCopyInternal when the source and
11212         destination arrays are the same.
11213
11214 2004-11-09  Martin Baulig  <martin@ximian.com>
11215
11216         * class-internals.h (MonoGenericContainer): Removed `method' and
11217         `signature', replaced them with `is_method' and `is_signature'
11218         flags.  Added `context'.
11219
11220         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
11221         instead of a `MonoGenericContainer *'.
11222
11223         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
11224         for dynamic type parameters.
11225         (mono_metadata_load_generic_params): Setup `container->context'.
11226
11227         * reflection.c (mono_reflection_setup_generic_class): Setup
11228         `tb->generic_container->context'.
11229         (do_mono_reflection_bind_generic_parameters): Use
11230         mono_class_inflate_generic_type() to correctly inflate types,
11231         rather than using our own hack just for MONO_TYPE_VAR.
11232
11233 2004-11-09  Martin Baulig  <martin@ximian.com>
11234
11235         * class.c (mono_class_inflate_generic_method): Small fix; don't
11236         crash here.
11237
11238         * icall.c
11239         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
11240         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
11241         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
11242         (ves_icall_Type_BindGenericParameters): Likewise.
11243         (ves_icall_Type_get_IsGenericInstance): Likewise.
11244         (ves_icall_Type_GetGenericParameterPosition): Likewise.
11245         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
11246         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
11247         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
11248
11249 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
11250
11251         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
11252         assembly versions and public key tokens. Fixes #69113.
11253
11254 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
11255
11256         * metadata.c: fix bug introduced with the type cache changes
11257         on 2004-11-06.
11258
11259 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
11260
11261         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
11262         the MonoClass pointer instead of the token in exception clauses.
11263         * reflection.c: updates for the above and make the code not depend
11264         on the structure of MonoExceptionClause.
11265
11266 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
11267
11268         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
11269         Add support for dynamic assemblies. Fixes #69114.
11270
11271         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
11272
11273 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
11274
11275         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
11276         since most only those methods use it. the code member of
11277         MonoMethodPInvoke was dead, so that can be removed too. Also,
11278         remove inline_count (again, not used), and move slot so that it
11279         can share bits with some other flags. This saves 8 bytes in the
11280         structure and gives us about 50 kb back for mcs helloworld.cs
11281
11282         * *.[ch]: Do naming changes for the above.
11283
11284         * loader.c (mono_method_get_header): Lazily init the header
11285         on first access.
11286         (mono_get_method_from_token): don't init the header here
11287         (mono_free_method): the header may never be allocated
11288
11289         Overall, this saves 150 kb of unmanaged allocations
11290         for mcs helloworld.cs. That accounts for 10% of the unmanaged
11291         memory at runtime.
11292         
11293         * loader.c, loader.h (mono_method_get_header): new accessor.
11294
11295         * *.[ch]: use the above method. Prepares us to lazily load
11296         the header.
11297
11298         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
11299         three warnings, which are actual bugs (see 69206).
11300
11301         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
11302         unused. Saves a cool 4 bytes / method.
11303
11304 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
11305
11306         * metadata.c (builtin_types): Add types for System.Object here.
11307         (mono_metadata_parse_type_full): Cache MonoType*'s that are
11308         for a class or valuetype from klass->this_arg or klass->byval_arg.
11309
11310         On mcs for a hello world, this gets us down from 21836 MonoType's
11311         to 14560.
11312
11313         (mono_metadata_free_type): Account for the above change.
11314
11315 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
11316
11317         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
11318         exception instead of asserting if name is null.
11319         (ves_icall_System_AppDomain_GetData): Ditto.
11320
11321 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
11322
11323         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
11324         EnumBuilder.
11325
11326         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
11327         Return NULL when the domain does not have entry_assembly set.
11328
11329         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
11330         Add a 'resource_modules' argument.
11331         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
11332
11333         * reflection.c (mono_reflection_create_runtime_class): Move setting
11334         of wastypebuilder here, so mono_get_type_object () returns a MonoType
11335         for enums too.
11336
11337         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
11338         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
11339         Throw an ArgumentNullException if 'ptr' is null.
11340
11341         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
11342         assemblies here. Fixes #69020.
11343
11344 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
11345
11346         * reflection.c (build_compressed_metadata): Fix the previous patch for
11347         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
11348         the stack.
11349
11350 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
11351
11352         * assembly.c (mono_assembly_names_equal): Allow a match if one of
11353         the cultures is false. Fixes #69090.
11354
11355         * reflection.c (build_compressed_metadata): Fix invalid memory read 
11356         detected by valgrind.
11357         
11358         * reflection.c (mono_reflection_get_type): Avoid triggering a 
11359         TypeResolve multiple times for the same type. Fixes #65577.
11360
11361 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
11362
11363         * marshal.c: Avoid using ldftn to call managed functions. It is
11364         much slower than just a call.
11365
11366         * reflection.c (mono_module_get_object): free the basename we
11367         allocate here from glib.
11368         
11369         * reflection.c (ensure_runtime_vtable): make sure to free
11370         overrides.  Also, we were allocating an array of MonoMethod not an
11371         array of MonoMethod*.
11372
11373         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
11374
11375         * image.c (mono_image_close): free image->guid here.
11376
11377 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
11378
11379         * reflection.c: Fix some spec conformance issues with the PE file
11380         structures so mcs compiled apps run on the Net 2.0 beta.
11381
11382 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
11383
11384         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
11385         Implement this. Fixes #67264.
11386
11387         * debug-helpers.h debug-helpers.c marshal.c: Move 
11388         mono_find_method_by_name to debug-helpers.c.
11389
11390 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
11391
11392         * object.c (mono_release_type_locks): type_initialization_hash is
11393         a GHashTable.
11394
11395         * reflection.c object.c object-internals.h: Fix warnings.
11396
11397         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
11398         without accessors. Fixes #61561.
11399
11400         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
11401         application base from the root domain if not set. Fixes #65641.
11402         (mono_runtime_init): Fix warning.
11403
11404 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11405
11406         * appdomain.c: call mono_thread_pool_init.
11407         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
11408         of worker threads based on the number of CPUs and the environment
11409         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
11410         for non-windows (windows) systems.
11411
11412 2004-10-27  Chris Toshok  <toshok@ximian.com>
11413
11414         * mono-debug-debugger.c (write_class): don't call mono_class_init
11415         here, as even with the check for (!klass->init_pending), we get
11416         into a situation where we're hitting cycles in class
11417         initialization.  Fixes #68816.
11418
11419 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
11420
11421         * image.c: Avoid overwriting values in the loaded_images_hash when an
11422         assembly is loaded multiple times. Fixes #61152.
11423
11424         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
11425         so multiple satellite assemblies for the same name can be loaded.
11426         Fixes #68259.
11427
11428         * mono_domain_assembly_preload: Actually return the loaded assembly, 
11429         not NULL.
11430
11431         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
11432         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
11433
11434         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
11435         pending finalizers are not invoked after the appdomain has been 
11436         unloaded. Fixes #67862.
11437
11438 2004-10-22  Martin Baulig  <martin@ximian.com>
11439
11440         * mono-debug-debugger.c
11441         (mono_debugger_runtime_invoke): Don't box valuetypes.
11442
11443 2004-10-22  Chris Toshok  <toshok@ximian.com>
11444
11445         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
11446         don't hide private methods.
11447
11448 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
11449
11450         * icall.c: Allows the runtime to "share" (when known) the public key
11451         token of an assembly. This avoid the need to recalculate the token 
11452         (from the public key) in managed code.
11453
11454 2004-10-21  Chris Toshok  <toshok@ximian.com>
11455
11456         * debug-helpers.c (append_class_name): argh, revert last patch.
11457         
11458 2004-10-21  Chris Toshok  <toshok@ximian.com>
11459
11460         * debug-helpers.c (append_class_name): use '+' as the delimiter,
11461         not '/', so that it matches what the debugger uses to look up
11462         methods.
11463
11464 2004-10-21  Martin Baulig  <martin@ximian.com>
11465
11466         * mono-debug-debugger.c (mono_debugger_throw_exception): New
11467         public method; this is called each time an exception is thrown and
11468         allows the debugger to use exception catch points.
11469
11470 2004-10-21  Martin Baulig  <martin@ximian.com>
11471
11472         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
11473         the stack pointer and the exception object in some struct and pass
11474         that to the debugger.
11475
11476 2004-10-21  Chris Toshok  <toshok@ximian.com>
11477
11478         * mono-debug-debugger.c (do_write_class): add instance/static
11479         event support.  We don't expose "raise" or "other" yet.
11480         (event_is_static): new method.
11481
11482 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
11483
11484         * mono-debug-debugger.c
11485         (mono_debugger_handle_exception): Remove
11486         bogus return value for fussy compilers.
11487
11488 2004-10-20  Martin Baulig  <martin@ximian.com>
11489
11490         * mono-debug-debugger.c
11491         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
11492         (mono_debugger_handled_exception): Likewise.
11493
11494 2004-10-20  Martin Baulig  <martin@ximian.com>
11495
11496         * mono-debug-debugger.h (MonoDebuggerEvent): Added
11497         MONO_DEBUGGER_EVENT_EXCEPTION.
11498
11499         * mono-debug-debugger.c (mono_debugger_handle_exception): New
11500         public function to send the debugger a notification for an
11501         exception and inform it about a catch/finally clause.
11502
11503 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
11504
11505         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
11506         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
11507         fix 2.95 build. 
11508
11509         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
11510
11511 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
11512
11513         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
11514         marshalled as [In,Out]. Fixes #58325.
11515
11516 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
11517
11518         * reflection.c (mono_method_body_get_object): Implement some fields.
11519
11520 2004-10-12  Martin Baulig  <martin@ximian.com>
11521
11522         * reflection.c (mono_reflection_bind_generic_parameters): Small
11523         fix, correctly retrieve our parent from a generic instance.
11524
11525 2004-10-12  Martin Baulig  <martin@ximian.com>
11526
11527         * metadata.c (mono_metadata_generic_param_equal): We always have
11528         an owner.
11529
11530         * class.c
11531         (mono_class_from_generic_parameter): We need to have an owner.
11532         (my_mono_class_from_generic_parameter): Likewise.
11533
11534         * reflection.c (mono_reflection_setup_generic_class): Renamed to
11535         mono_reflection_create_generic_class() and added a new
11536         mono_reflection_setup_generic_class().  
11537         (mono_reflection_initialize_generic_param): If we're a nested
11538         generic type and inherited from the containing class, set our
11539         owner to the outer class.
11540
11541 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
11542
11543         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
11544
11545         * reflection.c (mono_method_body_get_object): New function to create
11546         a MethodBody object.
11547
11548         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
11549
11550 2004-10-11  Martin Baulig  <martin@ximian.com>
11551
11552         * metadata.c (_mono_metadata_type_equal): Renamed to
11553         do_mono_metadata_type_equal() and made static.
11554
11555 2004-10-11  Martin Baulig  <martin@ximian.com>
11556
11557         * appdomain.c: Bump corlib version number to 28.
11558
11559 2004-10-10  Martin Baulig  <martin@ximian.com>
11560
11561         * class-internals.h
11562         (MonoGenericInst): Added `MonoGenericContainer *container'.
11563         (MonoGenericMethod): Likewise.
11564         (MonoGenericContext): Likewise.
11565         (MonoGenericParam): Added `MonoGenericContainer *owner'.
11566
11567         * metadata.c
11568         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
11569         (do_mono_metadata_parse_generic_inst): Likewise.
11570         (mono_metadata_parse_type_full): New public method.  This is the actual
11571         mono_metadata_parse_type() implementation - with an additional
11572         `MonoGenericContainer *' argument.
11573         (mono_metadata_parse_array_full): Likewise.
11574         (mono_metadata_parse_signature_full): Likewise.
11575         (mono_metadata_parse_method_signature_full): Likewise.
11576         (mono_metadata_parse_mh_full): Likewise.
11577         (mono_type_create_from_typespec): Likewise.
11578         (mono_metadata_interfaces_from_typedef_full): New public method;
11579         this is similar to the other _full() methods, but we take a
11580         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
11581         (mono_metadata_parse_generic_param): Take an additional
11582         `MonoGenericContainer *' argument and lookup the MonoGenericParam
11583         from that container.
11584         (mono_metadata_generic_param_equal): New static method to compare
11585         two type parameters.
11586         (_mono_metadata_type_equal): New static method; takes an
11587         additional `gboolean signature_only' argument - if true, we don't
11588         compare the owners of generic parameters.
11589         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
11590         with a TRUE argument - do a signature-only comparision.
11591
11592         * loader.c: Use the new _full() methods and pass the
11593         MonoGenericContainer to them.
11594
11595         * object-internals.h (MonoReflectionTypeBuilder): Added
11596         `MonoGenericContainer *generic_container' field.
11597         (MonoReflectionMethodBuilder): Likewise.
11598
11599 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
11600
11601         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
11602         case initial images of dynamic assemblies.
11603
11604         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
11605
11606         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
11607
11608         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
11609         length of event->other array.
11610         (typebuilder_setup_events): Ditto.
11611
11612         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
11613         'assembly_by_name' and add an 'assemblies' list.
11614
11615         * assembly.h assembly.c: Add a new search hook for determining whenever
11616         an assembly is already loaded. Use this instead of searching in the
11617         loaded_assemblies list.
11618
11619         * domain.c appdomain.c: Implement the new search hook so loaded 
11620         assemblies are now scoped by appdomain. Fixes #67727.
11621
11622 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
11623
11624         * threads.c (mono_thread_attach): Initialize synch_lock field so
11625         mono_thread_detach works again.
11626
11627         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
11628         'lib' too. Fixes #63130.
11629
11630 2004-10-06  Jackson Harper  <jackson@ximian.com>
11631
11632         * culture-info-tables.h: regenerated.
11633
11634 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
11635
11636         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
11637         implemented by other interfaces in the result. Fixes #65764.
11638         
11639         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
11640         Handle unloadable modules without crashing.
11641
11642         * image.c (load_modules): Revert the previous patch since modules must
11643         have a fixed index inside the array.
11644         
11645         * image.c (load_modules): Don't include native modules in the modules
11646         array.
11647
11648 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
11649
11650         * reflection.h: Add param_defaults field.
11651
11652         * reflection.c: Add support for parameter defaults in dynamic methods.
11653         Fixes #64595.
11654
11655         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
11656         an empty string when a type has no namespace. Fixes #64230.
11657
11658 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
11659
11660         * tabledefs.h: Added "internal" security actions to support non-CAS
11661         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
11662         Note: they do not seems to be used anymore in 2.0 (new metadata format)
11663
11664 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
11665
11666         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
11667         constructor of abstract class. Fixes #61689.
11668
11669 2004-10-04  Martin Baulig  <martin@ximian.com>
11670
11671         * class-internals.h (MonoGenericContainer): New type.
11672         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
11673         `MonoGenericContainer *generic_container'.
11674         (MonoClass): Replaced `gen_params' and `num_gen_params' with
11675         `MonoGenericContainer *generic_container'.
11676
11677         * metadata.c (mono_metadata_load_generic_params): Return a
11678         `MonoGenericContainer *' instead of a `MonoGenericParam *';
11679         removed the `num' argument.
11680
11681 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
11682
11683         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
11684         for dynamic images.
11685
11686         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
11687         machine fields.
11688
11689         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
11690
11691         * reflection.c: Save pe_kind and machine values into the generated
11692         image file.
11693
11694         * appdomain.c: Bump corlib version number.
11695
11696         * object-internals.h: Reorganize layout of LocalBuilder.
11697
11698         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
11699         New helper function.
11700
11701         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
11702         created MonoType for dynamic types. Fixes #66180.
11703
11704 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
11705
11706         * threadpool.c: the ares hashtable needs a critical section around it.
11707         this prevents some nasty segfaults
11708
11709 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
11710
11711         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
11712         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
11713         bug 67324).
11714         
11715 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
11716
11717         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
11718         
11719 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
11720
11721         * image.c: Always canonicalize image file names, to avoid loading
11722         the same assembly twice when referenced using a relative path.
11723
11724 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
11725
11726         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
11727
11728         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
11729
11730         * marshal.c: Fix warnings.
11731
11732 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
11733
11734         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
11735         attempting to marshal the delegate_trampoline as the method_addr.
11736         This patch has a static hashtable of marshalled delegates so that 
11737         we can map delegate_trampoline addresses back to delegates.  This
11738         allows a delegate passed to managed code to be passed back into native
11739         code.  Fixes #67039
11740
11741 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
11742
11743         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
11744
11745         * reflection.c (method_encode_code): Align method headers properly.
11746         Fixes #66025.
11747
11748 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
11749
11750         * marshal.c: In the runtime invoke wrapper, reset the abort
11751         exception if it is cached. This avoids the automatic rethrowal of 
11752         the exception after the catch of the wrapper. Also check for pending
11753         interruptions before calling the managed method. This is done using
11754         the new method emit_thread_force_interrupt_checkpoint, since the
11755         normal checkpoint method is ignored when running the invoke wrapper.
11756         * object.c: If the abort exception is rethrown, set the abort_exc
11757         field of the thread, so it will be rethrown aftere every catch.
11758         * threadpool.c: Only run an interruption checkpoint if what has been
11759         requested is a stop of the thread (aborts will be ignored).
11760         * threads.c: By default, a thread will now never be interrumped while
11761         running the runtime invoke wrapper (this ensures that runtime_invoke
11762         will always return to the caller if an exception pointer is provided).
11763         There is a new special method mono_thread_force_interruption_checkpoint()
11764         to force an interruption checkpoint even if running a protected
11765         wrapper, which is used by the same runtime invoke wrapper to do a check
11766         at a safe point.
11767
11768 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
11769
11770         * object.c, object-internals.h: Implemented mono_release_type_locks,
11771         which releases the cctor locks held by a thread.
11772         * threads.c, threads.h: In thread_cleanup, release cctor locks held
11773         by a thread. Added mono_thread_exit() method to be used to safely stop
11774         a thread.
11775
11776 2004-09-28  Raja R Harinath  <rharinath@novell.com>
11777
11778         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
11779         Move null check before dereference.  Avoid indexing beyond the end
11780         of the 'modules' array.
11781
11782 2004-09-28  Raja R Harinath  <rharinath@novell.com>
11783
11784         * metadata-internals.h (MonoImage): Add module_count field.
11785         * image.c (load_modules): Set image->module_count.
11786         (mono_image_load_file_for_image): Use image->module_count.
11787         * reflection.c (mono_image_load_module): Append to image->modules array 
11788         of dynamic assembly.
11789         (mono_module_get_object): Fix loop to actually increment index.
11790         Use image->module_count.
11791         * assembly.c (mono_assembly_load_references): Use image->module_count.
11792         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
11793         Likewise.
11794
11795 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
11796
11797         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
11798         Avoid assert on generic types.
11799
11800 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
11801
11802         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
11803
11804         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
11805
11806         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
11807         function to convert a MarshalSpec structure to its managed counterpart.
11808
11809         * reflection.c: Fix warnings.
11810         
11811         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
11812         field.
11813
11814         * icall.c (mono_create_icall_signature): Fix build.
11815
11816 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
11817
11818         * icall.c: Add MakePointType icall.
11819
11820         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
11821         warnings.
11822
11823 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11824
11825         * threadpool.c: reuse allocated slots in the queue.
11826
11827 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
11828
11829         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
11830
11831         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
11832
11833         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
11834         previous change.
11835
11836         * tabledefs.h: Add constants for pinvoke attributes BestFit and
11837         ThrowOnUnmappableChar.
11838
11839         * icall.c (ves_icall_Type_GetPacking): New icall.
11840
11841 2004-09-24  Martin Baulig  <martin@ximian.com>
11842
11843         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
11844
11845 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11846
11847         * appdomain.c:
11848         (mono_domain_set): allow setting a domain that is being unloaded.
11849         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
11850         being unloaded.
11851
11852 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
11853
11854         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
11855         the GetCustomAttributes icall.
11856
11857 2004-09-23  Martin Baulig  <martin@ximian.com>
11858
11859         * object-internals.h (MonoReflectionGenericParam): Replaced
11860         'has_ctor_constraint', `has_reference_type' and `has_value_type'
11861         with `guint32 attrs'.
11862
11863 2004-09-23  Martin Baulig  <martin@ximian.com>
11864
11865         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
11866
11867 2004-09-23  Martin Baulig  <martin@ximian.com>
11868
11869         * object-internals.h (GenericParameterAttributes): New enum.
11870
11871 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
11872
11873         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
11874         
11875         * class.c (init_events): Fill out event->other field.
11876
11877         * class.c: Fix warnings.
11878
11879         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
11880
11881 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
11882
11883         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
11884         walk which doesn't supply the IL offset.
11885
11886 2004-09-22  Martin Baulig  <martin@ximian.com>
11887
11888         * reflection.c (mono_reflection_setup_internal_class): If we're
11889         System.ValueType, System.Object or System.Enum, set
11890         `klass->instance_size' and create the vtable.
11891         (mono_reflection_create_internal_class): If we're an enum type,
11892         get the base class from our current corlib.
11893
11894 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
11895
11896         * reflection.h (MonoResolveTokenError): New type.
11897
11898         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
11899         icall.
11900
11901         * icall.c: Add an 'error' argument to the ResolveToken icalls.
11902
11903 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
11904
11905         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
11906         Support also calling constructors, but only for already allocated objects.
11907
11908 2004-09-17  Geoff Norton <gnorton@customerdna.com>
11909
11910         * reflection.c (type_get_qualified_name): If the klass is null
11911         return the typename to avoid a NullRefEx.
11912         (encode_cattr_value): Get the qualified name of the boxed type,
11913         not the underlying enumtype.  Fixes #62984.
11914
11915 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
11916
11917         * marshal.c: Fix problems with previous checkin.
11918
11919 2004-09-21    <vargaz@freemail.hu>
11920
11921         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
11922         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
11923
11924         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
11925
11926 2004-09-21  Geoff Norton <gnorton@customerdna.com>
11927
11928         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
11929         should only return a type for pointers, arrays, and passbyref types.
11930         Fixes bug #63841.
11931
11932 2004-09-21  Martin Baulig  <martin@ximian.com>
11933
11934         * domain.c (mono_debugger_check_runtime_version): New public
11935         function.
11936
11937         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
11938
11939 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
11940
11941         * reflection.c: Added missing sort to the declarative security 
11942         attributes table. MS implementation stops seeing the attributes if the
11943         token number regress in the table (as shown by ildasm and permview).
11944
11945 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
11946
11947         * object-internals.h (MonoReflectionModule): Add 'token' field.
11948         
11949         * reflection.c (mono_reflection_get_token): Add support for Module
11950         and Assembly.
11951         (mono_module_get_object): Set 'token' field.
11952         (mono_module_file_get_object): Set 'token' field.
11953
11954         * icall.c: Add new Assembly and Module icalls.
11955
11956         * appdomain.c: Bump corlib version.
11957
11958 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
11959
11960         * loader.h loader.c class.h class.c: Add helper functions for obtaining
11961         tokens of metadata objects.
11962
11963         * reflection.h reflection.c (mono_reflection_get_token): New function
11964         to obtain the token of a metadata object.
11965
11966         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
11967
11968 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
11969
11970         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
11971         
11972         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
11973
11974 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
11975
11976         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
11977         * object-internals.h: Added 3 MonoArray* members to MonoReflection
11978         AssemblyBuilder to access the permissions set in the class lib.
11979         * reflection.c: Added security attributes encoding step in 
11980         mono_image_build_metadata.
11981         * tabledefs.h: Added new security actions defined in 2.0:
11982         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
11983
11984 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
11985
11986         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
11987         macro parameter.
11988
11989 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
11990  
11991         * locales.c: nullify the ICU_collator member of CompareInfo when it is
11992           finalized. There where random SIGSEVs at program termination, when
11993           an object being finalized was trying to do a string comparison and
11994           the current culture was already finalized.
11995  
11996 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11997
11998         * threads.c: call thread_cleanup before finishing the thread if we get
11999         there.
12000
12001 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
12002
12003         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
12004         assemblies from the parent. Fixes #65665.
12005
12006 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
12007
12008         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
12009         modifiers.
12010
12011 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
12012
12013         * reflection.h: add prototype for mono_get_dbnull_object
12014         * reflection.c: add prototypes for get_default_param_value_blobs 
12015         and mono_get_object_from_blob for fussier compilers
12016
12017 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
12018  
12019         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
12020         false deadlock checks in class initialization.
12021  
12022 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
12023
12024         * image.c (mono_image_addref): Fix comment.
12025
12026         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
12027         possible.
12028
12029 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
12030
12031         * reflection.c (mono_param_get_objects): Modified to return
12032         ParameterInfo.DefaultValue object.
12033
12034         (get_default_param_value_blobs):
12035         (mono_get_object_from_blob):
12036         (mono_get_dbnull_object): New helper routines. 
12037
12038         * object.c (mono_get_constant_value_from_blob): New helper routine
12039         carved out from get_default_field_value ()
12040
12041         * object-internals.h (mono_get_constant_value_from_blob): Added
12042         function declaration.
12043
12044 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
12045
12046         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
12047         referenced assemblies. Fixes #62135.
12048
12049         * exception.h exception.c (mono_get_exception_file_not_found2): New
12050         helper function.
12051
12052 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
12053
12054         * class.h class.c: Add mono_type_get_underlying_type ().
12055
12056 2004-09-09  Geoff Norton <gnorton@customerndna.com>
12057
12058         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
12059         Fix GetTypes() to support dynamically created assemblies.
12060
12061 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
12062
12063         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
12064         
12065         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
12066         previous patch.
12067
12068         * reflection.h reflection.c loader.c: Allow dynamic construction of
12069         pinvoke methods. Fixes #65571.
12070         
12071         * reflection.c (mono_reflection_get_type): Revert previous change since
12072         it causes regressions.
12073
12074 2004-09-08  Martin Baulig  <martin@ximian.com>
12075
12076         * class.c (class_compute_field_layout): Don't call
12077         mono_class_layout_fields() for open generic instances.
12078
12079 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
12080         * threads.c appdomain.c: fix typo in GC macro
12081
12082 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12083
12084         * threads.c: don't call mono_thread_detach() in start_wrapper(),
12085         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
12086
12087 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
12088
12089         * image.c (mono_image_close): Applied patch from 
12090         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
12091         assembly is loaded multiple times from data.
12092         
12093         * image.c (mono_image_open): Fix warning.
12094
12095 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
12096
12097         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
12098         once. Fixes #58334.
12099         
12100         * reflection.c (mono_reflection_create_runtime_class): Initialize
12101         klass->nested_classes. Fixes #61224.
12102
12103 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
12104
12105         * threads.c: sched_yield() on exit, to allow threads to quit.
12106
12107 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
12108
12109         * object.c (mono_unhandled_exception): Remove leftover debug code.
12110
12111 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
12112
12113         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
12114
12115 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
12116
12117         * marshal.c (emit_marshal_array): Really null terminate string arrays.
12118         
12119         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
12120
12121 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
12122
12123         * marshal.c (emit_marshal_array): Null terminate string arrays.
12124         
12125         * marshal.c (raise_auto_layout_exception): Fix warning.
12126
12127         * reflection.c (mono_param_get_objects): Initialize the default value
12128         with DBNull.Value, not null. Fixes #62123.
12129
12130 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
12131
12132         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
12133         throw an exception with a cute explanation.
12134
12135 2004-09-06  Dick Porter  <dick@ximian.com>
12136
12137         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
12138         Close the new process's thread handle, as we don't use it.  The
12139         handle stays around forever otherwise.
12140
12141 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
12142
12143         * object.c (arith_overflow): Fix warning.
12144
12145         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
12146         calling conventions in method refs. Fixes #65352.
12147
12148         * reflection.c: Fix warnings.
12149
12150 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
12151
12152         * icall.c: Add a new icall for Array.Clear
12153
12154 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
12155
12156         * object.c: When allocating an array, we have to throw
12157         an overflow exception if any of the lengths are < 0.
12158
12159 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
12160
12161         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
12162         properly. Also move implementation of string array marshalling to 
12163         managed code. Fixes #42316.
12164
12165 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12166
12167         * assembly.c: provide more information when loading an assembly fails.
12168
12169 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12170
12171         * filewatcher.c: don't expect the development fam package to be
12172         installed.
12173
12174 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
12175
12176         * marshal.c: Make a copy of the signature cookie since it will be
12177         freed by the caller.
12178         
12179         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
12180
12181         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
12182
12183         * metadata.c (mono_metadata_free_marshal_spec): New function to free
12184         marshal specs.
12185
12186         * marshal.c: More refactoring.
12187         
12188         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
12189         smaller functions.
12190
12191 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
12192
12193         * object.c: In mono_message_invoke, fill the output parameter array after
12194           calling the managed method (it was done before the call). This fixes
12195           bug #59299.
12196
12197 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
12198
12199         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
12200         as well.
12201
12202 2004-09-02  Martin Baulig  <martin@ximian.com>
12203
12204         * class.c (mono_class_instance_size): Don't allow generic type
12205         definitions or open generic instances.
12206         (mono_class_array_element_size): If we're a value type, call
12207         mono_class_instance_size() on the original class.
12208
12209         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
12210         handle generic instances.
12211
12212         * mono-debug-debugger.c (write_type): Handle generic instances
12213         like classes.
12214
12215 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
12216
12217         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
12218         the allocation request fails. Fixes #65089.
12219
12220         * object.c (mono_runtime_free_method): Do not call mono_free_method.
12221         
12222         * object.c (mono_runtime_free_method): New function to free a dynamic
12223         method.
12224
12225         * marshal.c (mono_delegate_free_ftnptr): New function to free the
12226         delegate trampoline.
12227
12228         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
12229         with hasthis as dynamic,
12230
12231         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
12232
12233         * domain.c (mono_jit_info_table_remove): New function to remove an
12234         entry from the jit info table.
12235
12236         * class-internals.h (MonoMethod): Add 'dynamic' field.
12237
12238         * loader.c: Fix warnings.
12239
12240 2004-09-01  Martin Baulig  <martin@ximian.com>
12241
12242         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
12243         instead of mono_debugger_lock() because the latter one is a no-op
12244         unless running in the debugger.
12245
12246 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
12247
12248         * class.c (class_compute_field_layout): Classes with auto-layout or
12249         reference fields are not blittable.
12250         
12251 2004-09-01  Dick Porter  <dick@ximian.com>
12252
12253         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
12254         mono_image_get_filename() to get the assembly location.
12255
12256         * icall.c:
12257         * metadata.h: Fix compile warnings
12258
12259 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
12260
12261         * class.c (class_compute_field_layout): System.Object is blittable.
12262
12263         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
12264         as in/out. Fixes #59909.
12265
12266 2004-09-01  Martin Baulig  <martin@ximian.com>
12267
12268         * metadata.h (MONO_TYPE_ISREFERENCE): Call
12269         mono_metadata_generic_inst_is_valuetype() if we're a generic
12270         instance to check whether our underlying type is a reference type.
12271
12272 2004-09-01  Martin Baulig  <martin@ximian.com>
12273
12274         * metadata.c (mono_type_size): If we're a generic instance, call
12275         mono_class_value_size() for value types.
12276
12277 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
12278
12279         * marshal.c: Implement more custom marshalling functionality. Fixes
12280         #64915.
12281
12282 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
12283
12284         * mono-debug.c, debug-mono-symfile.c: add some locking love.
12285
12286 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
12287
12288         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
12289
12290         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
12291
12292         * icall.c: Fix some warnings.
12293
12294         * threads.c (abort_appdomain_thread): Fix unref errors.
12295         (mono_thread_current): Fix THREAD_DEBUG define.
12296
12297 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
12298
12299         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
12300
12301         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
12302
12303 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
12304
12305         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
12306         string arrays.
12307
12308 2004-08-28  Martin Baulig  <martin@ximian.com>
12309
12310         * metadata.c
12311         (mono_metadata_generic_inst_is_valuetype): New public function.
12312
12313         * metadata.h (MONO_TYPE_ISSTRUCT): Call
12314         mono_metadata_generic_inst_is_valuetype() if we're a generic
12315         instance to check whether our underlying type is a valuetype.
12316
12317 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
12318
12319         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
12320         #63768.
12321
12322 2004-08-25  Martin Baulig  <martin@ximian.com>
12323
12324         * loader.c (mono_get_method_from_token): Abstract methods can also
12325         be generic and thus have type parameters.
12326
12327         * metadata-internals.h
12328         (MonoDynamicImage): Added `GPtrArray *gen_params'.
12329
12330         * reflection.c (mono_image_get_generic_param_info): Don't create a
12331         metadata row, just add an entry to the `gen_params' array.
12332         (build_compressed_metadata): Sort the `gen_params' array and then
12333         actually create the metadata.
12334
12335 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12336
12337         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
12338
12339 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
12340
12341         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
12342
12343 2004-08-24  Martin Baulig  <martin@ximian.com>
12344
12345         * class.cs (mono_class_is_subclass_of): Like an interface, a
12346         generic instance also derives from System.Object.
12347
12348 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
12349
12350         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
12351         custom modifiers to be in any order. Fixes #61990.
12352
12353 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
12354
12355         * object.c: Register mono_object_new_fast icall.
12356         
12357         * object.c (mono_class_get_allocation_ftn): Return to calling
12358         mono_object_new_fast, since it seems faster to compute the object 
12359         size in unmanaged code than passing it as a parameter.
12360
12361         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
12362
12363         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
12364         this function with Boehm as the oom handler, so we don't have to check
12365         the result of GC_malloc.
12366
12367         * object.c: Remove checks for oom.
12368
12369         * object.h object.c (mono_class_get_allocation_ftn): New function to
12370         return the icall which can be used to allocate an instance of a given
12371         class. 
12372
12373         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
12374
12375         * class-internals.h: Add 'enabled' field.
12376
12377 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
12378
12379         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
12380
12381 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
12382         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
12383         value 0x0010.
12384
12385 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
12386
12387         * appdomain.c: use the Tls function for appdomain too,
12388         at Zoltan's request. Actually return in mono_context_get
12389
12390         * appdomain.c, profiler.c, threads.c: use __thread
12391
12392 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
12393
12394         * appdomain.c threads.c: Call GC_CreateThread on windows.
12395
12396         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
12397         multiple libraries since this don't work on windows.
12398
12399 2004-08-18  Martin Baulig  <martin@ximian.com>
12400
12401         * class-internals.h
12402         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
12403         MonoMethodHeader.
12404
12405         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
12406         MonoMethodNormal since we also need it for abstract and interface
12407         methods.
12408
12409         * reflection.c
12410         (build_compressed_metadata): Sort the GenericParam table.
12411         (mono_image_create_token): Added `gboolean create_methodspec'
12412         argument; this is false when generating a MethodImpl token.
12413         (reflection_methodbuilder_to_mono_method): Abstract and interface
12414         methods may also have generic parameters.
12415
12416 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
12417
12418         * appdomain.c: thread local alloc
12419
12420 2004-08-17  Martin Baulig  <martin@ximian.com>
12421
12422         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
12423
12424         * icall.c
12425         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
12426         argument.
12427
12428         * class.c (mono_type_get_full_name): New public function.
12429         (mono_type_get_name): Don't include the type arguments.
12430
12431 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
12432
12433         * Makefile.am: Build static versions of libmetadata and libmonoruntime
12434         for inclusion into the mono executable.
12435
12436 2004-08-16  Martin Baulig  <martin@ximian.com>
12437
12438         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
12439         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
12440
12441 2004-08-14  Martin Baulig  <martin@ximian.com>
12442
12443         * class.c (dup_type): Also copy the `byref' field.
12444
12445 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
12446
12447         * reflection.c (create_dynamic_mono_image): Revert the last change 
12448         since it breaks bootstrap.
12449
12450 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
12451
12452         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
12453
12454         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
12455         not free them with g_free.
12456
12457 2004-08-11  Martin Baulig  <martin@ximian.com>
12458
12459         * reflection.c (mono_reflection_setup_internal_class): Also call
12460         mono_class_setup_mono_type() if we already have a `tb->type.type'.
12461
12462 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
12463
12464         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
12465         called during default (first) AppDomain creation. Keep track of
12466         Evidence when loading assemblies.
12467
12468 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
12469
12470         * opcodes.c, opcodes.h: reduce runtime relocations.
12471
12472 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
12473
12474         * culture-info.h, locales.c: fixes and chages to sue the new
12475         optimized format of the locale data.
12476         * culture-info-tables.h: regenerated.
12477
12478 2004-08-06  Geoff Norton <gnorton@customerdna.com>
12479         
12480         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
12481
12482 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
12483
12484         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
12485         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
12486         * domain-internals.h: icall declaration.
12487         * icall.c: icall registration.
12488         * object-internals.h: New fields in MonoAssembly for CAS.
12489
12490 2004-08-05  Duncan Mak  <duncan@ximian.com>
12491
12492         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
12493         CEE_LDELEM_ANY.
12494
12495 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
12496
12497         * reflection.c: fix to deal with object[] arrays in custom ctors
12498         (bug #62550).
12499
12500 2004-08-05  Martin Baulig  <martin@ximian.com>
12501
12502         * class.c (mono_class_array_element_size): Added support for
12503         generic instances and correctly handle "recursive" types.
12504
12505 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
12506
12507         * assembly.c: Fix warnings.
12508
12509 2004-08-04  Martin Baulig  <martin@ximian.com>
12510
12511         * class.c
12512         (mono_type_get_name_recurse): Added `gboolean include_arity'
12513         argument specifying whether or not we should include the generic
12514         arity in the type name.
12515         (_mono_type_get_name): New static function.
12516         (mono_class_setup_vtable): If we're a generic instance, don't
12517         include the generic arity in the names of explicit method
12518         implementations.        
12519
12520 2004-08-03  Martin Baulig  <martin@ximian.com>
12521
12522         * class.c (mono_type_get_name_recurse): Enclose the generic type
12523         arguments in `<', '>'.
12524
12525 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
12526
12527         * gc.c: make GC warning messages use the trace API, they are just
12528         noise to most of the users.
12529
12530 2004-08-03  Martin Baulig  <martin@ximian.com>
12531
12532         * debug-mono-symfile.c (read_string): Correctly read the string.
12533
12534 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
12535
12536         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
12537         
12538         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
12539         icalls.
12540         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
12541
12542 2004-07-30  Martin Baulig  <martin@ximian.com>
12543
12544         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
12545         Reflect latest symbol writer changes.   
12546
12547 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
12548
12549         * object.c: always create an object if null is passed
12550         to Invoke() where a valuetype is expected.
12551
12552 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
12553
12554         * marshal.c (mono_marshal_init): make managed
12555         signatures match native ones better for 64bits.
12556
12557 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12558
12559         * appdomain.c: hack to build correctly the private bin path on windows.
12560         Fixes bug #61991.
12561
12562 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
12563
12564         * assembly.c: Load mscorlib from the correct framework directory
12565           (mono/<version>/mscorlib.dll).
12566         * appdomain.h: Added prototypes for new functions.
12567         * internals.h: Added some prototypes.
12568         * domain.c: When initializing the runtime, get from the executable and
12569           the configuration files the runtime version that the app supports.
12570           Added support methods for reading app.exe.config. Added list of versions
12571           supported by the JIT. Added two new methods: mono_init_from_assembly,
12572           which initializes the runtime and determines the required version from
12573           the provided exe file, and mono_init_version, which initializes
12574           the runtime using the provided version.
12575         * icall.c: Get machine.config from version-specific directory.
12576         * reflection.c: When generating an image, embed the version number
12577           of the current runtime.
12578
12579 2004-07-28  Dick Porter  <dick@ximian.com>
12580
12581         * socket-io.c
12582         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
12583         returned sockaddr size before creating the remote address object.
12584         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
12585         61608.
12586
12587 2004-07-28  Dick Porter  <dick@ximian.com>
12588
12589         * locales.c (string_invariant_compare_char): Fix invariant char
12590         compares between upper and lower cases.  Fixes bug 61458.
12591
12592 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
12593         
12594         * marshal.c: actually cache stelem.ref wrappers.
12595         
12596 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
12597
12598         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
12599         sections and remove the mono_cli_rva_map () function.
12600
12601 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
12602
12603         * debug-mono-symfile.c: fix one more endianess issue, from a patch
12604         by Geoff Norton (<gnorton@customerdna.com>).
12605
12606 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
12607
12608         * class.c: fix class loads for pointer types (typeof(int) !=
12609         typeof(int*)).
12610
12611 2004-07-27  Martin Baulig  <martin@ximian.com>
12612
12613         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
12614         reading the debugging information from an external ".mdb" file.
12615
12616 2004-07-24  Martin Baulig  <martin@ximian.com>
12617
12618         * reflection.c (mono_image_get_type_info): Only write a class
12619         layout entry if we actually have a size or a packing size.
12620
12621 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
12622
12623         * reflection.c (type_get_fully_qualified_name): 
12624         insert cast to get type checking of ?: with non-gcc compilers
12625
12626 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
12627
12628         * rand.c: use g_getenv for both lookups of
12629         MONO_EGD_SOCKET
12630
12631 2004-07-17  Martin Baulig  <martin@ximian.com>
12632
12633         * reflection.c (mono_reflection_bind_generic_method_parameters):
12634         Set `gmethod->reflection_info'.
12635
12636 2004-07-17  Martin Baulig  <martin@ximian.com>
12637
12638         * class.c (mono_class_create_from_typedef): Insert the newly
12639         created class into the hash table before computing the interfaces
12640         since we could be called recursively.
12641
12642 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
12643
12644         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
12645         function to implement stelem.ref in managed code
12646         * class-internals.h, debug-helpers.c: a new wrapper type
12647         for the above.
12648
12649 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
12650
12651         * gc.c: allow GC handles to work even when no GC is compiled in.
12652         Fix part of bug #61134 (GetAddrOfPinnedObject).
12653
12654 2004-07-13  Peter Williams  <peter@newton.cx>
12655  
12656         * process.c (complete_path): Make sure we don't attempt to execute
12657         directories.
12658  
12659 2004-07-12  Geoff Norton <gnorton@customerdna.com>
12660
12661         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
12662           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
12663           and will add/subtract the hour if needed
12664
12665 2004-07-12  Martin Baulig  <martin@ximian.com>
12666
12667         * reflection.c (mono_field_get_object): If we have
12668         `field->generic_info', take the attributes from
12669         `field->generic_info->generic_type'.    
12670
12671 2004-07-12  Martin Baulig  <martin@ximian.com>
12672
12673         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
12674         This function must be called before initializing the runtime.
12675         (mono_debug_init_1): New function; call this after initializing
12676         the runtime, but before loading the assembly.  It tells the
12677         debugger to load corlib and the builtin types.
12678
12679         * mono-debug-debugger.c: Did some larger changes in the debugging
12680         code; support recursive class declarations, make sure we actually
12681         add all classes.
12682
12683 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12684
12685         * debug-helpers.c: undo my previous patch and fixed the real issue in
12686         ../mini/exceptions-x86.c
12687
12688 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12689
12690         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
12691         when no HOME env. variable was set and a NullRef was thrown in a .cctor
12692         called from other .cctors.
12693
12694 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
12695
12696         * loader.c: Removed the mono_loader_wine_init hack now that we are
12697         doing a managed version of Windows.Forms.
12698
12699 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
12700
12701         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
12702         threadpool.c, threads.c: remove static data from rootset.
12703
12704 2004-07-09  Dick Porter  <dick@ximian.com>
12705
12706         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
12707         Don't do any more processing if the matched length was 0.  It was
12708         increasing the size of the string before.  Fixes bug 61167.
12709
12710 2004-07-09  Dick Porter  <dick@ximian.com>
12711
12712         * socket-io.h:
12713         * socket-io.c
12714         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
12715         Add support for SO_PEERCRED if its available.
12716
12717 2004-07-09  Peter Bartok <pbartok@novell.com>
12718         * loader.c: winelib.exe.so error message is now only displayed if
12719         MONO_DEBUG is set. To help us avoid questions when people are trying
12720         out the new Managed.Windows.Forms.
12721
12722 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
12723
12724         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
12725         for isinst and castclass wrappers.
12726
12727         * class-internals.h icall.c: Move registration and lookup of JIT icalls
12728         to libmetadata from the JIT, so they could be used by the marshalling
12729         code and the interpreter.
12730
12731         * marshal.c: Register marshalling related JIT icalls here instead of
12732         in mini.c. Use CEE_MONO_ICALL instead of the family of 
12733         CEE_MONO_PROC<x> opcodes to call marshalling functions.
12734
12735         * metadata.h: Remove unneeded marshalling conversions.
12736
12737         * opcodes.c: Update for new opcodes.
12738         
12739 2004-07-08  Martin Baulig  <martin@ximian.com>
12740
12741         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
12742         (mono_debug_get_domain_data): Make this function static.
12743
12744 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
12745
12746         * gc.c, object.h: add nice GC handle API for embedders.
12747
12748 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
12749
12750         * reflection.c: more changes for the new api
12751
12752         * object.c: When we reflect on a field w/ a constant value, it
12753         will not have a memory location, so we must access metadata. Also,
12754         allow easier reading of strings so that we can read them from
12755         the constant data.
12756
12757         * class.c (mono_class_layout_fields): no need for literal fields here.
12758
12759         * class-internals.h: api changes for const fields
12760
12761         * icall.c (ves_icall_get_enum_info): use new apis for const fields
12762
12763 2004-07-06  Martin Baulig  <martin@ximian.com>
12764
12765         * mono-debug.h: Increment version number to 44.
12766
12767         * mono-debug.c (mono_debug_add_wrapper): The second argument is
12768         now a gpointer, rewrote this whole method.
12769
12770         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
12771         function.  Add information about the wrapper in a new "misc table".
12772
12773         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
12774         for the new misc table.
12775
12776 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
12777
12778         * metadata-internals.h image.c: Add a cache for helper signatures.
12779
12780         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
12781
12782 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
12783
12784         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
12785         delegates from a delegate. Fixes #61033.
12786         
12787         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
12788         marshalling of stringbuilder arrays. Fixes #59900.
12789
12790 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
12791
12792         * icall.c: Add EnumBuilder:setup_enum_type icall.
12793
12794 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
12795
12796         * icall.c: Added a new icall for the property version of
12797         OffsetOfStringData.
12798
12799 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
12800
12801         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
12802         it has a constant size across platforms.
12803
12804         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
12805         stack trace.
12806
12807 2004-06-29  Martin Baulig  <martin@ximian.com>
12808
12809         * mono-debug.c (mono_debug_add_method): Protect the whole function
12810         in mono_debugger_lock(), not just parts of it.
12811
12812 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
12813
12814         * reflection.c: make sure padding bytes in heaps are zeroed.
12815
12816 2004-06-24  David Waite  <mass@akuma.org>
12817
12818         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
12819         image.c, loader.c, locales.c, marshal.c, metadata.c,
12820         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
12821         string-icalls.c, threads.c: change to C90-style comments from C99 /
12822         C++ -style
12823
12824 2004-06-24  Dick Porter  <dick@ximian.com>
12825
12826         * threads.c
12827         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
12828         return createdNew.  Fixes bug 60412.
12829
12830         * threads-types.h: 
12831         * icall.c: Add createdNew parameter to CreateMutex icall
12832
12833 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
12834
12835         * reflection.c, object-internals.h: save default value in params.
12836
12837 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12838
12839         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
12840         no need to build a new path combining that with the application base.
12841         Fixes bug #60442.
12842
12843 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
12844
12845         * reflection.c: fixed minor standard compliance issues.
12846
12847 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
12848
12849         * reflection.c: fixed issue with encoding some custom attributes
12850         (arrays in properties and fields, bug #60411).
12851
12852 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12853
12854         * reflection.c: fix start address when copying the public key token.
12855
12856 2004-06-23  Martin Baulig  <martin@ximian.com>
12857
12858         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
12859         the `exc' object in a static object to put it into the GC's root set.
12860
12861 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
12862
12863         * reflection.c: make mono_reflection_setup_internal_class ()
12864         callable a second time to setup a new parent class.
12865
12866 2004-06-23  Dick Porter  <dick@ximian.com>
12867
12868         * threads.c: Check for WAIT_IO_COMPLETION return values.
12869
12870 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
12871
12872         * appdomain.c: Removed the g_free on the public key token. Now copy 
12873         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
12874         * assembly.c: Added public key token string value when loading 
12875         assemblies. Fix bug #60439.
12876         * icall.c: Added missing informations (like public key) in 
12877         GetReferencedAssemblies. Fix #60519.
12878         * image.h: Changed definition for public key token from const char*
12879         public_tok_value to guchar public_key_token [17];
12880         * reflection.c: Updated for changes to public key token.
12881
12882 2004-06-22  Lluis Sanchez Gual
12883
12884         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
12885         for the field in base classes.
12886
12887 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
12888
12889         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
12890         mark headers as not supported, they are installed only for use by the
12891         debugger.
12892
12893 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
12894
12895         * *.c, *.h: avoid namespace pollution in public headers.
12896
12897 2004-06-21  Martin Baulig  <martin@ximian.com>
12898
12899         * exception.c (mono_get_exception_security): It's in
12900         "System.Security", not in "System".
12901
12902         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
12903         the exception classes.
12904
12905 2004-06-21  Martin Baulig  <martin@ximian.com>
12906
12907         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
12908         Protect the exception object from being finalized.
12909
12910 2004-06-21  Martin Baulig  <martin@ximian.com>
12911
12912         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
12913         public function.
12914
12915 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
12916
12917         * reflection.c: Load the assembly in mono_reflection_type_from_name,
12918         if it was not loaded before. Fix parts of #60439.
12919
12920 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
12921
12922         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
12923         code that was broken since Ben's change: wrappers are now
12924         dependent on the method signature only again.
12925
12926 2004-06-21  Martin Baulig  <martin@ximian.com>
12927
12928         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
12929         added interface support.
12930
12931 2004-06-21  Martin Baulig  <martin@ximian.com>
12932
12933         * class.c (mono_vtable_get_static_field_data): New public method.
12934
12935 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
12936
12937         * filewatcher.c : Windows build fix to be compliant with API changes.
12938
12939 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
12940
12941         * class.h, class.c: more accessors.
12942         * metadata.h, metadata.c: prepare for hiding MonoType and
12943         MonoMethodSignature: people should use the accessors from now on
12944         outside of the tree.
12945
12946 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
12947
12948         * *.c, *.h: more API cleanups.
12949
12950 2004-06-18  Jackson Harper  <jackson@ximian.com>
12951
12952         * assembly.c: Trace loading assemblies.
12953         * loader.c: Trace loading native libraries.
12954         * mono-config.c: Trace loading config files.
12955         
12956 2004-06-18  Dick Porter  <dick@ximian.com>
12957
12958         * locales.c: Tell ICU the lengths of strings, it can cope with
12959         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
12960
12961 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
12962
12963         * image.c: swapped name/filename;
12964
12965 2004-06-18  Martin Baulig  <martin@ximian.com>
12966
12967         * mono-debug-debugger.c (write_class): Write the parent class at
12968         the end of the header.
12969
12970 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
12971
12972         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
12973
12974 2004-06-17  Raja R Harinath  <rharinath@novell.com>
12975
12976         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
12977         (bundle_obj): New conditional define.
12978         (BUILT_SOURCES): Remove.
12979         ($(bundle_srcs)): Make parallel-make safe.
12980         (libmonoruntime_la_LIBADD): Make unconditional.
12981         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
12982         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
12983
12984 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
12985
12986         * culture-info-tables.h: It was inconsistent with the latest
12987           supp info files.
12988
12989 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
12990
12991         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
12992         be loaded.
12993
12994         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
12995         with gcc 2.95.
12996
12997 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
12998
12999         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
13000         cleaned up public header threads.h.
13001
13002 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
13003
13004         * Makefile.am, *.c, *.h: more API cleanups.
13005
13006 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
13007
13008         * Makefile.am: removed monosn from compilation.
13009         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
13010         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
13011         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
13012         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
13013         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
13014         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
13015
13016 2004-06-15  Jackson Harper  <jackson@ximian.com>
13017
13018         * assembly.c: Make locales lower case when searching the GAC for
13019         assemblies. gacutil will always make locales lowercase when
13020         installing so this effectively makes them case insensitive.
13021         
13022 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
13023
13024         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
13025         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
13026           parameter which allows to choose whether the wait can be interrupted or 
13027           not. Also added the method mono_monitor_enter(), which locks the monitor
13028           using an infinite wait and without allowing interruption.
13029           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
13030           interrupted.
13031         * object.h: Added new fields in MonoThread. suspend_event holds the event
13032           used to susped/resume the thread. synch_lock is the lock object to use for
13033           modifying the thread state.
13034         * threads.c: Use the new synch_lock object for locking, instead of "this",
13035           which can generate deadlocks.
13036           Moved thread state change in Thread.Sleep and Thread.Join from managed
13037           to unmanaged code. This avoids a deadlock when the thread was suspended
13038           just after acquiring the thread lock.
13039           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
13040           Implemented Thread.Suspend using an event instead of ThreadSuspend,
13041           which is not fully implemented in the io-layer.
13042         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
13043
13044 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
13045
13046         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
13047         threads-types.h: more API cleanups.
13048
13049 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
13050
13051         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
13052         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
13053         threadpool.c, threads.c: first pass at the exported API cleanup.
13054
13055 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
13056
13057         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
13058
13059 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13060
13061         * icall.c: added internalGetHome.
13062
13063 2004-06-14  Dick Porter  <dick@ximian.com>
13064
13065         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
13066         possible to return successfully when '.' or '..' were the only
13067         entries in a directory, but were skipped.  The MonoIOStat was not
13068         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
13069         Fixes bug 59574.
13070
13071 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
13072
13073         * reflection.c: make binaries run on .Net 1.1 by default.
13074
13075 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
13076
13077         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
13078
13079 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
13080
13081         * marshal.c: keep track of struct size with explicit layout
13082         (bug #59979).
13083
13084 2004-06-12  Martin Baulig  <martin@ximian.com>
13085
13086         * mono-debug-debugger.c: Comment out a debugging g_message().
13087
13088 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
13089
13090         * reflection.c, reflection.h: do not free custom attrs that are cached.
13091         * icall.c: use braces to make code clearer.
13092
13093 2004-06-11  Martin Baulig  <martin@ximian.com>
13094
13095         * class.h (MonoInflatedField): New type.
13096         (MonoClassField): Replaced `MonoType *generic_type' with
13097         `MonoInflatedField *generic_info'.
13098
13099         * icall.c
13100         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
13101
13102 2004-06-11  Martin Baulig  <martin@ximian.com>
13103
13104         * reflection.c (mono_image_create_method_token): Correctly encode
13105         varargs methods.
13106
13107 2004-06-11  Martin Baulig  <martin@ximian.com>
13108
13109         * metadata.c (mono_metadata_parse_method_signature): When parsing
13110         a MethodDef which has VarArgs, also set sentinelpos if we don't
13111         have any parameters.
13112
13113 2004-06-11  Martin Baulig  <martin@ximian.com>
13114
13115         * verify.c (mono_method_verify): In CEE_CALL, use
13116         mono_method_get_signature() to get the method's signature, unless
13117         we're a PInvoke method.
13118
13119 2004-06-10  Jackson Harper  <jackson@ximian.com>
13120
13121         * assembly.c: Use <path>/lib/mono/gac for the extra paths
13122         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
13123         logical name as the supplied path is just a prefix to the gac not
13124         the direct path to it.
13125         
13126 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
13127
13128         * reflection.c: make the token for a created method match
13129         the token of the MethodBuilder it was created from
13130         (IKVM requires this behaviour now).
13131
13132 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
13133
13134         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
13135         reflection.c, socket-io.c: leak fixes.
13136
13137 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
13138
13139         * icall.c: handle sentinel pos in vararg methods in position different
13140         from 0.
13141
13142 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13143
13144         * culture-info-tables.h: freshly generated.
13145
13146 2004-06-09  Martin Baulig  <martin@ximian.com>
13147
13148         * loader.c (mono_get_method_constrained): Call `mono_class_init
13149         (constrained_class)'.   
13150
13151 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
13152
13153         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
13154         any methods. Fixes #59629.
13155
13156 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
13157
13158         * culture-info-tables.h: reflecting locale-builder updates.
13159
13160 2004-06-08  Dick Porter  <dick@ximian.com>
13161
13162         * object.h:
13163         * locales.c: Fixed compile warnings, including a real bug in
13164         CompareInfo_internal_compare.
13165         
13166 2004-06-08  Dick Porter  <dick@ximian.com>
13167
13168         * locales.c
13169         (ves_icall_System_Globalization_CompareInfo_internal_index):
13170         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
13171         Double-check the resuls of usearches, because ICU currently
13172         ignores most of the collator settings here.  Fixes bug 59720.
13173         
13174 2004-06-08  Dick Porter  <dick@ximian.com>
13175
13176         * locales.c
13177         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
13178         Fix memory leak and segfault-causing typo.  No idea how this one
13179         lasted so long without being noticed.
13180
13181 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
13182
13183         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
13184         any methods. Fixes #59629.
13185
13186 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13187
13188         * assembly.c:
13189         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
13190         own the critical section before). Removed dead code (that's done
13191         in the preload hook).
13192
13193         (mono_assembly_load_with_partial_name): call the preload hook.
13194
13195 2004-06-08  Martin Baulig  <martin@ximian.com>
13196
13197         * metadata.c (mono_metadata_signature_alloc): Default
13198         `sentinelpos' to -1.
13199
13200         * reflection.c (mono_image_get_array_token): Likewise.
13201
13202 2004-06-08  Martin Baulig  <martin@ximian.com>
13203
13204         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
13205
13206         * metadata.c (mono_metadata_parse_method_signature): When parsing
13207         a MethodDef which has VarArgs, set sentinelpos.
13208
13209         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
13210         `gint16' since we're using -1 for non-varargs methods.
13211
13212         * reflection.c
13213         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
13214         (method_encode_signature): Added varargs support.
13215         (method_builder_encode_signature): Likewise.
13216         (mono_image_get_varargs_method_token): New static method.
13217         (mono_image_create_method_token): New public method; this is
13218         called via an icall instead of mono_image_create_token() when
13219         calling a varargs method.       
13220
13221 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
13222
13223         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
13224
13225 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
13226
13227         * culture-info-tables.h : Reflecting the latest locale-builder that
13228           fixed empty array representation ({} to {0}).
13229
13230 2004-06-07  Jackson Harper  <jackson@ximian.com>
13231
13232         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
13233         looking up extra gac paths. This allows MONO_GAC_PATH to act
13234         exactly like a prefix.
13235         
13236 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
13237
13238         * reflection.c (mono_reflection_type_from_name): Make a copy of the
13239         type name before modifying it. Fixes #59405.
13240
13241 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
13242
13243         * culture-info.h: added fields for "all datetime patterns".
13244         * locales.c: (  ves_icall_System_Globalization_CultureInfo
13245           _construct_datetime_format ()): fill xxx_patterns fields.
13246         * object.h: added fields for "all datetime patterns" to
13247           MonoDateTimeFormatInfo.
13248         * culture-info-tables.h: reflecting locale-builder updates.
13249
13250 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
13251
13252         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
13253         the event has no add and remove methods. Fixes #59629.
13254
13255 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
13256
13257         * object.c: Fixed possible integer overflow when allocating large
13258         strings.
13259
13260 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
13261
13262         * culture-info-tables.h: reflecting locale-builder updates.
13263
13264 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
13265
13266         * culture-info-tables.h: reflecting locale-builder updates.
13267
13268 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
13269
13270         * culture-info-tables.h: reflecting locale-builder updates.
13271
13272 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
13273
13274         * threads.c: Made Thread.Sleep abortable.
13275
13276 2004-06-02  Martin Baulig  <martin@ximian.com>
13277
13278         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
13279
13280         * debug-mono-symfile.h: Bumped symbol file version number to 37.
13281
13282 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
13283
13284         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
13285
13286 2004-05-30  Jackson Harper  <jackson@ximian.com>
13287
13288         * reflection.c: Do not hardcode assembly versions or public key
13289         tokens anymore. All of this except the corlib section was dead
13290         code anyways.
13291         
13292 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
13293
13294         * object.c (mono_runtime_invoke_array): Automatically create boxed
13295         objects for byref valuetypes if needed. Fixes #59300.
13296         
13297         * object.c (mono_method_return_message_restore): Handle 
13298         MONO_TYPE_OBJECT as well.
13299
13300 2004-05-28  Jackson Harper  <jackson@ximian.com>
13301
13302         * reflection.c: The modified type encoding was causing build
13303         problems. Reverted for now.
13304         
13305 2004-05-28  Jackson Harper  <jackson@ximian.com>
13306
13307         * reflection.c/h: Take an assembly ref so that we dont create
13308         fully qualified names when encoding types in the same assembly as
13309         the custom attribute being emitted.
13310         * appdomain.c: Increment version number.
13311         
13312 2004-05-26  Duncan Mak  <duncan@ximian.com>
13313
13314         * icall.c
13315         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
13316         Set the full version number (major, minor, build, revision).
13317
13318 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
13319
13320         * marshal.c (emit_struct_conv): increment src/dst after blit
13321         (mono_marshal_get_managed_wrapper,
13322         mono_marshal_get_native_wrapper): make sure we have marshalling
13323         info before marshalling params (info computation affects
13324         blittable)
13325
13326         * class.c (class_compute_field_layout): correctly deal with
13327         blittable
13328         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
13329         value types (as per what windows dows by default)
13330         (mono_class_setup_mono_type): System.ValueType is blittable
13331         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
13332         blittable
13333
13334         * marshal.c (mono_marshal_load_type_info): flag types  as
13335         non-blittable if the native layout doesn't match the managed
13336         layout
13337
13338 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13339
13340         * appdomain.c: don't add stuff in the private search path that is
13341         above the application base. If application base is not set, there's
13342         no private search path.
13343
13344 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
13345
13346         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
13347         byref struct arguments in native->managed marshalling.
13348
13349 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
13350
13351         * marshal.c (mono_marshal_get_runtime_invoke): correctly
13352         cache methods using signature (special case for methods
13353         that are value type or string class)
13354         
13355         * image.c (mono_image_close): clean up allocated GSList's
13356         in runtime_invoke_cache.
13357
13358 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13359
13360         * mono-config.c: set the correct path for mono_cfg_dir on windows when
13361         there's no MONO_CFG_DIR environment variable defined.
13362
13363 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13364
13365         * threads.c: windows version must be >= 0x0500 to include OpenThread.
13366
13367 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
13368
13369         * threadpool.c: Really wait for 500ms after the async call, even if the wait
13370           is interrumped.
13371         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
13372           before waiting for it, and call CloseHandle after the wait to unref it.
13373           This will make sure that handles are not disposed too early.
13374
13375 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13376
13377         * appdomain.c:
13378         * appdomain.h:
13379         * icall.c: removed
13380         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
13381         needed now.
13382
13383         * object.c: se the application_base only for the domain that runs
13384         Main. Fixes bug #59216,
13385
13386 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13387
13388         * appdomain.c:
13389         * object.c: only the domain in which Main is run have
13390         SetupInformation.ConfigurationFile set, so moved a few lines from
13391         appdomain.c to object.c.
13392
13393 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13394
13395         * appdomain.c: we tried to load [name].(dll|exe), but according
13396         to bug #57710, we must also try [culture]/[name].(dll|exe) and
13397         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
13398         There's a test case attached to bug #58922.
13399
13400 2004-05-27  Dick Porter  <dick@ximian.com>
13401
13402         * icall.c:
13403         * file-io.c: Implemented icalls for locking and unlocking regions
13404         in a file.
13405         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
13406         FALSE on error (fixes both compiler warning and real bug.)
13407
13408 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
13409
13410         * culture-info-tables.h: reflecting locale-builder updates.
13411
13412           (Added missing ChangeLog entry for 05/26)
13413
13414 2004-05-27  Jackson Harper  <jackson@ximian.com>
13415
13416         * locales.c: Fix some cut and paste errors.
13417         
13418 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13419
13420         * mono-config.c: set the correct path for config. directory on windows.
13421
13422 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
13423
13424         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
13425           on win32.
13426
13427 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
13428
13429         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
13430         from pinvoke functions.
13431         
13432         * marshal.c (mono_ftnptr_to_delegate): Implement this.
13433
13434 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
13435
13436         * culture-info-tables.h: reflecting locale-builder updates.
13437
13438 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
13439
13440         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
13441         #59086.
13442
13443 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
13444
13445         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
13446         * icall.c: Modified icalls for RNG.
13447         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
13448         Windows (CryptoAPI).
13449
13450 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
13451
13452         * locales.c: Fix build.
13453
13454 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
13455
13456         * culture-info-tables.h: reflecting locale-builder updates.
13457
13458 2004-05-25  Jackson Harper  <jackson@ximian.com>
13459
13460         * locales.c: When creating the current culture use the $LANGs
13461         specific culture. So DateTimeFormat and NumberFormat entries are created.
13462         
13463 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
13464
13465         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
13466         a char array as parameter.
13467
13468 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
13469
13470         * image.c: In mono_image_open(), always use an absolute path name to
13471           look for already loaded images.
13472
13473 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
13474
13475         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
13476         missing in the windows build (like older cygwin include files).
13477
13478 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
13479
13480         * icall.c: Fixed check for possible integer overflow in Buffer_
13481         BlockCopy icall. Replaced comments style // by /* */.
13482
13483 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
13484
13485         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
13486         
13487         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
13488         check after MONO_VTADDR. Fixes pinvoke2.exe.
13489
13490         * marshal.h marshal.c metadata.h: Add beginnings of support for
13491         ftnptr -> delegate marshalling.
13492
13493 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
13494
13495         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
13496         * threads.c: Fix warnings.
13497
13498 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
13499
13500         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
13501         * icall.c: Registered icalls for Suspend and Resume.
13502         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
13503           Thread.Abort.
13504         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
13505         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
13506         * process.c: Use WaitForSingleObjectEx.
13507         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
13508           checkpoints.
13509         * threads.c, threads.h: Make use of new Ex wait methods. Improved
13510           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
13511           for Suspend and Resume. Added new mono_thread_stop, used for stoping
13512           background threads. Added basic support for Abort in Windows.
13513           Start new threads using a managed delegate invoke wrapper. This wrapper
13514           has an interruption checkpoint that is needed since an interruption
13515           can be requested before the thread leaves the unmanaged code that starts 
13516           the thread.
13517         * marshal.c: Added interruption checkpoint after every native call, and
13518           also before managed calls for wrappers called from unmanaged code to
13519           go into managed code.
13520         * object.h: Added new field in MonoThread to keep track of interruption
13521           requests.
13522
13523 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
13524
13525         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
13526         calls.
13527
13528 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13529
13530         * appdomain.c:
13531         * assembly.c:
13532         * gc.c:
13533         * locales.c:
13534         * mono-config.c:
13535         * rand.c: getenv -> g_getenv (windows!)
13536
13537         * process.c: complete_path is also used on non-windows platforms.
13538
13539 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13540
13541         * icall.c: new signature for Process_Start.
13542
13543         * process.[ch]: new signature for Process_Start. If we're on windows
13544         and UseShellExecute is false, we have to search for the program by
13545         ourselves if we don't get a full path.
13546
13547 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
13548
13549         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
13550         marshalling and call CleanUpNativeData if needed. Fixes #58646.
13551
13552 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13553
13554         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
13555         Fixes bug #58373.
13556
13557 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13558
13559         * process.c: use double quotes to quote program name and arguments on
13560         windows. Fixes bug #58575.
13561
13562 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13563
13564         * file-io.c: don't return "." and ".." when using windows Find*File.
13565
13566 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
13567
13568         * marshal.c: Don't pass wrappers to message init because method 
13569         addressed used to lookup metadata. part of remoting[2|3] fix.
13570
13571 2004-05-15  Jackson Harper  <jackson@ximian.com>
13572
13573         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
13574         path is essentially the same as MONO_PATH except that it points to
13575         GACs instead of lib directories.
13576         * loader.h: The user gac is gone so we dont need function to
13577         enable/disable it.
13578         * mono-config.c: user gac option is now gone.
13579         
13580 2004-05-15  Jackson Harper  <jackson@ximian.com>
13581
13582         * culture-info.h: Make defines more consistent, add calendar data
13583         to the culture info table.
13584         * culture-info-tables.h: Add basic calendar data. Basically
13585         everyone gets default gregorian until all the data is
13586         updated.
13587         * locales.c: Use the new consistent defines. Set calendar data for
13588         culture info objects.
13589         * object.h: add a field for calendar data to CultureInfo
13590         
13591 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
13592
13593         * image.c: image->runtime_invoke_cache is keyed on signatures now.
13594         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
13595         a signature.
13596         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
13597         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
13598         an extra param that is the pointer of the method to invoke. The IL for
13599         the invoke method is no longer specific to the method, but to the
13600         signature of the method. Thus, we can share the same code for multiple
13601         methods. This reduces the number of methods that have to be compiled.
13602
13603 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
13604
13605         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
13606
13607         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13608
13609         * icall.c: Optimize Buffer.BlockCopy.
13610
13611 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13612
13613         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
13614         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
13615         quote). Changed them to "MMMM yyyy".
13616
13617 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
13618
13619         * rand.c
13620         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
13621
13622 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
13623
13624         * reflection.h: Updated after changes to managed structures.
13625
13626         * appdomain.c: Bump corlib version.
13627
13628 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13629
13630         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
13631         windows.
13632
13633 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13634
13635         * Makefile.am: link to ../os/libmonoos.la on windows.
13636
13637         * assembly.c:
13638                 -If MONO_DEBUG, warn about non-existing directories in
13639                 MONO_PATH.
13640                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
13641                 compile time variable.
13642                 -Removed init_default_path and call mono_set_rootdir from
13643                 libmonoos.a instead (windows only).
13644
13645         * assembly.h: declare mono_assembly_getrootdir().
13646
13647         * domain.c:
13648         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
13649
13650         * loader.c: s/getenv/g_getenv/
13651
13652 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
13653
13654         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
13655
13656         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
13657
13658         * metadata.h: Add new marshalling conversions.
13659
13660         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
13661         function.
13662
13663         * reflection.c (mono_reflection_get_type): Lookup the type in all
13664         modules of a multi-module assembly. Fixes #58291.
13665
13666 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
13667
13668         * threads.c: Before aborting a background, set the StopRequested
13669         state.  This avoids throwing the Abort exception.
13670         In mono_thread_manage, don't continue with the shutdown until all
13671         aborted threads have actually stopped.
13672
13673 2004-05-10  Jackson Harper  <jackson@ximian.com>
13674
13675         * locales.c: Remove the modifier from culture names.
13676         
13677 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13678
13679         * Makefile.am: monosn is not installed any more. It has been deprecated
13680         in favor of sn.
13681
13682 2004-05-07  Jackson Harper  <jackson@ximian.com>
13683
13684         * locales.c
13685         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
13686         Fix array construction, add bailout if the length is 0.
13687
13688 2004-05-07  Dick Porter  <dick@ximian.com>
13689
13690         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
13691         machine doesn't have a DNS entry.  Patch by Urs Muff
13692         (umuff@quark.com), fixes bug 57928.
13693
13694 2004-05-06  Jackson Harper  <jackson@ximian.com>
13695
13696         * reflection.c: Handle null PublicTokens properly. alloc mem for
13697         assembly names culture so we dont crash when freeing it.
13698         
13699 2004-05-06  Jackson Harper  <jackson@ximian.com>
13700
13701         * assembly.c: Check the usergac when loading with partial names.
13702         
13703 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
13704
13705         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
13706         does nothing for now (not required for Linux/Windows) but the class
13707         library can call it (and a newer or modified runtime could need it).
13708         * icall.c: Registred icall.
13709
13710 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13711
13712         * loader.c: prints a message on module loading error we set MONO_DEBUG
13713         environment variable.
13714
13715 2004-05-05  Jackson Harper  <jackson@ximian.com>
13716
13717         * appdomain.c: Handle PublicKeyToken=null properly.
13718         
13719 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
13720
13721         * environment.c|h: Added icall ves_icall_System_Environment_
13722         GetOSVersionString to get the current OS version as a string.
13723         * icall.c: Registred icall.
13724
13725 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
13726
13727         * object.c: in mono_object_get_virtual_method(), take into account that
13728         non-virtual methods don't have a slot in the vtable. Check needed when
13729         the object is a proxy.
13730
13731 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
13732
13733         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
13734         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
13735
13736         * object.c (mono_class_compute_gc_descriptor): Fix warning.
13737
13738         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
13739         passed when a valuetype is expected.
13740
13741         * object.c (mono_unhandled_exception): Only set the exit code if the
13742         exception happens in the main thread. Fixes thread5.exe.
13743
13744         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
13745         invalid names. Fixes #58047.
13746
13747 2004-05-03  Jackson Harper  <jackson@ximian.com>
13748
13749         * assembly.c: This line was committed accidently and is unneeded.
13750         
13751 2004-05-03  Jackson Harper  <jackson@ximian.com>
13752
13753         * icall.c: Add new icall for Assembly::LoadWithPartialName
13754         * assembly.c/.h: new function that probes the GAC to load partial
13755         assembly names by Paolo Molaro.
13756         
13757 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13758
13759         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
13760         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
13761         (type_get_fully_qualified_name): Added PublicKeyToken when building a
13762         full type name.
13763
13764 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13765
13766         * appdomain.c: fixed check for 'neutral' culture and removed warning.
13767         * reflection.c: fix bug when parsing a full type name and Version is not
13768         the last thing in the string.
13769
13770 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
13771
13772         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
13773         crashes when it is freed.
13774
13775 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13776
13777         * assembly.c: print the compat warning to stderr.
13778
13779 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
13780
13781         * assembly.c (mono_assembly_load_references): Add a compatibility
13782         hack to run old applications that might be still referencing the
13783         3300-based assemblies, only do this for System.xxx.
13784
13785 2004-05-01  Jackson Harper  <jackson@ximian.com>
13786
13787         * appdomain.c: If the culture is neutral we set it to "".
13788         
13789 2004-04-29  Jackson Harper  <jackson@ximian.com>
13790
13791         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
13792
13793 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
13794  
13795         * string-icalls.c: added low overhead function for copying chars
13796         * icall.c: added needed icall for the above function
13797  
13798 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13799
13800         * icall.c: fix return value of get_global_assembly_cache.  Implemented
13801         Environment.GetLogicalDrives.
13802
13803 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
13804
13805         * rand.c: try and talk to egd or prngd
13806         for random bytes if opening devices fail.
13807
13808 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
13809
13810         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
13811         alignment for the type using the native alignment of its members 
13812         instead of using klass->min_align.
13813
13814         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
13815
13816 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13817
13818         * file-io.c:
13819         * socket-io.c: added check for sys/aio.h.
13820
13821 2004-04-28  Dick Porter  <dick@ximian.com>
13822
13823         * threads.c: Don't abort a thread thats already aborting, when
13824         terminating everything.
13825
13826 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13827
13828         * icall.c: added 2 new async calls for Socket.
13829
13830         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
13831         IO on *nix systems.
13832
13833         * threadpool.c: removed unused variable.
13834
13835 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
13836
13837         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
13838
13839 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
13840
13841         * locales.c: put back string_invariant_tolower () and
13842         string_invariant_toupper ().
13843
13844 2004-04-26 David Waite <mass@akuma.org>
13845
13846         * file-io.h:
13847         * socket-io.h:
13848         * threads.h:
13849         * unicode.h: remove comma from end of enumeration declarations
13850
13851 2004-04-26 David Waite <mass@akuma.org>
13852
13853         * debug-mono-symfile.h:
13854         * decimal.c:
13855         * mono_debug.h:
13856         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
13857
13858
13859 2004-04-26  Jackson Harper  <jackson@ximian.com>
13860
13861         * appdomain.c: Increment version number.
13862         
13863 2004-04-26  Jackson Harper  <jackson@ximian.com>
13864
13865         * appdomain.c: Set assembly references public token value when
13866         PublicKeyToken is specified, not the hash_value. Free public token
13867         values when free assembly name data. Previously the public key
13868         token was hex decoded, however we are using hex encoded public key
13869         tokens, so this is not neccasary.
13870         * assembly.c: Lookup assemblies in the gac if their public token
13871         value is set. Add function to allow enabling user gac
13872         lookups. Specify whether or not the assembly was loaded from the
13873         GAC. Compare full assembly names when checking the cache for
13874         assemblies (Temporarily disabled see comment in code). Remove
13875         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
13876         specifies trace-loader they get extra info to stdout on the
13877         loading of assemblies.
13878         * image.h: Add a field for an assembly references public token
13879         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
13880         whether an assembly has been loaded from the GAC.
13881         * image.c: Remove a corlib -> mscorlib name mapping.
13882         * loader.h: Add function to enable/disable the user gac.
13883         * mono-config.c: Check if the usergac is enabled in the config
13884         file.
13885         * icall.c: New icall to determine whether or not an assembly has
13886         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
13887         * tabldefs.h: Add constant for assemblyref flag that specifies a
13888         full public key is used instead of a public token.
13889         * reflection.c: Remove mscorlib -> corlib mappings. Set
13890         PublicTokenValue instead of hash value. This value is a hex
13891         string so it does not need to be expanded.
13892
13893 2004-04-26  Martin Baulig  <martin@ximian.com>
13894
13895         * mono-debug-debugger.c (mono_debugger_initialize): Set
13896         `mono_debugger_initialized' before calling mono_debug_lock().
13897
13898 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
13899
13900         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
13901           InternalToUpper/InternalToLower.
13902         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
13903           removed invariant culture shortcut.  This is now done in managed code.
13904         * locales.c: (string_invariant_toupper/tolower) removed.
13905
13906 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13907
13908         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
13909         Added Poll internal call.
13910
13911         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
13912         call for Poll. Select was too heavy for polling a single socket.
13913
13914         * threadpool.[ch]: added mono_threadpool_cleanup.
13915         * threads.c: use it. Don't use Thread_Abort on windows.
13916
13917 2004-04-23  Martin Baulig  <martin@ximian.com>
13918
13919         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
13920
13921 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
13922
13923         * icall.c: Registred new icalls for key pair protection and added an
13924         icall for Environment.GetFolderPath on Windows.
13925         * security.c|h: Added new icalls for key pair protection.
13926
13927 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13928
13929         * socket-io.c: don't display the non-supported family warning for known
13930         families. Now this is not displayed on windows when checking support
13931         for IPv4/IPv6.
13932
13933 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13934
13935         * class.c: don't display the layout warning for static fields.
13936
13937 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
13938
13939         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
13940         * locales.c, locales.h: Added new icalls for culture-specific
13941         Char.ToLower and Char.ToUpper.
13942
13943 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13944
13945         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
13946         by David Waite.
13947
13948 2004-04-20  Martin Baulig  <martin@ximian.com>
13949
13950         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
13951         of the type name before passing it to mono_reflection_type_from_name().
13952
13953 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
13954
13955         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
13956         encodings here. Fixes #56965.
13957
13958 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
13959
13960         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
13961         fix test on strstr result not that I can see anything that
13962         relies on the result.
13963
13964 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
13965
13966         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
13967         Fixes #57081.
13968
13969         * marshal.c (mono_marshal_get_string_encoding): New helper function.
13970
13971         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
13972         function to determine which marshalling to use for strings. Fixes
13973         #56965.
13974
13975         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
13976
13977         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
13978
13979 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
13980
13981         * icall.c: #include mono-config.h
13982
13983 2004-04-15  Jackson Harper  <jackson@ximian.com>
13984
13985         * culture-info-tables.h: Fix date formats for en-US culture.
13986         
13987 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
13988
13989         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
13990         ThreadPool.SetMinThreads.
13991         * threadpool.c: Implemented ThreadPool.GetMinThreads and
13992         ThreadPool.SetMinThreads.
13993
13994 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
13995
13996         * mono-config.c: also load the .config file in the directory
13997         where the assembly was found.
13998
13999 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
14000
14001         * assembly.c: load per-assembly config files.
14002         * icall.c: decrapified code to get the config dir and moved to
14003         mono-config.c.
14004         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
14005         per-assembly config files. When doing a dll map lookup give precedence
14006         to the per-assembly data.
14007
14008 2004-04-14  Martin Baulig  <martin@ximian.com>
14009
14010         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
14011         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
14012         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
14013
14014         * mono-debugger-debugger.c: While the debugger is locked, remember
14015         whether the symbol tables have changes and send one single
14016         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
14017
14018 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
14019
14020         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
14021
14022         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
14023         function.
14024
14025         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
14026         account when marshalling string arrays. Fixes #56965.
14027
14028 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
14029
14030         * icall.c: Add new icalls mapping for security.
14031         * security.c|h: Add internal calls for WindowsIdentity,
14032         WindowsImpersonationContext and WindowsPrincipal.
14033
14034 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
14035
14036         * class.c: Added comment to ensure the System.MonoDummy class
14037         is removed when no longer necessary
14038
14039 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
14040
14041         * appdomain.c: Pass arguments to the bootstraping exceptions to
14042         minimize JITed methods at boot
14043
14044         * metadata.c (mono_exception_from_name_two_strings): Allow for the
14045         second string to be null.
14046
14047         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
14048         Change the protocol to minimize the JIT methods at startup.  Now
14049         it Returns the internal codepage, if the value of "int_code_page"
14050         is 1 at entry, and we can not compute a suitable code page
14051         number, returns the code page as a string.
14052
14053 2004-04-13  Jackson Harper  <jackson@ximian.com>
14054
14055         * culture-info-tables.h: Fix number of decimal digits for all
14056         english locales.
14057
14058 2004-04-13  Jackson Harper  <jackson@ximian.com>
14059
14060         * icall.c: Clairfy out of sync error message. It is not always
14061         your corlib that is out of sync.
14062
14063 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
14064
14065         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
14066         properties when only the set accessor is overriden. Fixes #55874.
14067
14068 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
14069
14070         * assembly.c (mono_assembly_load_references): Make this thread safe.
14071         Fixes #56327.
14072
14073 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
14074
14075         * monosn.c: Add missing initialization calls.
14076
14077 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
14078
14079         * locales.c:
14080         ves_icall_System_Globalization_CultureInfo_construct_number_format
14081         Fix g_assert so it compiles on fussier compilers re int/ptr
14082         mismatch
14083
14084 2004-04-08  Dick Porter  <dick@ximian.com>
14085
14086         * socket-io.h:
14087         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
14088         53992.  Also rearrange the code so that the internal calls return
14089         an error value and exceptions are thrown from managed code.
14090
14091         * icall.c: Add type info to the socket icalls.
14092
14093 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14094
14095         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
14096         owes me a beer.
14097
14098 2004-04-07  Martin Baulig  <martin@ximian.com>
14099
14100         * class.c (mono_class_from_generic_parameter): Don't default
14101         `klass->parent' to `mono_defaults.object_type'.
14102
14103 2004-04-07  Martin Baulig  <martin@ximian.com>
14104
14105         * reflection.c (mono_reflection_initialize_generic_parameter): Set
14106         `param->pklass->reflection_info'.       
14107
14108 2004-04-07  Jackson Harper  <jackson@ximian.com>
14109
14110         * culture-info-tables.h: Fix date separator symbol.
14111         
14112 2004-04-07  Martin Baulig  <martin@ximian.com>
14113
14114         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
14115         from System.Type to System.MonoType.
14116
14117 2004-04-07  Martin Baulig  <martin@ximian.com>
14118
14119         * reflection.h
14120         (MonoReflectionGenericParam): Added `has_reference_type' and
14121         `has_value_type' fields.
14122
14123         * reflection.c (mono_image_get_generic_param_info): Encode the
14124         correct flags if we have the `class' or `struct' constraint.
14125
14126 2004-04-07  Martin Baulig  <martin@ximian.com>
14127
14128         * reflection.h
14129         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
14130
14131 2004-04-07  Jackson Harper  <jackson@ximian.com>
14132
14133         * appdomain.c: Revert extra patches, just wanted to bump the
14134         version number.
14135         
14136 2004-04-07  Jackson Harper  <jackson@ximian.com>
14137
14138         * Makefile.am: Add culture-info private headers.
14139         * icall.c: Add new icalls for contructing locales.
14140         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
14141         * locales.h: Declare new culture info construction methods.
14142         * object.h: Add new fields used to avoid the CultureMap to
14143         MonoCultureInfo.
14144         * culture-info.h: Definition of structs used in the culture info
14145         tables.
14146         * culture-info-tables.h: Autogenerated tables that contain culture
14147         info data. This file was generated with the locale-builder tool.
14148         * appdomain.c: Incement corlib version number.
14149         
14150 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
14151
14152         * appdomain.c: (mono_runtime_init) move mono_thread_init
14153         to before mono_object_new calls so critical sections
14154         are initialized before use.
14155
14156 2004-04-07  Martin Baulig  <martin@ximian.com>
14157
14158         * icall.c
14159         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
14160         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
14161         (ves_icall_MonoGenericParam_initialize): Removed.
14162         (monogenericparam_icalls): Removed.
14163         (generictypeparambuilder_icalls): Added new table for
14164         System.Reflection.Emit.GenericTypeParameterBuilder.
14165
14166         * reflection.c
14167         (mono_reflection_define_generic_parameter): Removed.
14168         (mono_reflection_initialize_generic_parameter): This is now called
14169         from GenericTypeParameterBuilder's .ctor.
14170
14171 2004-04-06  Martin Baulig  <martin@ximian.com>
14172
14173         * class.c (mono_class_init): Don't inflate nested classes in a
14174         generic instance.
14175         (mono_type_get_name_recurse): Include the generic arguments for
14176         generic instances and generic type declarations.
14177         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
14178         (_mono_class_get_instantiation_name): Removed.
14179         (mono_class_create_generic): Always use `gklass->name' as our name.
14180
14181         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
14182
14183         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
14184         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
14185         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
14186         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
14187         closed generic methods here.
14188
14189         * reflection.c
14190         (mono_reflection_generic_inst_get_nested_types): Removed.
14191         (inflate_mono_method): Copy the generic parameters from the
14192         MonoMethodHeader into out MonoGenericMethod.
14193
14194 2004-04-06  Martin Baulig  <martin@ximian.com>
14195
14196         * row-indexes.h
14197         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
14198
14199         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
14200
14201         * reflection.c (build_compressed_metadata): If we have any entries
14202         in the GenericParam, MethodSpec or GenericParamConstraint tables,
14203         set the header version to 1.1.
14204
14205 2004-04-06  Martin Baulig  <martin@ximian.com>
14206
14207         * class.c (mono_class_init): If we're a generic instance,
14208         initialize our nested classes, too.
14209         (_mono_class_get_instantiation_name): Deal with the new `!%d'
14210         suffix. 
14211
14212 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14213
14214         * process.c: quote the argument passed to the shell on windows.
14215
14216 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
14217
14218         * threads.c (mono_alloc_special_static_data): Allow this to be
14219         called during startup.
14220
14221 2004-04-02  Martin Baulig  <martin@ximian.com>
14222
14223         * icall.c
14224         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
14225
14226 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
14227
14228         * icall.c: Fix build.
14229
14230 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
14231
14232         * Makefile.am: Added security.c|h.
14233         * icall.c: Added icall for get_UserName;
14234         * security.c: New file for security related icalls. Added function
14235         get_UserName for System.Environment (fix #56144).
14236         * security.h: New. Header file for security.c
14237
14238 2004-04-02  Dick Porter  <dick@ximian.com>
14239
14240         * icall.c: Deleted the icalls that were obsoleted some time ago
14241         by the ICU string code, and which were mixed into the icall
14242         rearranging.  Fixes bug 55969.
14243
14244         * string-icalls.h: 
14245         * string-icalls.c: Deleted the code that those icalls reference.
14246
14247 2004-04-01  Martin Baulig  <martin@ximian.com>
14248
14249         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
14250
14251         * class.c (mono_class_from_generic_parameter): Don't set 
14252         TYPE_ATTRIBUTE_INTERFACE.
14253         (my_mono_class_from_generic_parameter): Likewise.
14254
14255 2004-04-01  Martin Baulig  <martin@ximian.com>
14256
14257         * loader.c (find_method): Added an optional `MonoClass *ic'
14258         argument to search in a specific interface.
14259         (mono_get_method_constrained): New public function.
14260
14261 2004-04-01  Martin Baulig  <martin@ximian.com>
14262
14263         * reflection.c (mono_image_get_generic_field_token): Use the
14264         `handleref' cache here.
14265
14266 2004-04-01  Martin Baulig  <martin@ximian.com>
14267
14268         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
14269
14270         * reflection.c (create_generic_typespec): Use the `typespec' hash
14271         here, not the `typeref' one.    
14272
14273 2004-04-01  Martin Baulig  <martin@ximian.com>
14274
14275         * class.c (mono_class_inflate_generic_type): Moved the
14276         functionality into a new static inflate_generic_type() which
14277         returns NULL if it didn't do anything.  Only increment the
14278         `mono_stats.inflated_type_count' if we actually inflated
14279         something.
14280         (mono_class_get_full): Check the classes type to see whether we
14281         need to inflate it; also inflate MONO_TYPE_(M)VAR.
14282
14283 2004-04-01  Jackson Harper  <jackson@ximian.com>
14284
14285         * reflection.c: Set culture for assembly references.
14286         
14287 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
14288
14289         * reflection.[ch], icall.[ch], Fix support for pinning variables.
14290
14291 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14292
14293         * assembly.c:
14294         (do_mono_assembly_open): the critical section also covers
14295         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
14296
14297 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14298
14299         * threads.c:
14300         (mono_manage_threads): abort the background threads when finishing.
14301         Fixes bug #47232.
14302
14303 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14304
14305         * gc.c: only close the done_event handle if there was no timeout.
14306         C-ified comments.
14307
14308 2004-03-30  Martin Baulig  <martin@ximian.com>
14309
14310         * icall.c (icall_entries): It's called "System.Activator", not
14311         "System.Activation".    
14312
14313 2004-03-30  Martin Baulig  <martin@ximian.com>
14314
14315         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
14316         (mono_class_create_from_typespec): Likewise.
14317
14318 2004-03-30  Martin Baulig  <martin@ximian.com>
14319
14320         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
14321         `has_ctor_constraint' and `initialized'.
14322
14323 2004-03-30  Martin Baulig  <martin@ximian.com>
14324
14325         * reflection.c (encode_new_constraint): New static function to add
14326         the constructor constraint attribute to a type parameter.
14327         (encode_constraints): Call encode_new_constraint() if necessary.
14328
14329         * reflection.h
14330         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
14331
14332         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
14333         
14334 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
14335
14336         * reflection.c, icall.c: add support for pinning variables. 
14337
14338 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
14339
14340         * marshal.c (mono_marshal_get_managed_wrapper):
14341         init bool local with zero rather than null.
14342
14343 2004-03-29  Martin Baulig  <martin@ximian.com>
14344
14345         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
14346         the "official" behavior here.
14347         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
14348
14349 2004-03-29  Martin Baulig  <martin@ximian.com>
14350
14351         * icall.c: Reflect latest API changes.
14352
14353 2004-03-29  Martin Baulig  <martin@ximian.com>
14354
14355         * loader.c (mono_get_method_from_token): Also call
14356         mono_metadata_load_generic_params () for abstract and interface
14357         methods; replace the type arguments in the method signature with
14358         the ones which are loaded from the metadata.
14359
14360 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
14361
14362         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
14363         of the lock is not the current thread. MS.NET don't do it, in spite of
14364         what the documentation says. See bug #56157.
14365
14366 2004-03-28  Martin Baulig  <martin@ximian.com>
14367
14368         * class.c (mono_class_init): Don't call init_properties() and
14369         init_events() for generic instances; set `prop->parent' when
14370         inflating properties.
14371
14372         * reflection.c (mono_generic_inst_get_object): Call
14373         `mono_class_init (ginst->klass)'.
14374         (mono_type_get_object): Only create a MonoGenericInst if your
14375         generic type is a TypeBuilder.
14376         (do_mono_reflection_bind_generic_parameters): Only set
14377         `ginst->is_dynamic' if our generic type is a TypeBuilder.
14378
14379 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
14380
14381         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
14382         Fixes #56091.
14383
14384 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14385
14386         * icall.c: added Kill_internal icall.
14387         * process.[ch]: added Kill_internal icall.
14388
14389 2004-03-25  Martin Baulig  <martin@ximian.com>
14390
14391         * class.h (MonoStats): Added `generic_instance_count',
14392         `inflated_method_count', `inflated_type_count' and
14393         `generics_metadata_size'.       
14394
14395 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14396
14397         * reflection.c: no warnings now.
14398
14399 2004-03-25  Martin Baulig  <martin@ximian.com>
14400
14401         * class.c (mono_class_get_full): New public function; does a
14402         mono_class_get(), but also takes a `MonoGenericContext *'.
14403
14404         * loader.c (mono_field_from_memberref): Renamed to
14405         `field_from_memberref', made static and added `MonoGenericContext *'
14406         argument.
14407         (mono_field_from_token): Added `MonoGenericInst *' argument.
14408         (method_from_memberef): Likewise.
14409         (mono_get_method_from_token): Likewise.
14410         (mono_get_method_full): New public function; does a
14411         mono_get_method(), but also takes a `MonoGenericContext *'.
14412
14413         * verify.c (mono_method_verify): Get the method's generic context
14414         and pass it to mono_field_from_token(), mono_get_method_full() and
14415         mono_class_get_full().
14416
14417 2004-03-25  Martin Baulig  <martin@ximian.com>
14418
14419         * class.c (mono_class_inflate_generic_type): Take a
14420         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
14421         `MonoGenericMethod *'.
14422
14423 2004-03-25  Martin Baulig  <martin@ximian.com>
14424
14425         * loader.h (MonoMethodInflated): Store the MonoGenericContext
14426         instead of the MonoGenericMethod here.
14427
14428 2004-03-25  Martin Baulig  <martin@ximian.com>
14429
14430         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
14431         each time we create a new MonoGenericInst, we also create a new
14432         context which points back to us.
14433
14434         * class.c (inflate_method): Use `ginst->context' instead of
14435         creating a new context.
14436
14437         * loader.c (method_from_memberref): Use
14438         `klass->generic_inst->context' instead of creating a new context.
14439
14440 2004-03-25  Martin Baulig  <martin@ximian.com>
14441
14442         * class.h (MonoGenericContext): New struct.
14443         (MonoGenericMethod): Removed `generic_inst'.
14444
14445         * class.c (mono_class_inflate_generic_method): Take a
14446         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
14447
14448 2004-03-25  Martin Baulig  <martin@ximian.com>
14449
14450         * loader.h (MonoMethodInflated): New typedef.
14451
14452         * metadata.h (MonoMethodSignature): Removed `gen_method', make
14453         `generic_param_count' consume just 30 bits, added `is_inflated'
14454         and `has_type_parameters' flags (one bit each).
14455
14456         * class.c (mono_class_inflate_generic_method): Create a
14457         MonoMethodInflated instead of a MonoMethodNormal and set
14458         `is_inflated' in the method signature.
14459
14460         * class.h (MonoGenericMethod): Removed `generic_method'.
14461
14462 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
14463
14464         * image.c: Make sure the name of a MonoImage is always an absolute path.
14465           This fixes bug #54415.
14466
14467 2004-03-24  Martin Baulig  <martin@ximian.com>
14468
14469         * class.c (mono_class_setup_vtable): If we're a generic instance,
14470         use our generic type's vtable size.
14471
14472 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
14473
14474         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
14475         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
14476         problems.
14477
14478 2004-03-23  Martin Baulig  <martin@ximian.com>
14479
14480         * class.h (MonoDynamicGenericInst): Added `int count_events' and
14481         `MonoEvent *events'.
14482
14483         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
14484         (typebuilder_icalls): Added "get_event_info"; calls
14485         mono_reflection_event_builder_get_event_info(). 
14486
14487         * reflection.c (mono_reflection_generic_inst_initialize): Added
14488         `MonoArray *events'.
14489         (mono_reflection_event_builder_get_event_info): New function.
14490
14491 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
14492
14493         * object.h: add mono_type_initialization_init
14494
14495         * object.c (mono_runtime_class_init): 
14496         implement class constructor synchronization rules
14497         to cope with threading issues.  
14498         add mono_type_initialization_init
14499
14500         * appdomain.c (mono_runtime_init): call 
14501         mono_type_initialization_init
14502
14503         * class.h: removing initializing field from MonoVTable
14504
14505 2004-03-23  Martin Baulig  <martin@ximian.com>
14506
14507         * class.c (my_mono_class_from_generic_parameter): Use
14508         `param->name' if it's not NULL. 
14509
14510 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
14511
14512         * class.c: do not insert non-virtual methods in the vtable.
14513         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
14514         that means the method is non-virtual. This never would have
14515         happened before.
14516
14517 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
14518
14519         * profiler.c: Added lock for accessing coverage_hash.
14520
14521 2004-03-22  Martin Baulig  <martin@ximian.com>
14522
14523         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
14524         `method->method->signature->generic_param_count != 0' to make it
14525         work for interface methods.
14526
14527 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14528
14529         * process.c: quote the string passed to the shell using g_shell_quote.
14530
14531 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14532
14533         * threads.c:
14534         (mono_threads_manage): don't remove the finalizer thread and self
14535         from the threads hash table so that mono_thread_manage can be called
14536         more than once.
14537
14538 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14539
14540         * process.c: quote the arguments when UseShellExecute is true. Fixes
14541         bug #55790.
14542
14543 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14544
14545         * threads.c: set mono_thread_detach as a cleanup routine for every
14546         thread. This way it's always executed upon thread termination, either
14547         aborted or finished normally. No more xsp hangs!
14548
14549 2004-03-17  Martin Baulig  <martin@ximian.com>
14550
14551         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
14552         `int count_nested' and a `MonoType **nested'.
14553
14554         * reflection.c (mono_reflection_bind_generic_parameters): Moved
14555         most of the functionality into a new static
14556         do_mono_reflection_bind_generic_parameters() and don't take a
14557         `MonoType *nested_in' argument any more.  Don't compute nested
14558         types here.
14559         (mono_reflection_generic_inst_get_nested_types): New public method
14560         to get nested types.
14561
14562         * class.c (mono_class_create_generic): Set `klass->nested_in' if
14563         we're a nested class.
14564
14565         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
14566         mono_reflection_generic_inst_get_nested_types() to compute the
14567         nested types.
14568
14569 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
14570
14571         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
14572         descriptive error message under windows.
14573         
14574 2004-03-17  Martin Baulig  <martin@ximian.com>
14575
14576         * class.c (dup_type): Added `const MonoType *original' argument;
14577         copy the attrs from the original type.
14578
14579 2004-03-17  Martin Baulig  <martin@ximian.com>
14580
14581         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
14582         `m->generic_inst_cache' here.
14583
14584 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
14585
14586         * exception.h exception.c: Add stack_overflow_exception.
14587
14588 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14589
14590         * threadpool.c:
14591         (overlapped_callback): call SetEvent *after* invoking the callback.
14592         No need to call CloseHandle.
14593
14594 2004-03-16  Martin Baulig  <martin@ximian.com>
14595
14596         * reflection.c (mono_image_get_fieldref_token): Take a
14597         `MonoReflectionField *' instead of a `MonoClassField *' and a
14598         `MonoClass *'; store the `MonoReflectionField *' in the hash.
14599
14600 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14601
14602         * appdomain.c: don't add the culture to the filename we're looking for
14603         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
14604
14605 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14606
14607         * locales.c: don't ignore symbols when doing case insensitive compares.
14608         Thanks Dick! Fixes bug #54046.
14609
14610         * threads.c: surround 'threads' usage with enter/leave in
14611         mono_thread_manage.
14612
14613 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
14614
14615         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
14616         implicitly marshalled as [Out]. Fixes #55450.
14617
14618         (mono_marshal_get_runtime_invoke): Zero out the result if there is
14619         an exception.
14620
14621 2004-03-16  Martin Baulig  <martin@ximian.com>
14622
14623         * class.c (mono_class_from_generic_parameter): Use the actual
14624         parameter name. 
14625
14626 2004-03-16  Martin Baulig  <martin@ximian.com>
14627
14628         * reflection.c (type_get_signature_size): New static function.
14629         Compues the size of the type in a method signature.
14630         (method_get_signature_size): New static function; calls
14631         type_get_signature_size() to compute the actual size of the
14632         method's signature.
14633         (method_encode_signature): Use method_get_signature_size() to get
14634         the signature's size rather than using `nparams * 10'.
14635
14636 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14637
14638         * file-io.h: define here WapiOverlapped on windows. I don't want the
14639         regular OVERLAPPED one.
14640
14641         * file-io.c:
14642         * threadpool.c: somehow, BindIoCompletionCallback is not found.
14643         Disabling AIO on windows.
14644
14645 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14646
14647         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
14648         bug #55385.
14649
14650 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14651
14652         * appdomain.c: upgraded corlib version.
14653
14654         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
14655         and BeginWrite. Allow opening files for asynchrnous operations.
14656
14657         * file-io.h: new struct that maps FileStreamAsyncResult.
14658         * icall.c: added new icalls.
14659         * process.[ch]: support setting child process environment variables
14660         and use the SHELL or COMSPEC when UseShellExecute is true.
14661
14662         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
14663         callback for async. IO is here and also BindHandle.
14664
14665         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
14666         from here.
14667
14668 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
14669
14670         * reflection.c (create_custom_attr): Allow len == 0.
14671
14672         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
14673         computation on big-endian machines.
14674
14675 2004-03-13  Martin Baulig  <martin@ximian.com>
14676
14677         * class.h (MonoGenericInst): Added `int count_ifaces'.
14678
14679         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
14680         `ginst->count_ifaces' instead `klass->interface_count' since we
14681         may get called before the vtable is created.
14682
14683         * loader.c (mono_method_get_param_names): If we're a generic
14684         instance, return and don't initialize the class.
14685
14686         * reflection.c (mono_reflection_setup_generic_class): Don't call
14687         ensure_runtime_vtable().
14688         (mono_reflection_bind_generic_parameters): Set
14689         `ginst->count_ifaces'.
14690
14691 2004-03-11  Jackson Harper <jackson@ximian.com>
14692
14693         * icall.c:
14694         * unicode.c:
14695         * unicode.h: Remove unused System.Char icalls.
14696         
14697 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
14698
14699         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
14700         code when we P/Invoke the first library in Windows.Forms, instead
14701         of when we first open the assembly.
14702
14703         * assembly.c: Drop the lookup from here.
14704
14705 2004-03-10  Martin Baulig  <martin@ximian.com>
14706
14707         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
14708         class for properties, fields and events.  Finally fixes #54945.
14709
14710 2004-03-10  Martin Baulig  <martin@ximian.com>
14711
14712         * metadata.c (mono_metadata_class_equal): New static function;
14713         checks whether two generic instances or two generic parameters are
14714         equal.
14715         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
14716         compare classes.        
14717
14718 2004-03-10  Martin Baulig  <martin@ximian.com>
14719
14720         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
14721
14722         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
14723         argument and write it into the `reflection_info' field.
14724
14725         * icall.c
14726         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
14727         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
14728
14729 2004-03-09  Jackson Harper  <jackson@ximian.com>
14730
14731         * char-conversions.h: use 8 bits for numeric data its all we need
14732         * icall.c: numeric data is only 8 bits now.
14733
14734 2004-03-09  Martin Baulig  <martin@ximian.com>
14735
14736         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
14737
14738         * class.c (init_properties, init_events): Initialize the new
14739         `parent' field.
14740
14741         * reflection.c (typebuilder_setup_properties): Likewise.
14742         (typebuilder_setup_events): Likewise.
14743
14744         * reflection.h (MonoEventInfo): Replaced `parent with
14745         `declaring_type' and `reflected_type'.
14746
14747         * icall.c (ves_icall_get_property_info): Distinguish between
14748         declaring and reflected type.
14749         (ves_icall_get_event_info): Likewise.
14750
14751 2004-03-09  Martin Baulig  <martin@ximian.com>
14752
14753         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
14754         (ves_icall_Type_GetField): Correctly set field->klass.
14755
14756 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
14757
14758         * loader.h: Fix warning.
14759
14760 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
14761
14762         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
14763         library routine if present.  Notice that it will still continue
14764         executing even if its missing, for those working on the Gtk#
14765         edition of Windows.Forms.
14766
14767         * assembly.c (do_mono_assembly_open): If loading the
14768         System.Windows.Forms call mono_loader_wini_init.
14769
14770 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
14771
14772         * class.h: Added MonoRemoteClass struct.
14773         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
14774         function for MonoStrings.
14775         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
14776         Added internal call for getting the proxy type.
14777         * marshal.c: Get the type of transparent proxies from its remote_class.
14778         Added methods that generate the IL for type checks and casts:
14779         mono_marshal_get_isinst, mono_marshal_get_castclass, 
14780         mono_marshal_get_proxy_cancast.
14781         * marshal.h: Declaration of the previous new methods.
14782         * object.c: Added new moethods for creating and updating MonoRemoteClass
14783         instances: mono_remote_class, mono_upgrade_remote_class, 
14784         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
14785         * verify.c: FIx transparent_proxy_fields layout.
14786         * appdomain.c: Bump corlib version.
14787
14788 2004-03-04  Jackson Harper  <jackson@ximian.com>
14789
14790         * icall.c: Add icall to access char conversion tables.
14791         * char-conversions.h: Character conversion tables.
14792         * Makefile.am: Add char-conversions.h private header file.
14793         
14794 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
14795
14796         * appdomain.c (unload_thread_main): Increase unloading timeout to
14797         10 sec as a temporary workaround for Nant problems.
14798
14799 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
14800
14801         * gc.c: Add checks for GC_enable and GC_disable.
14802
14803         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
14804         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
14805         (bug #54988).
14806         
14807 2004-02-27  Martin Baulig  <martin@ximian.com>
14808
14809         * reflection.c (mono_reflection_bind_generic_parameters): Take a
14810         `MonoReflectionType *' instead of a `MonoType *'.
14811
14812 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
14813
14814         * gc.c (run_finalize): Avoid finalizing the object representing the
14815         finalizer thread.
14816         (finalizer_thread): Fix warning.
14817
14818 2004-02-25  Martin Baulig  <martin@ximian.com>
14819
14820         * class.c (_mono_class_get_instantiation_name): Added `int offset'
14821         argument for nested types.
14822         (mono_class_create_generic): Added support for nested generictypes.
14823
14824         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
14825         `GList *nested'.
14826
14827         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
14828
14829         * reflection.c (method_encode_signature): Increase the minimum
14830         value of `size' from 10 to 11.
14831         (mono_reflection_bind_generic_parameters): Take `int type_argc'
14832         and `MonoType **types' arguments instead of the `MonoArray
14833         *types'; added `MonoType *nested_in'.  Recursively instantiate
14834         nested classes. 
14835
14836 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
14837
14838         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
14839         stack_overflow_ex members which are used by exception handling.
14840
14841         * appdomain.c (mono_runtime_init): Initialize the new members.
14842
14843         * gc.c (mono_gc_enable): New helper function.
14844         * gc.c (mono_gc_disable): New helper function.
14845
14846 2004-02-23  Martin Baulig  <martin@ximian.com>
14847
14848         * icall.c: I must have been really stupid - make it actually work
14849         this time ;-)
14850
14851 2004-02-23  Martin Baulig  <martin@ximian.com>
14852
14853         * loader.c (method_from_memberref): Only inflate the method if
14854         it's in another klass.
14855
14856 2004-02-23  Martin Baulig  <martin@ximian.com>
14857
14858         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
14859         (mono_class_init): If we're a generic instance and an interface,
14860         compute `class->interface_id'; also create `class->interfaces'
14861         here and inflate them.
14862
14863         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
14864         `ginst->is_open'.
14865         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
14866
14867         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
14868
14869 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
14870
14871         * reflection.c (method_encode_code): Improved the error message
14872         generated by the exception.
14873
14874 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14875
14876         * icall.c: Martin did not do what he said in the ChangeLog for
14877         2004-02-18, but put back the changes for properties and events.
14878         Commenting those changes out again and adding comment to bug #54518.
14879         
14880         * process.c: removed warning.
14881
14882 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
14883
14884         * marshal.c (emit_struct_conv): Print an error message instead of
14885         asserting when a type does not have the StructLayout attribute.
14886
14887 2004-02-20  Martin Baulig  <martin@ximian.com>
14888
14889         * reflection.c (mono_type_get_object): Also use the cache for
14890         generic instances.
14891         (mono_reflection_bind_generic_parameters): Always compute
14892         `ginst->ifaces'.        
14893
14894 2004-02-20  Martin Baulig  <martin@ximian.com>
14895
14896         * class.h (MonoGenericMethod): Removed `klass'.
14897
14898         * class.c (mono_class_inflate_generic_method): Added `MonoClass
14899         *klass' argument.
14900
14901 2004-02-20  Martin Baulig  <martin@ximian.com>
14902
14903         * reflection.c (method_encode_methodspec): Actually use the
14904         uninflated signature for the memberref.
14905
14906 2004-02-20  Martin Baulig  <martin@ximian.com>
14907
14908         * class.h (MonoGenericMethod): Removed `declaring'.
14909
14910         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
14911         is NULL, compute it here.
14912
14913 2004-02-20  Martin Baulig  <martin@ximian.com>
14914
14915         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
14916
14917         * metadata.c (mono_metadata_generic_inst_hash): New method.
14918         (mono_metadata_generic_inst_equal): New method.
14919
14920         * reflection.c (mono_reflection_bind_generic_parameters): Use the
14921         `klass->image->generic_inst_cache' cache to avoid creating
14922         duplicate MonoGenericInst's.
14923
14924         * class.c (mono_class_inflate_generic_type): Use the cache.
14925
14926 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
14927
14928         * object.c: fixed gc descriptor calculation for embedded valuetypes.
14929
14930 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14931
14932         * icall.c: added Socket.WSAIoctl icall.
14933
14934         * socket-io.[ch]: implemented
14935         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
14936
14937 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
14938
14939         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
14940
14941 2004-02-18  Urs C Muff  <umuff@quark.com>
14942
14943         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
14944         this work on PPC and other big-endian architectures.
14945
14946         * debug-mono-symfile.h: Prepended the names of all the `guint32'
14947         fields with an underscore to make sure they're only accessed by
14948         the read32() macro.
14949
14950 2004-02-18  Martin Baulig  <martin@ximian.com>
14951
14952         * icall.c: Put the klass->refclass changes back for methods and
14953         fields, but not for properties and events.  We're currently not
14954         distinguishing between DeclaringType and ReflectedType for
14955         properties and events, that's what caused the regressions.
14956
14957 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14958
14959         * object.c:
14960         (mono_async_result_new): the handle can be NULL.
14961
14962         * threadpool.c: Use an event instead of a semaphore, don't initialize
14963         it until needed. This saves quite a few semaphores from being created
14964         when using the threadpool.
14965
14966 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
14967
14968         * object.c (mono_string_is_interned_lookup): Fix interning of long
14969         strings. Fixes #54473.
14970
14971         * domain.c (ldstr_equal): Optimize if the two strings are equal.
14972
14973         * icall.c: Revert the klass->refclass changes since they introduce
14974         regressions (bug #54518).
14975
14976 2004-02-18  Martin Baulig  <martin@ximian.com>
14977
14978         * class.c (mono_class_init): If we're a generic instance and don't
14979         come from a TypeBuilder, inflate our members here.
14980         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
14981         (mono_class_create_generic): New public method.
14982         (mono_class_initialize_generic): Removed.
14983         (get_instantiation_name): Renamed to
14984         _mono_class_get_instantiation_name() and made it public.
14985
14986 2004-02-18  Martin Baulig  <martin@ximian.com>
14987
14988         * class.c (mono_class_inflate_generic_type): Clear the new
14989         instance's `nginst->klass' when inflating a generic instance.
14990         (mono_class_is_subclass_of): Added (basic) support for generic
14991         instances.
14992
14993 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
14994
14995         * appdomain.h, domain.c: use a MonoCodeManager instead of a
14996         MonoMempool to hold compiled native code.
14997
14998 2004-02-17  Martin Baulig  <martin@ximian.com>
14999
15000         * class.h (MonoDynamicGenericInst): Added `count_properties' and
15001         `properties'.
15002
15003         * reflection.c (mono_reflection_generic_inst_initialize): Added
15004         `MonoArray *properties' argument.
15005
15006         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
15007
15008 2004-02-17  Martin Baulig  <martin@ximian.com>
15009
15010         * icall.c (ves_icall_Type_GetFields): Renamed to
15011         ves_icall_Type_GetFields_internal() and added a
15012         `MonoReflectionType *rtype' argument; pass it to
15013         mono_field_get_object() to set the field's "reflected" type.
15014         (ves_icall_Type_GetConstructors): Likewise.
15015         (ves_icall_Type_GetEvents): Likewise.
15016         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
15017         argument; pass it to mono_method_get_object() to set the method's
15018         "reflected" type.       
15019
15020 2004-02-17  Martin Baulig  <martin@ximian.com>
15021
15022         * class.h (MonoDynamicGenericInst): New type.
15023         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
15024
15025         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
15026         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
15027         (ves_icall_MonoGenericInst_GetFields): New interncall.
15028
15029         * class.c (mono_class_from_generic): Don't call
15030         mono_class_initialize_generic() if this is a dynamic instance;
15031         ie. it's being created from a TypeBuilder.
15032         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
15033         `class->byval_arg.type'.
15034
15035         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
15036         to `inflate_method' and made static.
15037         (mono_reflection_inflate_field): Removed.
15038         (mono_reflection_generic_inst_initialize): New public method.
15039
15040         * reflection.h (MonoReflectionGenericInst): Removed `methods',
15041         `ctors' and `fields'; added `initialized'.
15042
15043 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
15044
15045         * debug-helpers.c (mono_method_full_name): Fix output for empty
15046         namespaces.
15047
15048 2004-02-12  Martin Baulig  <martin@ximian.com>
15049
15050         * class.h (MonoClassField): Added `MonoType *generic_type'.
15051
15052         * reflection.c (mono_image_get_fieldref_token): Added support for
15053         instantiated generic types.
15054         (field_encode_inflated_field): Removed.
15055         (mono_image_get_inflated_field_token): Removed.
15056         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
15057
15058         * reflection.h (MonoReflectionInflatedField): Removed.
15059
15060 2004-02-12  Martin Baulig  <martin@ximian.com>
15061
15062         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
15063         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
15064
15065         * reflection.c (mono_image_get_methodspec_token): Take a
15066         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
15067         (mono_image_create_token): Check whether we have a
15068         `method->signature->gen_method' and call
15069         mono_image_get_methodspec_token() if appropriate.
15070         (inflated_method_get_object): Removed.
15071         (mono_reflection_bind_generic_method_parameters): Return a
15072         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
15073         (mono_reflection_inflate_method_or_ctor): Likewise.
15074
15075         * reflection.h (MonoReflectionInflatedMethod): Removed.
15076
15077 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
15078
15079         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
15080         for custom valuetype marshalling.
15081
15082         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
15083
15084 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15085
15086         * icall.c: fixed WSAGetLastError_internal name.
15087
15088 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
15089
15090         * threads.c (mono_thread_attach): Allow this to be called multiple
15091         times for a thread.
15092         
15093         * threads.c (build_wait_tids): Do not wait for ourselves.
15094
15095         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
15096         appdomain list is empty.
15097
15098         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
15099         memory returned by mono_string_builder_to_utf16, since it points into
15100         managed memory. Thanks to Bernie Solomon for noticing this.
15101
15102         * icall.c: Add AppDomainSetup icalls.
15103
15104         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
15105
15106         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
15107         types.
15108
15109         * reflection.c (reflection_methodbuilder_to_mono_method): Save
15110         custom attributes to the method_aux struct. Also fix array indexes etc.
15111
15112         * loader.c (mono_method_get_param_names): Make dynamic case work again.
15113         
15114 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
15115
15116         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
15117         (both static and runtime) and reduce startup time.
15118
15119 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
15120
15121         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
15122         AsAny marshalling conversion instead of crashing.
15123
15124         * marshal.c: Fix warnings.
15125
15126 2004-02-09  Martin Baulig  <martin@ximian.com>
15127
15128         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
15129
15130         * reflection.h (MonoReflectionInflatedMethod): Removed the
15131         `declaring' field, it's now in the unmanaged MonoGenericMethod.
15132
15133         * reflection.c (method_encode_methodspec): Removed the `method'
15134         argument; we get it from `gmethod->declaring'.
15135         (inflated_method_get_object): Removed the `declaring' argument.
15136
15137 2004-02-09  Martin Baulig  <martin@ximian.com>
15138
15139         * class.h (MonoGenericMethod): New type.
15140         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
15141         `generic_method'.
15142
15143         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
15144         a `MonoGenericMethod *gen_method' one.
15145
15146         * class.c (mono_class_inflate_generic_type): Take an additional
15147         `MonoGenericMethod * argument.  This is only non-NULL if we're
15148         inflating types for a generic method.   
15149         (mono_class_inflate_generic_signature): Renamed to
15150         inflate_generic_signature() and made static; take a
15151         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
15152         (inflate_generic_header): Take a `MonoGenericMethod *' argument
15153         instead of a `MonoGenericInst *' one.
15154         (mono_class_inflate_generic_method): Likewise.
15155
15156         * reflection.c (encode_generic_method_sig): Take a
15157         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
15158         (method_encode_methodspec): Likewise.
15159         (inflated_method_get_object): Likewise. 
15160
15161         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
15162         field with a `MonoGenericMethod *gmethod' one.  
15163
15164 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
15165
15166         * class.h (mono_class_has_parent): add parens to expansion
15167         so you can ! this.
15168
15169 2004-02-08  Martin Baulig  <martin@ximian.com>
15170
15171         * image.h (MonoImage): Removed `generics_cache'.
15172
15173         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
15174         instead of a `MonoType *' argument; removed the `inflate_methods'
15175         argument.  Don't inflate methods here.
15176
15177         * loader.c (find_method): If it's a generic instance, call
15178         mono_class_init() on the `sclass->generic_inst->generic_type'.
15179
15180         * metadata.c (mono_type_size): Make this work on uninitialized
15181         generic instances; call it on the `ginst->generic_type's class.
15182
15183         * reflection.c (mono_reflection_bind_generic_parameters): Call
15184         mono_class_from_generic() to create the `ginst->klass'.
15185
15186 2004-02-08  Martin Baulig  <martin@ximian.com>
15187
15188         * class.h (MonoClass): Changed type of `generic_inst' from
15189         `MonoType *' to `MonoGenericInst *'.
15190
15191 2004-02-08  Martin Baulig  <martin@ximian.com>
15192
15193         * icall.c (ves_icall_Type_BindGenericParameters): Just call
15194         mono_type_get_object(), this is now creating a `MonoGenericInst'
15195         for MONO_TYPE_GENERICINST.
15196         (ves_icall_MonoGenericInst_GetParentType): Likewise.
15197         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
15198
15199         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
15200         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
15201         (inflated_method_get_object): Added `MonoClass *refclass' argument.
15202         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
15203         and reflected type.
15204
15205         * reflection.h (MonoReflectionInflatedMethod): Removed
15206         `declaring_type' and `reflected_type'.
15207
15208 2004-02-08  Martin Baulig  <martin@ximian.com>
15209
15210         * class.h (MonoGenericInst): Added `MonoType *parent' and
15211         `MonoType **ifaces'.
15212
15213         * reflection.h (MonoReflectionGenericInst): Removed `klass',
15214         `parent' and `interfaces'.
15215
15216         * reflection.c (mono_reflection_bind_generic_parameters): Take a
15217         `MonoType *' argument and return a `MonoType *'.
15218
15219         * icall.c
15220         (ves_icall_MonoGenericInst_GetParentType): New interncall.
15221         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
15222
15223 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
15224
15225         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
15226         valuetype marshalling.
15227
15228 2004-02-06  Martin Baulig  <martin@ximian.com>
15229
15230         * class.c
15231         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
15232         (my_mono_class_from_generic_parameter): Likewise.
15233
15234 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
15235
15236         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
15237         contents of the symbol files lazily.
15238
15239         * object.h (MonoThread): Add 'name' and 'name_len' fields.
15240
15241         * threads.h threads.c icall.c: New icalls for getting and setting the
15242         threads name.
15243
15244 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
15245
15246         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
15247         Raise an exception when the domain is not found.
15248
15249 2004-02-03  Martin Baulig  <martin@ximian.com>
15250
15251         * reflection.c (mono_image_get_methodspec_token): Use the
15252         uninflated signature; fixes gen-33.
15253
15254 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
15255
15256         * gc.c threads.c: Make the finalizer thread a normal managed thread so
15257         the finalizer code can use thread functionality.
15258
15259         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
15260         the finalizer thread.
15261
15262         * threads.c: Make some functions more robust.
15263
15264         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
15265
15266         * metadata.h: Add new marshalling conventions.
15267
15268         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
15269         stringbuilder marshalling. Fixes #53700.
15270
15271         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
15272
15273         * reflection.c (mono_image_get_type_info): Save declarative security
15274         info.
15275
15276         * reflection.c (mono_image_get_field_info): Handle uninitialized 
15277         unmanaged fields as well.
15278
15279         * appdomain.c: Bump corlib version.
15280
15281 2004-02-01  Martin Baulig  <martin@ximian.com>
15282
15283         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
15284         method type arguments.  
15285
15286 2004-01-30  Duncan Mak  <duncan@ximian.com>
15287
15288         * marshal.h: Add prototype for
15289         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
15290         and
15291         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
15292         fix the build.
15293
15294 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
15295
15296         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
15297         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
15298
15299 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
15300
15301         * marshal.c (mono_marshal_get_native_wrapper): Add support for
15302         custom marshalling of valuetypes.
15303
15304         * marshal.c: Fix some warnings.
15305
15306 2004-01-29  Martin Baulig  <martin@ximian.com>
15307
15308         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
15309         for generic method parameters.
15310
15311         * reflection.c (method_encode_methodspec): Write the uninflated
15312         signature into the methodspec table.
15313         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
15314         is always the uninflated method.
15315         (reflection_methodbuilder_to_mono_method): Copy the generic
15316         parameters from the MethodBuilder into `header->gen_params'.
15317
15318 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
15319
15320         * class.c (mono_class_from_generic_parameter): Fix warning.
15321
15322 2004-01-27  Martin Baulig  <martin@ximian.com>
15323
15324         * class.c (mono_class_from_generic_parameter): Don't create
15325         `klass->methods' here.  
15326
15327 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
15328
15329         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
15330         extension since it does not work with libraries named lib<FOO>.dll.so.
15331
15332 2004-01-25  Martin Baulig  <martin@ximian.com>
15333
15334         * class.c (mono_class_inflate_generic_type): Added support for
15335         MONO_TYPE_GENERICINST.
15336
15337         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
15338         inflate methods on open constructed types.      
15339
15340 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15341
15342         * object.c: fire ProcessExit event in the root AppDomain after running
15343         Main. Fixes bug #53299.
15344
15345 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
15346
15347         * socket-io.c: include the new socket-wrappers.h header.
15348         Use the wrappers instead of the unix socket functions to make the code
15349         more clear.
15350
15351 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
15352
15353         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
15354
15355         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
15356         Fixes #22532.
15357
15358 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
15359
15360         * reflection.c (mono_image_create_pefile): Handle the case when the
15361         entry point is not a MethodBuilder.
15362
15363         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
15364         field to ReflectionMethod since it is not allways a builder.
15365
15366         * reflection.c (type_get_fully_qualified_name): New helper function to
15367         return the fully qualified name of a type.
15368
15369         * reflection.c (encode_marshal_blob): Always emit the fully qualified
15370         type name for custom marshallers.
15371
15372         * reflection.c (mono_marshal_spec_from_builder): Ditto.
15373
15374         * class.c (mono_class_setup_vtable): If a parent class already 
15375         implements an interface, use the implementing methods from that class.
15376         Fixes #53148.
15377
15378 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15379
15380         * threadpool.c: just return instead of ExitThread to allow for thread
15381         clean up earlier.
15382
15383 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
15384
15385         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
15386         when closing resource modules.
15387
15388         * reflection.c (mono_image_create_pefile): Handle the case when the
15389         entry point is not a MethodBuilder.
15390
15391         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
15392         field to ReflectionMethod since it is not allways a builder.
15393
15394 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
15395
15396         * marshal.c (mono_marshal_get_managed_wrapper): 
15397         mono_marshal_alloc takes native int so CONV_I
15398         the arg for 64bits.
15399
15400 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
15401
15402         * reflection.c (fixup_cattrs): New function to fixup the methoddef
15403         tokens in the cattr table. Fixes #53108.
15404
15405 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15406
15407         * loader.c: don't trim ".dll" before looking up in the config file.
15408         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
15409
15410 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
15411
15412         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
15413         Return the module which contains the resource as well.
15414         (ves_icall_System_Reflection_Module_Close): New icall.
15415
15416         * appdomain.c: Bump corlib version number.
15417
15418         * image.c (mono_image_addref): New public function.
15419
15420         * assembly.c: Call mono_image_addref.
15421
15422         * reflection.c (mono_module_get_object): Increase reference count of 
15423         the image.
15424
15425         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
15426         Fixes #22532.
15427
15428         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
15429         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
15430         proper exceptions on DllImport problems.
15431
15432 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
15433
15434         * class.c, metadata.c: eliminate CSIZE macro.
15435
15436 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
15437
15438         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
15439         * object.h: Added async_callback field in MonoAsyncResult.
15440         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
15441         * verify.c: Added async_callback in MonoAsyncResult layout.
15442
15443 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
15444
15445         * reflection.c (mono_reflection_get_custom_attrs): Add support
15446         for Modules.
15447
15448 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
15449
15450         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
15451         marshalling.
15452         (mono_marshal_method_from_wrapper): Add null pointer check.
15453
15454 2004-01-16  Martin Baulig  <martin@ximian.com>
15455
15456         * debug-mono-symfile.h: Set version number to 36 and reflect
15457         latest symbol writer changes.
15458
15459 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
15460
15461         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
15462         multi-dimensional arrays.
15463         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
15464         (mono_class_from_mono_type): Use bounded_array_class_get.
15465         
15466         * class.c (mono_bounded_array_class_get): New function which takes
15467         a 'bounded' bool argument to distinguish vectors from one dimensional
15468         arrays.
15469
15470         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
15471         bounded_array_class_get if the array has bounds.
15472
15473         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
15474         Search modules loaded using AssemblyBuilder:AddModule as well.
15475
15476 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15477
15478         * appdomain.c: increased corlib version.
15479         * filewatcher.c: removed g_print.
15480         * icall.c:
15481         (get_property_info): only allocate what is actually requested.
15482         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
15483
15484 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15485
15486         * Makefile.am: added filewatcher.[ch]
15487         * filewatcher.[ch]: FileSystemWatcher runtime support.
15488         * icall.c: added new FSW icalls.
15489
15490 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
15491
15492         * string-icalls.c: fix stringbuilder regression as suggested by
15493         Iain McCoy <iain@mccoy.id.au>.
15494
15495 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
15496
15497         * process.c (process_read_stringtable_block): Recognize '007f' as
15498         a language neutral stringtable block.
15499
15500 2004-01-12  Patrik Torstensson
15501
15502         * object.h (MonoStringBuilder) : Changed layout to support our
15503         new stringbuilder class.
15504         * marshal.c: Change marshalling to support the new layout of 
15505         string builder.
15506         * appdomain.c: increased version number because new layout of
15507         string builder.
15508
15509 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
15510
15511         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
15512         assembly name as an string instead of an AssemblyName, since it is
15513         easier to extract info from it.
15514
15515         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
15516         the culture subdirectories too. Fixes #52231.
15517
15518 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15519
15520         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
15521         It takes 2 new parameters with an optional name for the method to look
15522         for and case ignoring info.
15523
15524         * threadpool.c: removed unused variable.
15525
15526 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15527
15528         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
15529         It takes 2 new parameters with an optional name for the property to look
15530         for and case ignoring info.
15531         Fixes bug #52753.
15532
15533 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
15534
15535         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
15536         Fix #52451.
15537
15538 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15539
15540         * appdomain.c:
15541         * assembly.c: escape the uri before passing it to g_filename_from_uri.
15542         Fixes bug #52630.
15543
15544 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
15545
15546         * reflection.c: Add support for more than one unmanaged resource.
15547
15548         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
15549         in field->def_value, as done in all other cases.
15550
15551         * reflection.c (mono_reflection_get_custom_attrs): Add support for
15552         TypeBuilders.
15553
15554         * reflection.c (mono_reflection_create_runtime_class): Remove 
15555         errorneous assignment to klass->element_class, since it is already
15556         done in mono_reflection_setup_internal_class.
15557
15558 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15559
15560         * gc.c: added missing LeaveCriticalSection.
15561         * icall.c: indented a couple of lines.
15562         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
15563         if we call EndInvoke inside a callback. Fixes bug #52601.
15564
15565 2004-01-07  Martin Baulig  <martin@ximian.com>
15566
15567         * mono-debug-debugger.h
15568         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
15569
15570 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
15571
15572         * appdomain.c: Use messages in NotImplementedException.
15573
15574         * exception.c (mono_get_exception_not_implemented): Now this takes
15575         a message argument.
15576
15577         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
15578         exception instead of g_asserting an aborting when something is not
15579         implemented.
15580
15581         Add some inline docs.
15582
15583 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
15584
15585         * reflection.h: Update after changes to object layout.
15586
15587         * reflection.c: Implement saving of unmanaged aka win32 resources.
15588
15589         * appdomain.c: Bump version number.
15590
15591         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
15592         Handle missing domains gracefully.
15593
15594 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
15595
15596         * file-io.c : On Windows, there are much more invalid_path_chars.
15597
15598 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
15599
15600         * class.h, object.c: prepare for GetType () speedup.
15601
15602 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
15603
15604         * profiler.c: workaround for --profile null reference exception on
15605           cygwin. Patch by Patrik Torstensson.
15606
15607 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
15608
15609         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
15610         make work for unaligned access.
15611
15612 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
15613
15614         * class.c: small cleanup (class->fields [i] -> field).
15615         * image.c: check address of metadata is valid.
15616
15617 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
15618
15619         * assembly.h assembly.c (mono_assembly_loaded): New public function to
15620         search the list of loaded assemblies.
15621
15622         * reflection.c (mono_reflection_type_from_name): Use 
15623         mono_assembly_loaded instead of mono_image_loaded.
15624
15625         * reflection.c: Fix warnings.
15626
15627 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
15628
15629         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
15630         is dynamic. This is needed since an assembly can contain both dynamic and
15631         non-dynamic images.
15632
15633         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
15634         assembly->dynamic.
15635
15636         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
15637
15638         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
15639         to store modules loaded using AddModule.
15640
15641         * reflection.c (mono_image_fill_file_table): Generalize this so it works
15642         on Modules.
15643
15644         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
15645
15646         * reflection.c (mono_image_fill_export_table_from_module): New function to
15647         fill out the EXPORTEDTYPES table from a module.
15648
15649         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
15650         into a separate function. Also handle loaded non-dynamic modules.
15651
15652         * reflection.c (mono_image_basic_init): Fix memory allocation.
15653
15654         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15655
15656         * assembly.c (mono_assembly_load_references): Make this public.
15657
15658 2003-12-19  Martin Baulig  <martin@ximian.com>
15659
15660         * class.c (mono_class_initialize_generic): Made this static, take
15661         a `MonoGenericInst *' instead of a `MonoClass *'.
15662         (mono_class_from_generic): Call mono_class_initialize_generic()
15663         unless we're already initialized or being called from
15664         do_mono_metadata_parse_generic_inst().
15665
15666         * class.h (MonoGenericInst): Added `initialized' and
15667         `init_pending' flags.
15668
15669         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
15670         `mono_class_init (gklass)' or mono_class_initialize_generic()
15671         here; set `generic_inst->init_pending' while parsing the
15672         `type_argv'.
15673
15674 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
15675
15676         * locales.c: include string.h for memxxx prototypes
15677
15678 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
15679
15680         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
15681         constructor when accessing literal fields.
15682
15683 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
15684
15685         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15686
15687         * reflection.c (assembly_add_resource_manifest): New function to fill
15688         the MANIFESTRESOURCE table.
15689
15690         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
15691
15692         * reflection.h: Update to changes in class layout.
15693
15694         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
15695         Reenable call to mono_runtime_is_shutting_down ().
15696
15697         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
15698         determine if the runtime is shutting down.
15699
15700 2003-12-16  Jackson Harper <jackson@ximian.com>
15701
15702         * icall.c: comment out call to mono_runtime_is_shutting_down to
15703         fix build.
15704         
15705 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
15706
15707         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
15708         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
15709
15710 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
15711
15712         * reflection.c: move definition of swap_with_size
15713         to before its first call
15714
15715 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
15716
15717         * appdomain.c (mono_runtime_is_shutting_down): New public function.
15718
15719         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
15720         icall.
15721
15722         * object.c: Fix warnings.
15723
15724         * icall.c (ves_icall_Type_Get...): Only consider inherited static
15725         members if FlattenHierarchy is set.
15726
15727         * reflection.c (mono_image_add_decl_security): New function to emit
15728         declarative security.
15729
15730         * reflection.h reflection.c: Add support for declarative security.
15731
15732         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
15733         
15734 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
15735
15736         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
15737         
15738         * appdomain.c verify.c: Moved corlib version checking into its own
15739         function in appdomain.c since it needs to create vtables etc.
15740
15741 2003-12-13  Patrik Torstensson <p@rxc.se>
15742
15743         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
15744         instead of unwrapped server.
15745
15746 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
15747
15748         * verify.c (check_corlib): Fix field index.
15749
15750 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
15751
15752         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
15753         GetGacPath icall.
15754
15755 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
15756
15757         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
15758         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
15759         cope with sizeof(size_t) != sizeof(guint32).
15760
15761 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15762
15763         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
15764         in case of failure.
15765
15766 2003-12-10  Mark Crichton <crichton@gimp.org>
15767
15768         * icall.c: removed the GetNonZeroBytes.  We now handle this case
15769         in managed code.
15770
15771         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
15772
15773 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
15774
15775         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
15776         marked as deleted.
15777
15778 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
15779
15780         * verify.c (check_corlib): Handle the case when the version field is 
15781         initialized by a static constructor.
15782
15783 2003-12-08  Patrik Torstensson  <p@rxc.se>
15784
15785     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
15786
15787 2003-12-08  Martin Baulig  <martin@ximian.com>
15788
15789         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
15790         a MonoReflectionGenericParameter, also take the parameter index
15791         and name as arguments.
15792         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
15793         (ves_icall_MonoGenericParam_initialize): New interncall.
15794         (ves_icall_Type_make_byref_type): New interncall.
15795
15796         * reflection.h (MonoReflectionGenericParam): Derive from
15797         MonoReflectionType, not just from MonoObject.  Added `refobj' and
15798         `index' fields.
15799
15800         * reflection.c (mono_reflection_define_generic_parameter): Create
15801         and return a new MonoReflectionGenericParam; don't initialize the
15802         constraints here.
15803         (mono_reflection_initialize_generic_parameter): New public method;
15804         initializes the constraints and creates the `param->pklass'.
15805
15806 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
15807
15808         * reflection.h reflection.c: Use the new fields 'num_types', 
15809         'num_fields' and 'num_methods' to track the number of types etc.
15810
15811         * verify.c (check_corlib): Check corlib version number.
15812
15813 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
15814
15815         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
15816         function works on all methods.
15817
15818 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
15819
15820         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
15821         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
15822         the custom_type_info flag of the transparent proxy.
15823         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
15824         objects that supports IRemotingTypeInfo.
15825         * object.h: Added custom_type_info field in transparent proxy.
15826
15827 2003-12-06  Martin Baulig  <martin@ximian.com>
15828
15829         * class.c (mono_class_create_from_generic): Removed.
15830         (mono_class_from_generic): Check `ginst->klass' before doing
15831         anything else.  This is important to fully support "recursive"
15832         generic types.
15833
15834         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
15835         empty `generic_inst->klass' before doing anything else.
15836
15837 2003-12-06  Dick Porter  <dick@ximian.com>
15838
15839         * verify.c: 
15840         * object.h:
15841         * icall.c:
15842         * locales.c: Use C structs to access class fields.  Don't do a
15843         conversion between MonoString and UChar because both are
15844         platform-endian UTF-16.  Compare now takes startindex and count
15845         parameters.  Add a char overload for IndexOf.  Speed up the
15846         invariant string IndexOf.
15847
15848 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
15849
15850         * Makefile.am (monosn_LDADD): Fix parallel build.
15851
15852 2003-12-04  Martin Baulig  <martin@ximian.com>
15853
15854         * icall.c
15855         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15856         (ves_icall_Type_make_array_type): New interncall.       
15857
15858 2003-12-04  Martin Baulig  <martin@ximian.com>
15859
15860         * locales.c: also change it in the !HAVE_ICU case.
15861
15862 2003-12-04  Dick Porter  <dick@ximian.com>
15863
15864         * icall.c:
15865         * locales.c: construct_compareinfo is now in CompareInfo, not
15866         CultureInfo.
15867
15868 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
15869
15870         * image.c (mono_image_load_file_for_image): Cache loaded images in the
15871         image->files array.
15872
15873         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
15874         table as well.
15875
15876         * assembly.c (mono_assembly_load_references): Only load references
15877         once.
15878
15879         * class.c (mono_class_from_name): Avoid linear search of the 
15880         EXPORTEDTYPE table.
15881
15882         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
15883
15884 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
15885
15886         * image.h (MonoImage): Add 'field_cache' field.
15887
15888         * loader.c (mono_field_from_token): Cache field lookups.
15889         
15890         * reflection.c (mono_module_get_object): Fix name property.
15891
15892         * icall.c (ves_icall_get_enum_info): Update after changes to 
15893         mono_metadata_get_constant_index ().
15894
15895         * icall.c: Get rid of get_type_info icall, use a separate icall for
15896         each type property to avoid needless memory allocations. Fixes #51514.
15897
15898         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
15899         to avoid needless binary searches.
15900
15901         * class.c (class_compute_field_layout): Move the initialization of
15902         field->def_value to mono_class_vtable ().
15903
15904         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
15905         non-corlib types.
15906
15907         * object.c (mono_object_allocate): Make it inline.
15908
15909         * object.c (mono_object_allocate_spec): Make it inline.
15910         
15911 2003-12-02  Dick Porter  <dick@ximian.com>
15912
15913         * locales.c (create_NumberFormat): NumberFormatInfo construction.
15914         Patch by Mohammad DAMT (mdamt@cdl2000.com).
15915
15916 2003-12-01  Dick Porter  <dick@ximian.com>
15917
15918         * threads.c: Fix signature and call in CreateMutex and
15919         CreateEvent.
15920
15921 2003-12-01  Dick Porter  <dick@ximian.com>
15922
15923         * icall.c: 
15924         * locales.c: Implement string compares and searching
15925
15926         * object.h: Add extra Thread field
15927
15928 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
15929
15930         * reflection.c (fixup_method): Add support for MonoCMethod.
15931
15932 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
15933
15934         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
15935
15936         * reflection.c (assembly_name_to_aname): Allow extra characters in
15937         assembly names. Fixes #51468.
15938
15939 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
15940
15941         * exception.c (mono_exception_from_name_domain): New helper function.
15942
15943         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
15944         exception object in the correct domain.
15945
15946         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
15947         formatting + make a copy a the input data.
15948
15949         * loader.c (mono_get_method_from_token): Methods which contain
15950         native code do not have entries in the ImplMap.
15951
15952         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
15953         Thanks to Gonzalo for spotting this.
15954         
15955         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
15956         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
15957
15958         * assembly.h (mono_assembly_load_from): Split the second part of 
15959         assembly loading into a new public function.
15960
15961         * exception.h (mono_get_exception_bad_image_format): New function.
15962
15963 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
15964
15965         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
15966         Enumerate all modules inside a dynamic assembly. Fixes #51293.
15967         
15968         * icall.c: Add new icall for creating dynamic methods.
15969
15970         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
15971
15972         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
15973
15974         * reflection.c (mono_reflection_create_dynamic_method): New icall to
15975         create a dynamic method.
15976
15977         * reflection.c (resolve_object): New helper function.
15978
15979         * reflection.c: Generalize ReflectionMethodBuilder and the functions
15980         which manipulate it so they can also work on dynamic methods.
15981
15982         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
15983         creating the MonoReflectionMethodAux structure if it is not needed.
15984         
15985         * reflection.h verify.c: Update after changes to object layout.
15986
15987         * reflection.c (method_builder_encode_signature): Fix compilation on
15988         gcc 2.95.x.
15989
15990 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
15991
15992         * appdomain.h: Added support for context static fields. Added static_data
15993           field to MonoAppContext and renamed thread_static_fields to a more
15994           generic special_static_fields in MonoAppDomain, since it can now contain
15995           context static fields.
15996         * domain.c: Updated hashtable name.
15997         * object.c: Replaced field_is_thread_static() for a more generic
15998           field_is_special_static() which also checks for context static attribute.
15999           In mono_class_vtable(), added support for static context fields.
16000         * threads.c: Changed methods that manage thread static fields to more
16001           generic methods so they can be reused both for thread and context static
16002           data.
16003         * threads.h: Declared some new methods.
16004
16005 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
16006
16007         * reflection.h: Update after changes to the managed types.
16008
16009         * reflection.c (encode_custom_modifiers): New helper function.
16010
16011         * reflection.c (method_encode_signature): Emit custom modifiers.
16012
16013         * reflection.c (field_encode_signature): Emit custom modifiers.
16014
16015 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
16016
16017         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
16018
16019         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
16020         implementation.
16021
16022         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
16023         icall.
16024
16025         * object.c (mono_field_get_value_object): New function.
16026
16027         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
16028         specific.
16029
16030 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
16031
16032         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
16033         return a preallocated out-of-memory exception instance.
16034
16035         * object.c (out_of_memory): Use the new function.
16036
16037         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
16038         flag is before the custom modifiers. Fixes #49802.
16039
16040 2003-11-16  Martin Baulig  <martin@ximian.com>
16041
16042         * class.c (mono_class_is_open_constructed_type): Implemented the
16043         MONO_TYPE_GENERICINST case.
16044
16045 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
16046
16047         * assembly.c (mono_assembly_fill_assembly_name): New function to
16048         fill out the MonoAssemblyName structure.
16049         (mono_assembly_open): Use the new function.
16050
16051         * icall.c (fill_reflection_assembly_name): New helper function.
16052
16053         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
16054         new function.
16055
16056         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
16057
16058 2003-11-15  Martin Baulig  <martin@ximian.com>
16059
16060         * class.c (mono_class_is_open_constructed_type): New public
16061         function; checks whether a type is an open constructed type,
16062         ie. whether it still contains type parameters.
16063         (mono_class_inflate_generic_type): If we're a type parameter and
16064         the inflated type is also a MONO_TYPE_(M)VAR, return the original
16065         type.
16066
16067         * class.h (MonoGenericInst): Added `guint32 is_open'.
16068
16069         * loader.c (method_from_methodspec): Check whether we're an open
16070         or closed constructed type and set `ginst->is_open'.
16071
16072         * reflection.c (mono_reflection_bind_generic_parameters): Check
16073         whether we're an open or closed constructed type and set
16074         `ginst->is_open'.
16075         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
16076         from open constructed types.
16077
16078 2003-11-15  Martin Baulig  <martin@ximian.com>
16079
16080         * reflection.c (mono_reflection_bind_generic_parameters): If we're
16081         a generic instance (instead of a generic type declaration) with
16082         unbound generic parameters, bind them to our actual types.
16083
16084 2003-11-14  Martin Baulig  <martin@ximian.com>
16085
16086         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
16087
16088         * reflection.c (mono_reflection_bind_generic_parameters): If we're
16089         an interface type, populate `res->interfaces' with instantiated
16090         versions of all the interfaces we inherit.
16091
16092 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
16093
16094         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
16095         when MONO_PATH is set but doesn't contain the install dir.
16096
16097 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16098
16099         * icall.c:
16100         (ves_icall_Type_GetInterfaces): don't return an interface twice when
16101         it's also implemented in base classes. Fixes bug #50927.
16102
16103 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
16104
16105         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
16106         if this method is called from a finalizer. Fixes #50913.
16107
16108 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
16109
16110         * threads.c: Implement VolatileRead/VolatileWrite
16111
16112         * icall.c: Add new icalls for VolatileRead/VolatileWrite
16113
16114 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
16115
16116         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
16117         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
16118         2.95.3.
16119
16120         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
16121         from Peter Ross (pro@missioncriticalit.com).
16122         
16123 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
16124
16125         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
16126
16127 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
16128
16129         * assembly.c (mono_assembly_load_references): Disable check because it
16130         triggers on older corlibs which lots of people have.
16131
16132 2003-11-12  Jackson Harper  <jackson@ximian.com>
16133
16134         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
16135         load corlib.dll if mscorlib.dll is not found.
16136         * assembly.h: Remove corlib name define.
16137         * class.c:
16138         * domain.c:
16139         * image.c: Change corlib name to mscorlib.
16140         
16141 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
16142
16143         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
16144
16145 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
16146
16147         * appdomain.h: Added loader_optimization here to sync with the C#
16148         code, and add disallow_binding_redirects field.
16149
16150 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
16151
16152         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
16153
16154         * reflection.c (mono_image_build_metadata): Fix crash on modules
16155         with no types.
16156
16157         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
16158
16159         * icall.c (ves_icall_get_method_info): Return callingConvention as
16160         well.
16161
16162         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
16163         namespaces from the EXPORTEDTYPE table as well.
16164
16165         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
16166         from all modules inside the assembly.
16167         
16168 2003-11-11  Martin Baulig  <martin@ximian.com>
16169
16170         * reflection.c (mono_reflection_bind_generic_parameters): Make
16171         this work for interfaces.
16172
16173 2003-11-11  Martin Baulig  <martin@ximian.com>
16174
16175         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
16176
16177 2003-11-11  Martin Baulig  <martin@ximian.com>
16178
16179         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
16180         "MonoInflatedMethod" and "MonoInflatedCtor".
16181
16182 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
16183
16184         * reflection.c (resolution_scope_from_image): Use the assembly table
16185         from the manifest module, since other modules don't have it.
16186
16187         * debug-helpers.c (mono_type_full_name): New helper function.
16188
16189         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
16190
16191         * image.c (mono_image_load_file_for_image): New public function which
16192         is a replacement for the load_file_for_image in class.c.
16193
16194         * assembly.c (mono_assembly_load_module): A wrapper for the function
16195         above which does assembly association and reference loading too.
16196
16197         * class.c (mono_class_from_name): Call mono_assembly_load_module.
16198
16199 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16200
16201         * appdomain.c: not all of the attributes for the full assembly name
16202         are required and the order doesn't matter. Fixes bug #50787.
16203
16204 2003-11-10  Dick Porter  <dick@ximian.com>
16205
16206         * locales.c: Use platform-endian UTF16
16207
16208 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
16209
16210         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
16211         
16212 2003-11-10  Martin Baulig  <martin@ximian.com>
16213
16214         * metadata.c
16215         (mono_metadata_load_generic_params): Make this actually work.
16216
16217         * reflection.c (mono_reflection_bind_generic_parameters): If our
16218         parent is a generic instance, pass all the `types' to it, no
16219         matter whether it has the same number of type parameters or not.
16220
16221 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
16222
16223         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
16224
16225         * assembly.c (mono_assembly_load_references): Move the image<->assembly
16226         assignment code to this function so it gets called recursively for all
16227         modules.
16228
16229         * image.c (load_modules): Remove the assembly assignment since it is
16230         now done by mono_assembly_load_references.
16231         
16232         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
16233         Add 'module' argument.
16234         (mono_module_get_types): New helper function.
16235         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
16236
16237 2003-11-08  Martin Baulig  <martin@ximian.com>
16238
16239         * class.c (mono_class_inflate_generic_method): Interface method
16240         don't have a header.
16241
16242         * reflection.c (mono_image_get_methodspec_token): Take an
16243         additional `MonoGenericInst *' argument instead of reading it from
16244         the header; this is necessary to support interfaces.
16245         (mono_image_create_token): Pass the `MonoGenericInst *' from the
16246         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
16247         (inflated_method_get_object): Take an additional `MonoGenericInst *'
16248         argument.
16249
16250         * reflection.h (MonoReflectionInflatedMethod): Added
16251         `MonoGenericInst *ginst'.
16252
16253 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
16254
16255         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
16256
16257 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
16258
16259         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
16260
16261 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
16262
16263         * reflection.c 
16264         (reflection_methodbuilder_from_method_builder):
16265         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
16266         initialize a ReflectionMethodBuilder structure.
16267         (mono_image_get_methodbuilder_token):
16268         (mono_image_get_ctorbuilder_token): New functions to emit memberref
16269         tokens which point to types in another module inside the same assembly.
16270
16271         * reflection.c: Use the new helper functions.
16272         
16273         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
16274
16275         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
16276         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
16277
16278         * reflection.c (resolution_scope_from_image): Emit a moduleref if
16279         neccesary.
16280
16281         * reflection.c (mono_image_build_metadata): Emit metadata only for the
16282         current module. Emit the manifest only for the main module.
16283
16284         * reflection.c (mono_image_create_token): Add assertion when a 
16285         memberref needs to be created.
16286
16287         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
16288
16289         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
16290         larger buffer for the custom attribute blob. Fixes #50637.
16291         
16292 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16293
16294         * threadpool.c: notify listener on async processing handles after
16295         invoking the async callback. Thanks to Zoltan.
16296
16297 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
16298
16299         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
16300         avoid code duplication.
16301
16302         * reflection.h (MonoDynamicImage): New type which is currently unused,
16303         but will be used through the ref.emit code in place of 
16304         MonoDynamicAssembly.
16305
16306         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
16307         object layout.
16308
16309         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
16310         a MonoDynamicImage instead of just a MonoImage.
16311         
16312         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
16313         icalls to ModuleBuilder but keep their semantics, so they will work
16314         with moduleb->assemblyb. This will change later.
16315         
16316 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
16317
16318         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
16319         object layout.
16320
16321         * reflection.c (mono_image_build_metadata): Avoid creation of a default
16322         main module, since it is now done by the managed code.
16323
16324 2003-11-03  Martin Baulig  <martin@ximian.com>
16325
16326         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
16327         `ginst->klass' here.
16328         (method_encode_methodspec): Don't use the `ginst->generic_method's
16329         klass if it's a generic instance, use `ginst->klass' in this case.
16330
16331 2003-11-03  Martin Baulig  <martin@ximian.com>
16332
16333         * reflection.c (mono_image_get_generic_method_param_info):
16334         Removed, use mono_image_get_generic_param_info() instead.
16335         (mono_image_get_type_info): Write the GenericParam table before
16336         the Method table.  This is neccessary because in the GenericParam
16337         table, type parameters of the class (ie. '!0' etc.) must come
16338         before the ones from its generic methods (ie. '!!0' etc).
16339
16340 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
16341
16342         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
16343
16344 2003-11-02  Martin Baulig  <martin@ximian.com>
16345
16346         * reflection.c (create_generic_typespec): Take a
16347         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
16348         the generic parameters from it.
16349
16350 2003-11-02  Martin Baulig  <martin@ximian.com>
16351
16352         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
16353         instead of a `MonoClassField *' since we just need the type.
16354         (create_generic_typespec): New static function.  Creates a
16355         TypeSpec token for a generic type declaration.
16356         (mono_image_get_generic_field_token): New static function.
16357         (mono_image_create_token): If we're a FieldBuilder in a generic
16358         type declaration, call mono_image_get_generic_field_token() to get
16359         the token.
16360
16361 2003-11-02  Martin Baulig  <martin@ximian.com>
16362
16363         * reflection.h
16364         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
16365         `MonoReflectionGenericInst *declaring_type' and
16366         `MonoReflectionGenericInst *reflected_type' fields.
16367
16368         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
16369         `MonoReflectionGenericInst *declaring_type' and a
16370         `MonoReflectionGenericInst *reflected_type' argument instead of a
16371         single `MonoReflectionGenericInst *type' one.  Set
16372         `res->declaring_type' and `res->reflected_type' from them.
16373         (mono_reflection_inflate_field): Likewise.      
16374
16375 2003-11-02  Martin Baulig  <martin@ximian.com>
16376
16377         * class.c (mono_class_setup_vtable): Don't store generic methods
16378         in the vtable.  
16379
16380 2003-11-02  Martin Baulig  <martin@ximian.com>
16381
16382         * reflection.h (MonoReflectionGenericInst): Added
16383         `MonoReflectionType *declaring_type'.
16384
16385         * reflection.c (mono_reflection_bind_generic_parameters): Use
16386         `if (tb->parent)' instead of `klass->parent'.
16387
16388 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
16389
16390         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
16391         with an empty ASSEMBLY table.
16392
16393         * reflection.c (mono_image_build_metadata): Avoid using the same loop
16394         variable in the inner and outer loops.
16395
16396 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
16397
16398         * metadata.h (mono_metadata_make_token): Put parentheses around macro
16399         argument.
16400
16401         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
16402         
16403         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
16404         icalls. Instead, do everything in managed code. This is needed since
16405         it is hard to restore the original domain etc. in unmanaged code in the
16406         presence of undeniable exceptions.
16407
16408         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
16409         New icalls to push and pop appdomain refs.
16410
16411 2003-10-31  Martin Baulig  <martin@ximian.com>
16412
16413         * class.c (inflate_generic_type): Renamed to
16414         mono_class_inflate_generic_type() and made it public.
16415
16416         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
16417         New interncall.
16418
16419         * loader.c (mono_field_from_memberref): Also set the retklass for
16420         typespecs.
16421
16422         * fielder.c (mono_image_get_inflated_field_token): New static
16423         method; creates a metadata token for an inflated field.
16424         (mono_image_create_token, fixup_method): Added support for
16425         "MonoInflatedField".
16426         (fieldbuilder_to_mono_class_field): New static function.
16427         (mono_reflection_inflate_field): New public function.
16428
16429         * reflection.h
16430         (MonoReflectionGenericInst): Added `MonoArray *fields'.
16431         (MonoReflectionInflatedField): New typedef.     
16432
16433 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
16434
16435         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
16436         for Solaris and other platforms without s6_addr16
16437
16438 2003-10-30  Martin Baulig  <martin@ximian.com>
16439
16440         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
16441         argument instead of two.
16442         (mono_class_inflate_generic_signature): Likewise.
16443         (inflate_generic_header): Likewise.
16444         (mono_class_inflate_generic_method): Likewise.  In addition, if
16445         `ginst->klass' is set, it becomes the new `method->klass'.
16446
16447         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
16448         field.
16449
16450         * reflection.c (encode_generic_method_sig): Write a 0xa as the
16451         first byte. [FIXME]
16452         (method_encode_methodspec): If we have generic parameters, create
16453         a MethodSpec instead of a MethodRef.
16454         (fixup_method): Added support for "MonoInflatedMethod" and
16455         "MonoInflatedCtor".
16456         (mono_image_create_token): Added support for "MonoInflatedMethod"
16457         and "MonoInflatedCtor".
16458         (inflated_method_get_object): New static function; returns a
16459         managed "System.Reflection.MonoInflatedMethod" object.
16460         (mono_reflection_bind_generic_method_parameters): Return a
16461         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
16462         (mono_reflection_inflate_method_or_ctor): Likewise.
16463         (mono_image_get_generic_method_param_info): Initialize unused
16464         fields to zero.
16465         (mono_image_get_generic_param_info): Likewise.
16466
16467         * reflection.h (MonoReflectionInflatedMethod): New public
16468         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
16469         "S.R.MonoInflatedCtor" classes.
16470
16471         * loader.c (method_from_memberref): If we're a TypeSpec and it
16472         resolves to a generic instance, inflate the method.
16473
16474 2003-10-28  Dick Porter  <dick@ximian.com>
16475
16476         * object.c (mono_runtime_run_main): Convert command-line arguments
16477         into utf8, falling back to the user's locale encoding to do so.
16478
16479 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
16480
16481         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
16482         at this time.
16483
16484         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
16485
16486         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
16487         up icalls at method definition time. Partially fixes #33569.
16488
16489 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
16490
16491         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
16492         marshalling of arrays. Fixes #50116.
16493
16494         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
16495
16496         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
16497         points to a vtable in the dying appdomain.
16498
16499         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
16500         listeners into unmanaged code inside the lock.
16501
16502         * object.c (mono_class_vtable): Turn off typed allocation in non-root
16503         domains and add some comments.
16504
16505 2003-10-25  Martin Baulig  <martin@ximian.com>
16506
16507         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
16508
16509         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
16510
16511         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
16512         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
16513         currently parsing.  Create the generic class and store it in
16514         `generic_inst->klass' before parsing the type arguments.  This is
16515         required to support "recursive" definitions; see mcs/tests/gen-23.cs
16516         for an example.
16517         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
16518         to support recursive typespec entries.
16519
16520         * class.c (mono_class_setup_parent): If our parent is a generic
16521         instance, we may get called before it has its name set.
16522         (mono_class_from_generic): Splitted into
16523         mono_class_create_from_generic() and mono_class_initialize_generic().
16524
16525 2003-10-25  Martin Baulig  <martin@ximian.com>
16526
16527         * icall.c (ves_icall_Type_BindGenericParameters): Return a
16528         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
16529         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
16530         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
16531
16532         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
16533         (create_typespec): Likewise.
16534         (mono_reflection_bind_generic_parameters): Return a
16535         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
16536         (mono_reflection_inflate_method_or_ctor): New public function.
16537
16538         * reflection.h (MonoReflectionGenericInst): New typedef.        
16539
16540 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
16541
16542         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
16543         inside the domain lock. Fixes #49993.
16544         
16545         * object.c (mono_class_vtable): When typed allocation is used, 
16546         allocate vtables in the GC heap instead of in the mempool, since the
16547         vtables contain GC descriptors which are used by the collector even
16548         after the domain owning the mempool is unloaded.
16549
16550         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
16551
16552         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
16553         reflect what it does. Also invalidate mempools instead of freeing
16554         them if a define is set.
16555
16556         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
16557         of the appdomain.
16558         
16559         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
16560         hold the finalizable objects in this domain.
16561
16562         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
16563         appdomain.
16564
16565         * appdomain.c (mono_domain_set): New function to set the current
16566         appdomain, but only if it is not being unloaded.
16567
16568         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
16569         appdomain which is being unloaded.
16570         
16571         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
16572         unloading of the root appdomain.
16573
16574         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
16575         icall to execute a method in another appdomain. Intended as a 
16576         replacement for InternalSetDomain, which can confuse the code 
16577         generation in the JIT.
16578
16579         * appdomain.c (mono_domain_is_unloading): New function to determine
16580         whenever an appdomain is unloading.
16581
16582         * appdomain.c (mono_domain_unload): New function to correctly unload
16583         an appdomain.
16584
16585         * assembly.c (mono_assembly_load_references): Check that an assembly
16586         does not references itself.
16587
16588         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
16589         domain manually, it asks the finalizer thread to do it, then waits for
16590         the result. Also added a timeout.
16591
16592         * icall.c: Register the new icalls.
16593
16594         * threads.h threads.c: Export the mono_gc_stop_world and 
16595         mono_gc_start_world functions.
16596         
16597         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
16598         function to fill out the mempool with 0x2a.
16599
16600 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
16601
16602         * reflection.h (MonoReflectionMethodAux): New structure to store
16603         information which is rarely used, thus is not in the MonoMethod
16604         structure.
16605
16606         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
16607         store the aux info.
16608
16609         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
16610         and marshalling info into the aux structure.
16611
16612         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
16613         from the aux structure.
16614
16615         * loader.c (mono_method_get_param_names): Retrieve the param names from
16616         the aux structure.
16617         
16618 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
16619
16620         * exception.h exception.c: Add AppDomainUnloadedException && fix 
16621         warning.
16622
16623 2003-10-21  Dick Porter  <dick@ximian.com>
16624
16625         * socket-io.c
16626         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
16627         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
16628
16629 2003-10-21  Martin Baulig  <martin@ximian.com>
16630
16631         * reflection.c (mono_reflection_bind_generic_parameters):
16632         `klass->parent' is NULL for interfaces.
16633
16634 2003-10-21  Martin Baulig  <martin@ximian.com>
16635
16636         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
16637
16638 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
16639
16640         * exception.c (mono_exception_from_name_msg): New helper function for
16641         creating exceptions and initializing their message field.
16642
16643         * exception.c: Simplify functions using the new helper.
16644
16645         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
16646         New function.
16647
16648         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
16649         mono_raise_exception, since otherwise gcc doesn't generate the function
16650         epilog for raise_exception, confusing the stack unwinding in the JIT.
16651         Fixes #45043.
16652
16653         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
16654         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
16655         Fixes #49499.
16656
16657 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16658
16659         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
16660         utf8.
16661
16662 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
16663
16664         * icall.c: Removed GetUninitializedObject method because
16665           AllocateUninitializedClassInstance does the same.
16666
16667 2003-10-18  Martin Baulig  <martin@ximian.com>
16668
16669         * class.c (inflate_generic_signature): Renamed to
16670         mono_class_inflate_generic_signature() and made it public.
16671         (my_mono_class_from_generic_parameter): New static function; if we
16672         don't already have the generic parameter's MonoClass, create a
16673         very simple one which is just used internally in the runtime and
16674         not passed back to managed code.
16675
16676         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
16677
16678         * metadata.h (MonoMethodSignature): Moved the
16679         `MonoGenericParam *gen_params' to the MonoMethodHeader.
16680         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
16681
16682         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
16683         ves_icall_MonoMethod_GetGenericArguments(); this is now an
16684         interncall on the MonoMethod class, not on MethodInfo.
16685         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
16686         calling mono_reflection_bind_generic_method_parameters() directly.
16687
16688         * loader.c (mono_method_get_signature): If this is a MethodSpec;
16689         return the already computed `method->signature'.
16690         (method_from_methodspec): New static function to load a method
16691         from a MethodSpec entry.
16692         (mono_get_method_from_token): Call the new method_from_methodspec()
16693         for MethodSpec tokens.  
16694         (mono_get_method_from_token): If we're a generic method, load the
16695         type parameters.
16696
16697         * reflection.c (mono_image_get_memberref_token): Allow
16698         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
16699         table.
16700         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
16701         (mono_image_create_token): First check whether it's a generic
16702         method (so we'd need to create a MethodSpec), then do the other
16703         two alternatives.
16704         (mono_reflection_bind_generic_method_parameters): Return a
16705         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
16706         called directly from the interncall.
16707
16708 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
16709
16710         * reflection.c (load_public_key): Move loading of the public key
16711         into managed code.
16712
16713         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
16714
16715         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
16716         fields.
16717
16718         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
16719         culture, hash_alg and public_key. Fixes #49555.
16720
16721 2003-10-17  Martin Baulig  <martin@ximian.com>
16722
16723         * class.h (MonoGenericInst): Moved this declaration here and added
16724         `MonoMethod *generic_method'.
16725
16726         * icall.c
16727         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
16728         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
16729
16730         * metadata.c (mono_metadata_type_equal): Two types of
16731         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
16732         index; ie. don't compare the address of the `MonoGenericParam'
16733         structure.
16734         (mono_metadata_load_generic_params): Removed the `MonoMethod
16735         *method' argument.
16736
16737         * metadata.h (MonoGenericInst): Moved declaration to class.h.
16738         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
16739
16740         * reflection.c (method_encode_signature): Encode the number of
16741         generic parameters.
16742         (encode_generic_method_sig): New static function.
16743         (method_encode_methodspec): New static function; creates an entry
16744         in the MethodSpec table for a generic method.
16745         (mono_image_get_methodspec_token): New static function.
16746         (mono_image_create_token): Call mono_image_get_methodspec_token()
16747         for generic methods.
16748         (mono_reflection_bind_generic_method_parameters): New public
16749         function.  Instantiates a generic method.
16750
16751 2003-10-16  Martin Baulig  <martin@ximian.com>
16752
16753         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
16754         *gen_params' here from MonoMethodHeader.
16755
16756         * metadata.c (mono_metadata_parse_method_signature): If we have
16757         generic parameters, initialize `method->gen_params' and then set
16758         the correct `type->data.generic_param' in all the parameters.
16759
16760 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
16761
16762         * threads.c (mono_threads_get_default_stacksize): New function to 
16763         return the default stacksize.
16764
16765         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
16766         termination of the finalizer thread, since the previous method had
16767         race conditions. Fixes #49628.
16768
16769         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
16770         as for the other managed threads.
16771
16772 2003-10-16  Martin Baulig  <martin@ximian.com>
16773
16774         * class.c (inflate_generic_signature): Copy `generic_param_count'
16775         and `gen_params'.
16776
16777         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
16778         New interncall.
16779
16780         * metadata.c (mono_metadata_parse_method_signature): Actually set
16781         the `method->generic_param_count' here.
16782         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
16783
16784 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
16785
16786         * object.h: Add a new field to TypedRef to simplify the implementation
16787         of the REFANY opcodes in the JIT.
16788
16789         * icall.c: Make use of the new field.
16790
16791         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
16792         dynamically.
16793
16794 2003-10-15  Martin Baulig  <martin@ximian.com>
16795
16796         * class.c (mono_class_from_gen_param): Renamed to
16797         mono_class_from_generic_parameter() and moved most of the
16798         functionality from mono_reflection_define_generic_parameter()
16799         here; ie. we create a "real" class here.
16800         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
16801         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
16802         previously been called.
16803
16804         * class.h (MonoGenericParam): Moved the declaration of this struct
16805         here from metadata.h and added `MonoMethod *method'.
16806
16807         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
16808         interncall.
16809
16810         * loader.c (mono_get_method_from_token): If we have any generic
16811         parameters, call mono_metadata_load_generic_params() to read them
16812         from the MONO_TABLE_GENERICPAR.
16813
16814         * metadata.c (mono_metadata_load_generic_params): Added
16815         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
16816
16817         * metadata.h (MonoMethodSignature): Replaced
16818         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
16819         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
16820
16821         * reflection.c (mono_reflection_define_generic_parameter): Moved
16822         most of the functionality into the new
16823         mono_class_from_generic_parameter(); set the `method' field if
16824         we're a method parameter.       
16825
16826 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
16827
16828         * marshal.c (emit_struct_conv): if native size is 0
16829         emit no code.
16830
16831 2003-10-14  Martin Baulig  <martin@ximian.com>
16832
16833         * icall.c: The generics API has changed in the spec since it was
16834         added to System.Type; these modifications make it match the spec
16835         again.
16836         (ves_icall_Type_GetGenericParameters): Renamed to
16837         `ves_icall_Type_GetGenericArguments'.
16838         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
16839         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
16840         `ves_icall_MonoType_get_HasGenericArguments'.
16841         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
16842         `ves_icall_MonoType_get_IsGenericParameter'.
16843         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
16844         this is no interncall anymore.
16845         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
16846         `ves_icall_TypeBuilder_get_IsGenericParameter'.
16847
16848 2003-10-14  Martin Baulig  <martin@ximian.com>
16849
16850         * reflection.c (mono_reflection_bind_generic_parameters): Also
16851         inflate generic methods if we're reading the class from IL.
16852
16853 2003-10-13  Martin Baulig  <martin@ximian.com>
16854
16855         * reflection.c (mono_reflection_define_generic_parameter): This
16856         method isn't called directly from the icall anymore; take a
16857         `MonoReflectionAssemblyBuilder *' so we can use this for type and
16858         method generic parameters.
16859         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
16860         (method_builder_encode_signature): Encode generic parameters.
16861         (mono_image_get_method_info): Write generic params to the
16862         MONO_TABLE_GENERICPARAM table.
16863
16864         * reflection.h (MonoReflectionMethodBuilder): Added
16865         `MonoArray *generic_params'.
16866
16867         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
16868
16869         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
16870         wrapper for mono_reflection_define_generic_parameter().
16871         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
16872
16873 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
16874
16875         * marshal.h: Add missing function to fix build.
16876
16877         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
16878         the SetLastError pinvoke attribute.
16879
16880         * marshal.c (mono_marshal_set_last_error): New helper function called
16881         by the generated code.
16882         
16883         * marshal.c (mono_mb_emit_branch): New helper function.
16884
16885         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
16886
16887         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
16888         classes as parameters and return values of delegates. Fixes #29256. 
16889
16890 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
16891
16892         * locales.c: use gint32 in non HAVE_ICU case
16893
16894 2003-10-11  Martin Baulig  <martin@ximian.com>
16895
16896         * mono-debug.c (mono_debug_add_method): Added a workaround for
16897         bug #48591.
16898
16899 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
16900
16901         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
16902         delegates passed to native code must use the STDCALL calling 
16903         convention. Fixes #35987.
16904
16905 2003-10-10  Martin Baulig  <martin@ximian.com>
16906
16907         * class.c (inflate_generic_type): If we're inflating for a generic
16908         type instance (and not for a generic method), return
16909         MONO_TYPE_MVAR unchanged.
16910
16911 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16912
16913         * string-icalls.c: Join ignores null strings in the source array.
16914         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
16915         * threads.c: GetAvailableTheads is slightly more accurate.
16916
16917 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
16918
16919         * threads.h threads.c : add mono_threads_set_default_stacksize
16920         and pass default to CreateThread calls.
16921
16922 2003-10-09  Dick Porter  <dick@ximian.com>
16923
16924         * icall.c:
16925         * locales.h:
16926         * locales.c: Internal calls for constructing CultureInfo and
16927         related objects from libicu (if its available.)
16928
16929 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
16930
16931         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
16932
16933 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16934
16935         * threadpool.c: added an argument to async_invoke_thread that is the
16936         item to process, pass the MonoAsyncResult to the thread start function
16937         when creating a new thread. This way we don't need to acquire any lock
16938         when we're creating a new thread. Readded a semaphore for faster
16939         response times (instead of that Sleep i added).
16940
16941 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
16942
16943         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
16944         get daylight change dates better on Windows, fix handling
16945         of platforms without tm_gmtoff.
16946
16947 2003-10-06  Martin Baulig  <martin@ximian.com>
16948
16949         * class.c (inflate_generic_method): Renamed to
16950         mono_class_inflate_generic_method() and made public.
16951         (mono_class_init): Don't inflate the generic methods here.
16952         (mono_class_from_generic): Added `gboolean inflate_methods'
16953         argument.  Inflate the methods here.
16954
16955         * loader.c (mono_method_get_param_names): Ignore instances of
16956         generic types for the moment.
16957
16958         * reflection.c (fixup_method): Added support for inflated methods.
16959         (mono_image_create_token): Use mono_image_get_methodref_token()
16960         for inflated methods.
16961         (mono_custom_attrs_from_param): Ignore instances of generic types
16962         for the moment.
16963         (mono_reflection_bind_generic_parameters): New public function.
16964         Moved all the functionality from
16965         ves_icall_Type_BindGenericParameters() here and added support for
16966         dynamic types.
16967         (mono_reflection_define_generic_parameter): Initialize
16968         `klass->methods' here.
16969
16970         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
16971         functionality into mono_reflection_define_generic_parameter().
16972         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
16973         TypeBuilder, return that TypeBuilder.
16974
16975 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16976
16977         * appdomain.c: removed mono_delegate_semaphore.
16978
16979         * threadpool.c:
16980         (mono_thread_pool_add): moved hash table creation inside and the thread 
16981         creation outside of the critical region.
16982         (mono_thread_pool_finish): removed obsolete code.
16983         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
16984         continue or exit the thread depending on the queue.
16985
16986 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
16987
16988         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
16989         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
16990         handle more bool marshalling options
16991
16992 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
16993
16994         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
16995         arrays of structs. Also add a more descriptive error message when
16996         a structure member is marshalled as LPArray.
16997
16998 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
16999
17000         * marshal.c (mono_marshal_get_native_wrapper): Add support for
17001         marshalling arrays of complex types. Fixes #29098. Also remove an
17002         usused and incomplete function.
17003
17004 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
17005
17006         * gc.c: report heap_size - free_bytes as total memory allocated
17007         (bug#49362).
17008
17009 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
17010
17011         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
17012         fix timezone handling problems on Windows.
17013         
17014         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
17015         asserts when the year is outside the range handled by ms the functions.
17016
17017         * class.c (setup_interface_offsets): If the class is an interface,
17018         fill out its interface_offsets slot.
17019
17020 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17021
17022         * threadpool.c: mark threadpool threads as background.
17023
17024 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
17025
17026         * decimal.c - define DECINLINE to nothing if not using GCC
17027
17028 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
17029
17030         * assembly.c: More refcount fixes.
17031
17032 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17033
17034         * string-icalls.c: if we're not trimming, return the same string.
17035         When not splitting, don't create a new string.
17036
17037 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17038
17039         * image.c:
17040         (mono_image_open): increment the ref_count inside the critical section.
17041
17042 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
17043
17044         * image.c (mono_image_open): Fix reference counting bug.
17045
17046 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
17047
17048         * marshal.c (mono_marshal_type_size) struct alignment changed for 
17049         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
17050         64bits. Avoid leak in mono_marshal_get_native_wrapper when
17051         mono_lookup_pinvoke_call throws.        
17052
17053 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
17054
17055         * reflection.c (mono_reflection_parse_type): Fix #49114.
17056
17057         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
17058         temporary workaround for cygwin header problem.
17059
17060         * object.c (mono_object_isinst): Synchronize this with the code
17061         generated by the JIT for casts.
17062
17063 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
17064
17065         * reflection.c (encode_type): Fix #38332.
17066
17067 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
17068
17069         * marshal.c (mono_marshal_method_from_wrapper): New function to return
17070         the original method from the wrapper method.
17071
17072 2003-09-25  Martin Baulig  <martin@ximian.com>
17073
17074         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
17075         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
17076         (ves_icall_Type_get_IsGenericInstance): New interncall.
17077
17078 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
17079
17080         * object.c: fix cast warning in big endian code.
17081
17082 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
17083
17084         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
17085         
17086 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17087
17088         * assembly.c: don't call check_env from mono_assembly_load. It's
17089         already done once in mono_assemblies_init and may cause headaches when
17090         multiple threads are loading assemblies.
17091
17092 2003-09-19  Martin Baulig  <martin@ximian.com>
17093
17094         * reflection.c (mono_reflection_define_generic_parameter): Don't
17095         allocate `klass->methods', set `klass->flags' to
17096         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
17097
17098 2003-09-18  Martin Baulig  <martin@ximian.com>
17099
17100         * class.c (mono_class_init): Don't create `class->methods' if it's
17101         already initialized.
17102
17103         * metadata.c (mono_metadata_load_generic_params): Make this
17104         actually work.
17105
17106         * reflection.c (mono_reflection_define_generic_parameter): Set
17107         parent class and interfaces from the constraints.
17108
17109         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
17110         to keep this struct in sync with the declaration in TypeBuilder.cs.
17111
17112 2003-09-17  Martin Baulig  <martin@ximian.com>
17113
17114         * metadata.h (MonoType): Replaced the data's `int type_param'
17115         field with `MonoGenericParam *generic_param'.
17116         (MonoGenericParam): Added `MonoClass *klass'.
17117
17118         * class.c (mono_class_from_gen_param): Removed the
17119         `MonoImage *image' and `int type_num' arguments.
17120
17121         * metadata.c (mono_metadata_parse_generic_param): New static
17122         method; creates a MonoGenericParam which just contains the index.
17123         (do_mono_metadata_parse_type): Call
17124         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
17125         MONO_TYPE_MVAR.
17126
17127         * reflection.c (mono_image_typedef_or_ref): Generic type
17128         parameters may be in the same assembly, but never use a typedef
17129         for them.
17130         (mono_reflection_define_generic_parameter): We're now creating a
17131         "real" class for the type parameter; it's now safe to call
17132         mono_class_from_mono_type() on the class'es type, it'll do the
17133         right thing.
17134
17135 2003-09-16  Martin Baulig  <martin@ximian.com>
17136
17137         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
17138         `symfile->range_entry_size' and `symfile->class_entry_size' here;
17139         the `symfile' data structure must be fully initialized before it
17140         gets added to the table.
17141
17142 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
17143
17144         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
17145
17146         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
17147         class init trampolines.
17148
17149 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
17150
17151         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
17152         to the built-in profiler to turn off time and allocation profiling
17153         respectively.
17154
17155 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
17156
17157         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
17158         g_direct_equal.
17159
17160         * debug-helpers.c (mono_method_full_name): Print the wrapper type
17161         in human readable form.
17162
17163 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
17164
17165         * reflection.c icall.c: Fixed warnings.
17166
17167         * image.c (load_class_names): Use a temporary hash table to hold the
17168         namespaces in order to avoid doing many string comparisons.
17169
17170         * image.h: Fix typo.
17171
17172         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
17173         Pass NULL instead of g_direct_equal to the GHashTable constructor 
17174         since the NULL case is short-circuited inside g_hash_table_lookup, 
17175         leading to better performance.  
17176
17177         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
17178         obtain the first custom attribute for a given index. Depends on the
17179         CustomAttribute table being sorted by the parent field.
17180
17181         * reflection.c (mono_custom_attrs_from_index): Use the new function 
17182         for better performance.
17183
17184 2003-09-07  Martin Baulig  <martin@ximian.com>
17185
17186         * class.c (mono_class_init): If we're a generic instance, inflate
17187         all our methods instead of loading them from the image.
17188         (mono_class_from_generic): Set `class->methods = gklass->methods'.
17189
17190 2003-09-07  Martin Baulig  <martin@ximian.com>
17191
17192         * mono-debug-debugger.c: Added support for constructors.
17193
17194 2003-09-06  Martin Baulig  <martin@ximian.com>
17195
17196         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
17197         New interncall.
17198
17199         * reflection.c (mono_reflection_setup_generic_class): Call
17200         ensure_runtime_vtable() to create the vtable.
17201
17202 2003-09-05  Martin Baulig  <martin@ximian.com>
17203
17204         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
17205         MONO_TYPE_MVAR.
17206
17207 2003-09-04  Martin Baulig  <martin@ximian.com>
17208
17209         * reflection.c (mono_reflection_define_generic_parameter): Generic
17210         parameters start with zero.
17211
17212 2003-09-04  Martin Baulig  <martin@ximian.com>
17213
17214         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
17215
17216         * reflection.h (MonoReflectionGenericParam): New typedef.
17217         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
17218         the generic parameters from the managed TypeBuilder.
17219
17220         * reflection.c (mono_reflection_define_generic_parameter): New function.
17221         (mono_reflection_create_runtime_class): Encode generic parameters.
17222         (mono_reflection_setup_generic_class): New function; this is
17223         called after adding adding all generic params to the TypeBuilder.
17224         (encode_type): Added MONO_TYPE_VAR.
17225
17226 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
17227
17228         * class.h class.c (mono_class_needs_cctor_run): Moved this method
17229         here from the JIT.
17230
17231         * assembly.h assembly.c: Moved the AOT loading code into an assembly
17232         load hook.
17233
17234 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
17235
17236         * reflection.h reflection.c class.h class.c: Delete duplicate 
17237         definition of mono_type_get_name () from reflection.c and export the
17238         one in class.c.
17239
17240         * class.c: Class loading fixes from Bernie Solomon 
17241         (bernard@ugsolutions.com).
17242
17243         * reflection.c: Endianness fixes from Bernie Solomon 
17244         (bernard@ugsolutions.com).
17245         
17246 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
17247
17248         * assembly.h assembly.c: Define a file format version for AOT
17249         libraries.
17250         
17251         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
17252
17253         * appdomain.h (MonoJitInfo): New field to determine whenever the
17254         code is domain neutral.
17255         
17256 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
17257
17258         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
17259
17260 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
17261
17262         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
17263         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
17264         Avoid caching the result since strings must be domain specific. Fixes
17265         #48050.
17266
17267 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
17268
17269         * marshal.c (mono_marshal_init): Make this callable multiple times
17270         since it is hard to find a correct place to call it.
17271
17272         * object.c (mono_runtime_class_init): Execute static constructors in
17273         the correct appdomain.
17274
17275         * image.c (build_guid_table): Handle the case when multiple images have
17276         the same GUID.
17277
17278 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17279
17280         * icall.c: added a couple of icalls for System.Web.
17281
17282 2003-08-28  Martin Baulig  <martin@ximian.com>
17283
17284         * icall.c (ves_icall_Type_BindGenericParameters): Use
17285         `klass->generic_inst' instead of `&klass->byval_arg' in the
17286         mono_type_get_object() call.  The returned type must be
17287         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
17288
17289 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
17290
17291         * NOTES: New file.
17292
17293         * object.c (mono_class_proxy_vtable): Make it thread safe.
17294
17295         * pedump.c: Fix warning.
17296
17297         * object.c appdomain.h: Get rid of metadata_section. 
17298         It is no longer needed and it was causing deadlocks with domain->lock.
17299
17300         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
17301
17302 2003-08-26  Martin Baulig  <martin@ximian.com>
17303
17304         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
17305
17306 2003-08-26  Martin Baulig  <martin@ximian.com>
17307
17308         * pedump.c (main): Call mono_metadata_init(),
17309         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
17310         and mono_loader_init().
17311
17312 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
17313
17314         * loader.h: Add missing include to fix build.
17315
17316         * image.h: mono_image_load_references is no more.
17317
17318         * assembly.c: Reworked assembly loading to make it really thread safe.
17319         After these changes, the assembly returned by mono_assembly_open is
17320         fully initialized, i.e. all its references assemblies are loaded.
17321
17322         * assembly.c (mono_image_load_references): Renamed to 
17323         mono_assembly_load_references, and made private, since clients no
17324         longer need to call it.
17325
17326         * class.c: Removed calls to mono_assembly_load_references, since it was
17327         a source of deadlocks.
17328
17329         * loader.h loader.c class.h class.c: Protect data structures using a 
17330         new lock, the loader lock.
17331
17332         * class.c (mono_class_setup_vtable): Create temporary hash tables and
17333         GPtrArrays only when needed.
17334
17335         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
17336         into empty structures by mcs. Fixes pinvoke7.cs.
17337         
17338         * domain.c (mono_init): Call a new initialization function.
17339
17340         * appdomain.c (mono_runtime_init): Call the new initializer function
17341         of the marshal module.
17342
17343         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
17344         inserted into empty structures by mcs. Fixes pinvoke7.cs.
17345
17346         * marshal.h marshal.c: Added locks around the wrapper caches to make
17347         this module thread safe.
17348
17349         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
17350         this argument. Fixes pinvoke1.exe.
17351
17352 2003-08-25  Lluis Sanchez <lluis@ximian.com>
17353
17354         * object.h: Added call_type field to MonoMethodMessage and the corresponding
17355         enumeration of values. Removed fields to store remote call output values in
17356         MonoAsyncResult. Not needed any more.
17357         * object.c: Initialize call_type and async_result fields in mono_message_init.
17358         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
17359         dispatching the message.
17360         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
17361         async call to finish. To do it use a message with EndInvoke call type.
17362
17363 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
17364
17365         * loader.h loader.c (mono_method_hash_marhal_info): New function which
17366         determines whenever a method has marshalling info.
17367
17368 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17369
17370         * assembly.c: fix the build on windows.
17371
17372 2003-08-22 Lluis Sanchez <lluis@ximian.com>
17373
17374         * object.cs: Fixed bug #47785.
17375
17376 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
17377
17378         * string-icalls.c (StringReplace): If their are no occurances of
17379         the old string found return a reference to the supplied
17380         string. This saves some memory and matches MS behavoir.
17381         
17382 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17383
17384         * socket-io.c: fixed compilation for systems that define AF_INET6
17385         and don't define SOL_IP/SOL_IPV6.
17386
17387 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
17388
17389         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
17390         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
17391
17392         * rawbuffer.c rawbuffer.h: Make this module thread safe.
17393
17394         * domain.c: Make this module thread safe.
17395
17396         * domain.c (mono_init): Call new initialization function.
17397
17398         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
17399         reference types too. Fixes #38812.
17400
17401         * image.c (mono_image_init): Fixed warnings.
17402
17403         * class.c (mono_class_from_typeref): Handle assembly load failure
17404         correctly.
17405
17406         * appdomain.c (add_assemblies_to_domain): Handle the case when
17407         the references of an assembly are not yet loaded.
17408
17409         * metadata.c image.c assembly.c: Moved initialization of global
17410         variables to a separate function called at startup since lazy 
17411         initialization of these variables is not thread safe.
17412         
17413         * image.c assembly.c: Made this module thread safe by adding locks in 
17414         the appropriate places.
17415
17416         * domain.c (mono_init): Call the new initialization functions of the
17417         three modules.
17418
17419 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
17420
17421         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
17422           make a direct call. It is proxy's work to make the call asynchronous.
17423           mono_delegate_end_invoke(): If the targe is a proxy, just collect
17424           the return values.
17425         * object.cs: mono_method_call_message_new(): read AsyncResult and
17426           state object from parameters list, if this info is requested.
17427         * object.h: Added fields to store remote call output values in
17428           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
17429
17430 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
17431
17432         * object.h: add needed fields to MonoThread.
17433         * threads.c, threads.h: allow registering a function to cleanup data
17434         allocated per thread by the JIT.
17435
17436 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
17437
17438         * loader.h: portability fix by Bernie Solomon
17439         * <bernard@ugsolutions.com>.
17440
17441 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
17442
17443         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
17444         return a MonoArray. This simplifies the code and also ensures that
17445         the cache allways contains an object reference as a value.
17446
17447         * icall.c (ves_icall_get_parameter_info): Simplified using the new
17448         function.
17449
17450 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17451
17452         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
17453         fixes a problem with byte ordering when getting the address family for
17454         a socket.
17455
17456 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
17457
17458         * .cvsignore: Added monosn.
17459
17460         * reflection.h reflection.c loader.c: Added support for parameter
17461         marshalling to dynamically created types. Fixes #47295.
17462
17463 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
17464
17465         * rand.c: remove useless warnings.
17466
17467 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
17468
17469         * class.c: implemented ldtoken for methods and fieldrefs.
17470
17471 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17472
17473         * threadpool.c: when mono_async_invoke was called, no one took care of
17474         monitoring the queue. So if the method invoked took some time and we
17475         got new async invoke requests after 500 ms (the thread created waited
17476         that long in WaitForSingleObject), the new async invoke was not called
17477         until the previous one finished.
17478
17479         This is fixed now. Thanks to Totte for helping with it.
17480
17481 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17482
17483         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
17484
17485 2003-08-11  Martin Baulig  <martin@ximian.com>
17486
17487         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
17488
17489 2003-08-06  Martin Baulig  <martin@ximian.com>
17490
17491         * mono-debug-debugger.c: Added support for static fields,
17492         properties and methods.
17493
17494 2003-08-06  Martin Baulig  <martin@ximian.com>
17495
17496         * mono-debug-debugger.c: Don't store the MonoString's vtable to
17497         make this work for applications with multiple application domains.
17498
17499 2003-08-04  Martin Baulig  <martin@ximian.com>
17500
17501         * mono-debug-debugger.c: Completely reworked the type support; the
17502         most important thing is that we're now just using one single
17503         `MonoType' instance per type.
17504
17505 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
17506
17507         * mono-endian.h, mono-endian.c, icall.c: Added icall
17508         ves_icall_System_Double_AssertEndianity to assert double word endianity
17509         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
17510
17511 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
17512
17513         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
17514         support, icalls and fixes.
17515
17516 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
17517
17518         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
17519         classes that are a punctuation character in .NET is not the same a
17520         g_unichar_ispunct.
17521
17522 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
17523
17524         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
17525
17526 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
17527
17528         * icall.c: Add new MemCopy internalcall.
17529         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
17530         Simplified code; It is not necessary to handle all the cases here,
17531         as the C# code takes care of it.  Only handle the case of the name
17532         resource embedded into the assembly.
17533
17534         Changed signature to return the data pointer and the size of the
17535         data. 
17536
17537 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
17538
17539         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
17540         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
17541
17542 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
17543
17544         * socket-io.c: ignore EINTR error in select.
17545
17546 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
17547
17548         * class.h, class.c: removed unused subclasses field in MonoClass.
17549
17550 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
17551
17552         * icall.c: improve fix of get_base_definition(). If the parent class
17553           doesn't have the mehod, look at the parent of the parent.
17554         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
17555           to check if a parameter is an in or out parameter
17556           (PARAM_ATTRIBUTE_IN is not set by default).
17557           mono_method_return_message_restore(): Use mono_class_value_size to
17558           get the size of a value type. mono_type_stack_size (parameterType)
17559           does not return the correct value if parameterType is byRef.
17560           mono_load_remote_field(), mono_load_remote_field_new(),
17561           mono_store_remote_field(), mono_store_remote_field_new():
17562           raise exception if the remote call returns an exception.
17563
17564 2003-07-28  Martin Baulig  <martin@ximian.com>
17565
17566         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
17567         method.  This is a wrapper around mono_runtime_invoke() which
17568         boxes the instance object if neccessary.
17569
17570 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
17571
17572         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
17573         metadata.h, row-indexes.h, verify.c: first cut of generics support.
17574
17575 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
17576
17577         * icall.c: disable mcs bug workaround.
17578
17579 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
17580
17581         * object.c (mono_runtime_class_init): Take the metadata_section
17582         mutex before obtaining the domain mutex.
17583
17584         * appdomain.h: Added definition of metadata_section mutex here. 
17585
17586         * object.c: define metadata_mutex here.
17587
17588 2003-07-24  Ravi Pratap  <ravi@ximian.com>
17589
17590         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
17591         fixed.
17592
17593 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
17594
17595         * reflection.c: Fix bug #46669
17596
17597 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17598
17599         * exception.c:
17600         * exception.h:
17601         * icall.c:
17602         * object.h: fill in the type name for TypeLoadException.
17603
17604 2003-07-23  Ravi Pratap  <ravi@ximian.com>
17605
17606         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
17607         relationship between TypeBuilders while compiling corlib) and bug
17608         45993 (Array types returned from the runtime while compiling
17609         corlib were from the loaded corlib).
17610
17611 2003-07-22  Martin Baulig  <martin@ximian.com>
17612
17613         * mono-debug-debugger.c: Reworked the type support a bit more;
17614         distinguish between types and classes.
17615
17616 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
17617
17618         * icall.c: add IsArrayImpl icall.
17619
17620 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
17621
17622         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
17623         initializing real_size only once. Also fix bug #46602.
17624
17625 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
17626
17627         * object.c: Renamed mono_metadata_section to metadata_section.
17628
17629 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
17630
17631         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
17632           empty array if the type is an array. Fixed.
17633           ves_icall_MonoMethod_get_base_definition: if the base method
17634           is abstract, get the MethodInfo from the list of methods of
17635           the class.
17636         * reflection.c: ParameterInfo.PositionImpl should be zero-based
17637           and it was 1-based. Fixed in mono_param_get_objects.
17638
17639 2003-07-20  Martin Baulig  <martin@ximian.com>
17640
17641         * mono-debug.h: Set version number to 31.
17642         (mono_debug_init): Added `MonoDomain *' argument.
17643
17644         * mono-debug-debugger.c: Reworked the type support; explicitly
17645         tell the debugger about builtin types; pass the `klass' address to
17646         the debugger.
17647
17648 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
17649
17650         * image.c: Allow new metadata tables to be loaded without a
17651         warning. Also update the warning message to give the new constant value.
17652                 
17653 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
17654
17655         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
17656         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
17657         array type representation changes.
17658
17659 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
17660
17661         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
17662         on Environment.Exit () call.
17663
17664 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
17665
17666         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
17667         requires a matching corlib.
17668
17669 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
17670
17671         * Changelog: My editor decided to add a CR to each line. Sorry about that.
17672           Committed again without the CRs.
17673         
17674 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
17675
17676         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
17677           getting it from the "this" socket instance. Did not work
17678           if the socket is a subclass of Socket.
17679           Also fixed bug #35371.
17680
17681 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
17682
17683         * metadata.c: fixed size for TypedByRef.
17684         * loader.c: when searching for a method, consider the vararg amrker.
17685         * unicode.c, decimal.c: constify some arrays.
17686
17687 2003-07-15  Dick Porter  <dick@ximian.com>
17688
17689         * socket-io.c: Fixed compilation for gcc < 3.2.
17690
17691         Fixed compilation for machines that don't have AF_INET6 (thanks to
17692         Bernie Solomon <bernard@ugsolutions.com> for that part.)
17693
17694         Fixed compile warnings.
17695         
17696         Fixed formatting and line endings.
17697
17698 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
17699
17700         * socket-io.h:
17701         * socket-io.c: Added IPv6 support.
17702
17703 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
17704
17705         * class.c (mono_class_is_assignable_from): New function to implement
17706         the is_assignable_from logic. Used by mono_object_isinst, 
17707         Type::IsAssignableFrom () and the interpreter.
17708
17709         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
17710         Object, even interfaces.
17711         
17712         * object.c (mono_object_isinst): Implement in terms of 
17713         is_assignable_from.
17714
17715         * icall.c (ves_icall_type_is_assignable_from): New icall.
17716
17717 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
17718
17719         * domain.c (foreach_domain): fix compiler warning.
17720
17721 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
17722
17723         * image.c (load_metadata_ptrs): use g_strndup because strndup is
17724         not available on all plattforms
17725
17726 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
17727
17728         * image.h image.c: Store the metadata version string in MonoImage.
17729         * icall.c: New icall to retrieve the image version.
17730         * reflection.c (create_dynamic_image): Fill in the image version field
17731         * reflection.c (build_compressed_metadata): Use the image version
17732         from the image structure.
17733
17734 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17735
17736         * appdomain.c: modified comment.
17737         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
17738         That will be its last iteration when mono_gc_cleanup is called from
17739         mono_runtime_cleanup and before the domain is unloaded.
17740
17741         Fixes bug #45962.
17742
17743 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
17744
17745         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
17746         attributes.
17747
17748 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
17749
17750         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
17751         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
17752         Bernie Solomon <bernard@ugsolutions.com>.
17753
17754 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
17755
17756         * object.c, object.h: provide mono_object_new_fast() for faster
17757         allocation in some special cases.
17758
17759 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
17760
17761         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
17762         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
17763
17764 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
17765
17766         * threadpool.c: fix leaks.
17767
17768 2003-07-01  Dick Porter  <dick@ximian.com>
17769
17770         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
17771         using MonoGHashTables.  Fixes threadpool bug posted to list.
17772
17773 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
17774
17775         * image.h, image.c: added support to load an assembly from a byte array.
17776         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
17777         assembly bundle support.
17778
17779 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
17780
17781         * threadpool.c (mono_thread_pool_add): keep a reference to the
17782         AsyncResult to prevent GC
17783
17784 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
17785
17786         * class.c: leak fix.
17787
17788 2003-06-25  Dick Porter  <dick@ximian.com>
17789
17790         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
17791         for the async object, the WaitHandle object will close the handle.
17792         Fixes bug 45321.
17793
17794 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
17795
17796         * class.c: in mono_array_class_get (), lookup from the hash with the
17797         same type we insert: this works around a bug in
17798         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
17799         lluis. The real fix will have to wait for after the release.
17800
17801 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
17802
17803         * icall.c: fix memory leak when getting type members.
17804
17805 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
17806
17807         * reflection.c: added more pubtoken special cases.
17808
17809 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
17810
17811         * class.c: handle field offset correctly when class size
17812         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
17813
17814 2003-06-20  Martin Baulig  <martin@ximian.com>
17815
17816         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
17817         *image' field.
17818
17819 2003-06-20  Martin Baulig  <martin@ximian.com>
17820
17821         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
17822
17823 2003-06-20  Martin Baulig  <martin@ximian.com>
17824
17825         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
17826         just distinguish between variables in registers and variables at
17827         an offset relative to a register.
17828
17829 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17830
17831         * icall.c: #ifdef out latest changes until mcs is fixed.
17832
17833 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
17834
17835         * icall.c: return members in metadata order.
17836
17837 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
17838
17839         * icall.c: avoid infinite loop in GetTimeZoneData.
17840
17841 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
17842
17843         * icall.c: added Marshal.Prelink/All icalls.
17844
17845 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
17846
17847         * object.c, object.h: fix warnings and do some overflow checking
17848         when creating arrays.
17849
17850 2003-06-17  Dick Porter  <dick@ximian.com>
17851
17852         * file-io.h:
17853         * file-io.c: File attributes need to be tweaked slightly when
17854         passed from the managed to the w32 world.
17855
17856 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
17857         * profiler.h profiler-private.h profiler.c: Rework last patch
17858         based on suggestion by Paolo.
17859         
17860 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
17861
17862         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
17863         instruction level coverage data collection.
17864         * profiler.h profiler.c (: Added new callback function which can be
17865         used by the profiler to limit which functions should have coverage
17866         instrumentation.
17867         * profiler.c (mono_profiler_load): Call g_module_build_path to
17868         generate the file name of the profiler library.
17869
17870 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
17871
17872         * profiler.c, profiler.h, profiler-private.h: added basic block 
17873         coverage profiling API.
17874
17875 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
17876
17877         * reflection.c (mono_reflection_create_runtime_class): Add support
17878         for events in dynamically generated code.
17879
17880         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
17881         not allocated.
17882
17883 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
17884
17885         * icall.c: when getting timezone info, return reasonable values if we
17886         can't get the actual data.
17887
17888 2003-06-14  Dick Porter  <dick@ximian.com>
17889
17890         * threads.c (start_wrapper): Remove the reference to the thread
17891         object in the TLS data, so the thread object can be finalized.
17892         This won't be reached if the thread threw an uncaught exception,
17893         so those thread handles will stay referenced :-( (This is due to
17894         missing support for scanning thread-specific data in the Boehm GC
17895         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
17896
17897 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
17898
17899         * reflection.c: ensure streams and tables are first allocated with
17900         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
17901
17902 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
17903
17904         * icall.c: fixed GetElementType for byrefs (bug# 44792).
17905
17906 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
17907
17908         * reflection.c (mono_reflection_create_runtime_class): Add support for
17909         properties to dynamically created classes.
17910         * reflection.c: Fix a few places where non-MonoObjects were inserted
17911         into the tokens hashtable.
17912
17913 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
17914
17915         * object.c: some support to handle out of memory exceptions.
17916
17917 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
17918
17919         * marshal.c (mono_marshal_get_native_wrapper): support reference
17920         return types
17921
17922 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
17923
17924         * object.h, object.c: more portability stuff from Bernie Solomon.
17925         Unexport mono_object_allocate(). Added mono_object_unbox ().
17926         Set exitcode when an unhandled exception is thrown.
17927
17928 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
17929
17930         * marshal.c (mono_marshal_get_native_wrapper): use custom
17931         marshaler for return types.
17932
17933 2003-06-10  Dick Porter  <dick@ximian.com>
17934
17935         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
17936         ip_mreq is available
17937
17938 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
17939
17940         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
17941         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
17942         by Bernie Solomon <bernard@ugsolutions.com>.
17943
17944 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
17945
17946         * gc.c (mono_gc_init): Avoid error message on shutdown when
17947         GC_DONT_GC=1 is used.
17948
17949         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
17950         New icall to return the GUID of a module.
17951
17952 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
17953
17954         * class.c: ensure instance size always includes the parent's size
17955         even whem class size is set explicitly (fixes bug#44294).
17956
17957 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
17958
17959         * profiler.h, profiler.c: made the simple profiler thread-safe,
17960         get more accurate timing info. Allow the loading of an
17961         externally-developed profiler module.
17962
17963 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
17964
17965         * marshal.c (mono_marshal_get_native_wrapper): improved
17966         class/byref arguments.
17967         (mono_marshal_get_native_wrapper): better string marshaling support.
17968
17969 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
17970
17971         * class.c: ensure .pack and .size are handled correctly and
17972         simplified layout of static fields.
17973
17974 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
17975
17976         * appdomain.c
17977         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
17978
17979         * loader.c (mono_lookup_pinvoke_call): look for modules in the
17980         current directory (fix bug 44008)
17981
17982 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
17983
17984         * marshal.c (mono_marshal_get_native_wrapper): started support for
17985         custom marshalers.
17986         (mono_delegate_to_ftnptr): consider marshalling specifications
17987
17988 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
17989
17990         * reflection.c, reflection.h: emit custom marshal info.
17991
17992 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17993
17994         * object.c: free the GError.
17995         * icall.c: added CloseEvent_internal.
17996         * threads.[ch]:
17997         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
17998         call.
17999
18000 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
18001
18002         * loader.c (mono_method_get_signature): Add support for dynamic
18003         assemblies.
18004
18005 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
18006
18007         * reflection.c: fixed bug #43905.
18008
18009 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
18010
18011         * class.c, domain.c, icall.c, metadata.h, object.h: support for
18012         handling TypedReference and ArgIterator.
18013         * loader.c, loader.h: added function to get signature at call site.
18014
18015 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
18016
18017         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
18018         data readonly. Buglets and warning fixes. Some MethodSpec support.
18019
18020 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
18021
18022         * class.h, class.c, object.c: remove relative numbering support.
18023
18024 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
18025
18026         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
18027         free the string, until we get a chance to fix Gtk#
18028
18029 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18030
18031         * marshal.c: revert last patch.
18032
18033 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
18034
18035         * icall.c: updates for new mono_class_vtable() not calling
18036         the type constructor anymore.
18037
18038 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
18039
18040         * object.h, object.c: separate vtable creation from type
18041         initialization. Make running the .cctor thread safe.
18042
18043 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
18044
18045         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
18046
18047 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
18048
18049         * loader.c (mono_get_method): consider calling convention
18050
18051 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
18052
18053         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
18054         to return the invisible global type for a module.
18055
18056         * reflection.c (mono_image_build_metadata): Emit global fields too.
18057
18058 2003-05-20  Peter Williams  <peterw@ximian.com>
18059
18060         * loader.c (mono_lookup_internal_call): Add a few newlines.
18061
18062 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
18063
18064         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
18065         literal strings.
18066
18067         * appdomain.c (set_domain_search_path): Recalculate search path when
18068         AppDomainSetup.PrivateBinPath changes.
18069
18070         * object.c (mono_class_compute_gc_descriptor): It turns out some
18071         parts of the class libs (like System.Thread) holds pointers to
18072         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
18073         to treat native int a pointer type here.
18074         
18075 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
18076
18077         * appdomain.h, domain.c: add hashtable for jump target resolution.
18078
18079 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
18080
18081         * reflection.h reflection.c icall.c: Added new icalls 
18082         GetManifestResourceInfoInternal, GetModulesInternal and support
18083         infrastructure.
18084
18085 2003-05-16  Dick Porter  <dick@ximian.com>
18086
18087         * icall.c:
18088         * file-io.h:
18089         * file-io.c: Implement System.IO.MonoIO::GetTempPath
18090
18091 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
18092
18093         * object.c: mono_store_remote_field: little fix to previous patch.
18094
18095 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
18096
18097         * class.c: add constructors to array classes.
18098         * icall.c: special case array construction for InternalInvoke (),
18099
18100 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
18101
18102         * class.h class.c reflection.c object.c: Added support for field
18103         defaults in dynamically generated classes.
18104
18105 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
18106
18107         * reflection.c: properly encode charset for ddlimport.
18108
18109 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
18110
18111         * threads.c: allow compiling without GC.
18112
18113 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
18114
18115         * appdomain.h, object.c, object.h, threads.c, threads.h: added
18116         handling of thread static data.
18117
18118 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18119
18120         * reflection.h, reflection.c: added mono_custom_attrs_free ().
18121
18122 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
18123
18124         * class.c (mono_array_class_get): always set the serializable flags
18125         (mono_array_class_get): always set the SEALED attribute for array types
18126
18127 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
18128
18129         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
18130         attributes (fix for bug 42021).
18131
18132 2003-05-12  Dick Porter  <dick@ximian.com>
18133
18134         * gc.c: Don't run finalizers when the finalizer thread is
18135         finishing up, because the default domain has already been
18136         destroyed.
18137
18138 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
18139
18140         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
18141         value is null, we should throw an exception.   This is slightly
18142         different than the other conventions used for the constructor.
18143
18144 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18145
18146         * socket-io.c: fixed windows build.
18147
18148 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18149
18150         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
18151
18152 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
18153
18154         * object.c (mono_string_new_wrapper): Compatibility fix for MS
18155         compilers.
18156
18157 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
18158
18159         * class.c (mono_class_layout_fields): Add experimental GC aware
18160         auto layout facility. Requires class library changes to work correctly.
18161
18162         (mono_class_setup_vtable): Avoid overriding explicit interface
18163         method implementations. Fixes iface3.exe test.
18164
18165         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
18166         object reference.
18167         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
18168         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
18169
18170         * metadata.h: Add new type classification macro which determines
18171         whenever the type holds an object reference.
18172
18173 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
18174
18175         * marshal.c (mono_marshal_get_native_wrapper): cleanups
18176
18177 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
18178
18179         * gc.c (finalizer_thread): Work around a GC bug.
18180
18181 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
18182
18183         * marshal.c (emit_struct_conv): allow unions
18184
18185         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
18186
18187 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
18188
18189         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
18190
18191 2003-05-06  Martin Baulig  <martin@ximian.com>
18192
18193         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
18194
18195 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18196
18197         * socket-io.c:
18198         (Select_internal): allow NULLs, don't create arrays if not needed.
18199         Coupled with Socket.cs changes.
18200
18201         * threadpool.c:
18202         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
18203         register a finalizer for it that will close the semaphore handle. This
18204         fixes the leak and make Lupus' test run with > 4080 loops.
18205
18206 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
18207
18208         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
18209         Jerome Laban (bug #42287)
18210
18211 2003-05-02  Martin Baulig  <martin@ximian.com>
18212
18213         * debug-mono-symfile.h
18214         (MonoSymbolFile): Moved declaration into mono-debug.h.
18215         (MonoDebugMethodJitInfo): Likewise.
18216         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
18217         argument.
18218         (_mono_debug_address_from_il_offset): Take a
18219         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
18220
18221         * mono-debug.h
18222         (MonoDebugDomainData): New struct.
18223         (mono_debug_get_domain_data): New function.
18224         (mono_debug_add_method): Take an additional `MonoDomain *'
18225         argument.
18226         (mono_debug_source_location_from_address): Likewise.
18227         (mono_debug_il_offset_from_address): Likewise.
18228         (mono_debug_address_from_il_offset): Likewise.
18229
18230 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
18231
18232         * reflection.c: one more check for null type in custom attrs.
18233
18234 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18235
18236         * reflection.c: avoid warning (comparison is always false due to limited
18237         range of data type).
18238
18239 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18240
18241         * icall.c: throw an exception in Type.GetField if the argument 'name'
18242         is NULL.
18243
18244 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
18245
18246         * reflection.c: fixed handling of enums in named arguments to custom
18247         attributes (bug #42123).
18248
18249 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
18250
18251         * reflection.c: use the right array element type and handle
18252         a null for a Type argument, too.
18253
18254 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
18255
18256         * reflection.c: handle arrays as arguments to custom attributes.
18257
18258 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
18259
18260         * reflection.c: handle a string value in a custom attr
18261         ctor that takes an object.
18262
18263 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
18264
18265         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
18266         (fix bug #42063)
18267
18268 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
18269
18270         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
18271
18272 2003-04-27  Martin Baulig  <martin@ximian.com>
18273
18274         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
18275         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
18276         MONO_DEBUGGER_EVENT_BREAKPOINT.
18277         (mono_breakpoint_trampoline_code): Removed.
18278         (mono_debugger_event_handler): The last argument is now a
18279         `guint32'.
18280         (mono_debugger_insert_breakpoint_full): Removed the
18281         `use_trampoline' argument.
18282         (mono_debugger_method_has_breakpoint): Likewise.
18283         (mono_debugger_trampoline_breakpoint_callback): Renamed to
18284         mono_debugger_breakpoint_callback(); take the method and
18285         breakpoint number as arguments.
18286
18287 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
18288
18289         * metadata.c: fix off by one when loading parameters attributes.
18290
18291 2003-04-24  Martin Baulig  <martin@ximian.com>
18292
18293         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
18294
18295 2003-04-24  Martin Baulig  <martin@ximian.com>
18296
18297         * mono-debug-debugger.c: Moved all code which interacts with the
18298         Mono Debugger here.
18299
18300         * debug-mono-symfile.c: This code now just deals with the symbol
18301         file itself, the debugger code is now in mono-debug-debugger.c.
18302
18303 2003-04-23  Martin Baulig  <martin@ximian.com>
18304
18305         * mono-debug.c (mono_debug_source_location_from_il_offset):
18306         New method; like mono_debug_source_location_from_address(), but
18307         takes an IL offset instead of a machine address.
18308
18309 2003-04-23  Martin Baulig  <martin@ximian.com>
18310
18311         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
18312         `line' field; this is now computed by the debugger.
18313
18314 2003-04-23  Martin Baulig  <martin@ximian.com>
18315
18316         * mono-debug.[ch]: New files.  This is the new debugging interface.
18317
18318         * mono-debug-debugger.[ch]: New files.  Moved all code which
18319         interacts with the Mono Debugger here.
18320
18321 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
18322
18323         * domain.c (mono_init): initialize mono_defaults.monitor_class
18324
18325 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
18326
18327         * reflection.c (method_encode_code): Add a spicy exception to help
18328         future compiler authors.
18329
18330 2003-04-21  Martin Baulig  <martin@ximian.com>
18331
18332         * icall.c
18333         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
18334         Make this work with relative pathnames; g_filename_to_uri() needs
18335         an absolute filename.
18336
18337 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
18338
18339         * icall.c: Track name changes in Object and ValueType.
18340
18341 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
18342
18343         * metadata.c (mono_type_stack_size): size should be a multiple of
18344         sizeof (gpointer)
18345
18346 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18347
18348         * gc.c:
18349         (internal_domain_finalize): moved into mono_domain_finalize. No need
18350         to create another thread because the finalizers will be run in the
18351         finalizer thread.
18352         
18353         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
18354         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
18355         to be run (MS does this too).
18356
18357 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
18358
18359         * object.c (mono_class_compute_gc_descriptor): Update comment.
18360
18361         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
18362
18363         * image.h: Add synchronized wrapper cache.
18364
18365         * image.c (do_mono_image_open): Initialize cache.
18366
18367         * reflection.c (create_dynamic_mono_image): Initialize cache.
18368
18369 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18370
18371         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
18372         ves_icall_System_Buffer_ByteLengthInternal.
18373
18374 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
18375
18376         * reflection.c: setup klass->nested_in earlier. Allow
18377         a dash in the assembly name.
18378
18379 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
18380
18381         * metadata.c (mono_type_to_unmanaged): dont access
18382         type->data.klass for MONO_TYPE_OBJECT
18383         (mono_type_to_unmanaged): consider System.Delegate class
18384
18385 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
18386
18387         * class.c: just setup supertypes in the proper place instead of
18388         initializing the full element class for arrays.
18389
18390 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
18391
18392         * class.c: ensure the element class of arrays is initialized.
18393         Setup the supertype info for array classes, too.
18394
18395 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
18396
18397         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
18398
18399 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18400
18401         * Makefile.am: re-added -m option when running cygpath. This way,
18402         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
18403         separator.
18404         * mono-config.c: same codepath for locating mono config file for WIN32
18405         and the rest.
18406         * assembly.c: if mono_assembly_setrootdir is called, don't override
18407         the value set.
18408
18409 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18410
18411         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
18412         MONO_ASSEMBLIES variable.
18413
18414 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
18415
18416         * icall.c: added Assembly::GetNamespaces() icall.
18417
18418 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18419
18420         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
18421
18422 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
18423
18424         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
18425         * object.c: fixed bug in the construction of vtable for proxies
18426
18427 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
18428
18429         * object.c (mono_array_new): Mark mono_array_new as an icall.
18430
18431 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18432
18433         * class.c: fixed test for public method when overriding interfaces.
18434         Closes bug #40970.
18435
18436 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
18437
18438         * appdomain.h, domain.c: added mono_domain_foreach() to
18439         be able to access the currently loaded appdomains.
18440         * object.c: make string interning work across sppdomains.
18441         Mark some functions for use as icalls.
18442
18443 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
18444
18445         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
18446
18447         * reflection.h reflection.c: Allocate long living data using 
18448         GC_MALLOC_ATOMIC so the collector does not need to scan it.
18449
18450         * reflection.c: Double the allocation size in streams instead of
18451         increasing it, to prevent unneccesary copying on large assemblies.
18452         
18453         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
18454         creation if the assembly does not have the Run flag set.
18455
18456 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
18457
18458         * class.h: avoid the C++ keywords in header files (Jerome Laban
18459         spotted and fixed this).
18460
18461 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18462
18463         * object.c:
18464         (mono_unhandled_exception): fill in the arguments for the
18465         UnhandledException event. Only trigger that event for the default
18466         domain (as MS does).
18467
18468 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
18469
18470         * object.c: Improve typed allocation stuff based on suggestions from
18471         Paolo. Also turn it on if the GC library supports it.
18472
18473 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
18474
18475         * object.c object.h class.h: Added experimental typed allocation
18476         facility using the interfaces in gc_gcj.h.
18477
18478         * os/gc_wrapper.h: Added new include files.
18479         
18480 2003-04-03  Martin Baulig  <martin@ximian.com>
18481
18482         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
18483         which is not yet enabled by default.
18484
18485         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
18486         functions.
18487         (mono_gc_lock, mono_gc_unlock): New static functions.
18488
18489         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
18490         functions; stop/start the world for the garbage collector.  This
18491         is using the windows API; we need to complete the SuspendThread()/
18492         ResumeThread() implementation in the io-layer to make this work on Unix.
18493         (mono_gc_push_all_stacks): New public function; tells the garbage
18494         collector about the stack pointers from all managed threads.
18495
18496 2003-04-03  Martin Baulig  <martin@ximian.com>
18497
18498         * object.h (MonoThread): Added `gpointer stack_ptr'.
18499
18500         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
18501
18502 2003-04-03  Martin Baulig  <martin@ximian.com>
18503
18504         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
18505
18506 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
18507
18508         * reflection.c (typebuilder_setup_fields): Initialize field.first and
18509         field.last.
18510
18511 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
18512
18513         * loader.c (mono_lookup_internal_call): Report the corlib that is
18514         out of sync.
18515
18516 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
18517
18518         * icall.c (ves_icall_type_GetTypeCode): fixed check for
18519         System.DBNull (it's class not valuetype).
18520
18521 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
18522
18523         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
18524         if the array method was already assigned a token (fixes bug#40646).
18525
18526 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
18527
18528         * reflection.c (mono_reflection_get_type): Attempt type resolve even
18529         if no assembly is given.
18530
18531 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
18532
18533         * metadata.h: Added the new tables.
18534
18535         * row-indexes.h: Added definitions for new tables.
18536
18537         * metadata.c: Add schemas for new tables, and add support for
18538         computing the sizes of them.
18539
18540         * class.c: Update for handling the new type cases.
18541
18542 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
18543
18544         * metadata.h (MONO_TYPE_IS_VOID): new macro
18545
18546 2003-03-31  Martin Baulig  <martin@ximian.com>
18547
18548         * threads.h (MonoThreadCallbacks): Added `thread_created'.
18549
18550         * threads.c (mono_thread_new_init): Call `thread_created' in the
18551         mono_thread_callbacks.
18552
18553 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
18554
18555         * loader.h: added marshalbyrefobject_class to mono_defaults
18556         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
18557         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
18558           generation of output parameters.
18559           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
18560         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
18561           contextbound and the target object belongs to the context of the caller.
18562         * object.h: added context and unwrapped_server variables in MonoRealProxy.
18563         * object.c: Implemented support for interfaces and abstract classes
18564           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
18565           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
18566
18567 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
18568
18569         * class.h class.c (mono_class_is_subclass_of): New function.
18570         
18571         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
18572         routines for most common case (calls from ArrayList::ToArray).
18573
18574         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
18575         routine so programs which call Environment::Exit() can be profiled.
18576
18577         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
18578         Added MONO_ARCH_SAVE_REGS.
18579
18580         * icall.c (ves_icall_type_is_subtype_of): Use new function.
18581
18582 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
18583
18584         * blob.h: Add a couple of new MonoType types definitions.
18585
18586         * tabledefs.h: Add a couple of new call convs.
18587
18588 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
18589
18590         * reflection.h (MonoReflectionDynamicAssembly): track changes in
18591         the layout of the class.
18592
18593         * reflection.c (alloc_table): double the size on overflow to avoid
18594         unnecessary copying.
18595
18596         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
18597         avoid filling out metadata tables and blobs. Also set mb->ilgen to
18598         null so it can be garbage collected.
18599         
18600 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
18601
18602         * reflection.c (mono_reflection_get_type): Return the resolved type
18603         only if it is in the assembly we searched.
18604
18605         * reflection.c (ensure_runtime_vtable): Initialize method slots.
18606
18607         * class.c (mono_class_setup_vtable): Set the slot of the overriding
18608         method.
18609
18610 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18611
18612         * appdomain.c:
18613         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
18614         the right one is 'file:///blah', but MS allows it.
18615         * assembly.c:
18616         (mono_assembly_open): allow 'file://blah'
18617
18618         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
18619
18620 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
18621
18622         * socket-io.c: fixes bug #40310.
18623
18624 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
18625
18626         * reflection.c (mono_reflection_parse_type): handle deeply nested
18627         types correctly.
18628
18629         * reflection.c (mono_image_create_token): Use unique token values
18630         since they will be put into a hash table.
18631
18632         * class.c (mono_class_setup_vtable): If a method occurs in more than
18633         one place in the vtable, and it gets overriden, then change the
18634         other occurances too.
18635
18636         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
18637         object as return type.
18638
18639 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
18640
18641         * icall.c: Deleted "ToString" implementation for double and float
18642         because they are full implemented in managed code.
18643
18644 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18645
18646         * reflection.c, reflection.h: implemented and exported functions
18647         to retrieve info about custom attributes.
18648
18649 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18650
18651         * appdomain.c: moved Uri handling to assembly.c
18652         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
18653         work when using a file Uri in *nix and windows.
18654
18655         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
18656         GetReferencedAssemblies.
18657
18658 2003-03-18  Dick Porter  <dick@ximian.com>
18659
18660         * icall.c: Rename a couple of internal calls
18661
18662         * threads.c: Set the thread state to Stopped when a thread exits.
18663         Fixes bug 39377.
18664
18665 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
18666
18667         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
18668         New icall.
18669
18670         * object.c (mono_class_vtable): fix warning.
18671
18672 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
18673
18674         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
18675
18676         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
18677         memory.
18678         (method_encode_clauses): Create exception info structures in the right
18679         order.
18680         (mono_reflection_setup_internal_class): Initialize supertypes field.
18681
18682         * class.c object.c: Handle interfaces which implement other interfaces 
18683         correctly.
18684
18685         * class.h class.c: Move the supertypes array initialization code into 
18686         a separate function so it can be used for dynamic types too. Also call
18687         it earlier, in mono_class_init(), since it can be used before the
18688         type is initialized.
18689
18690 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18691
18692         * Makefile.am:
18693         * assembly.c:
18694         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
18695
18696         * appdomain.c:
18697         * appdomain.h:
18698         * marshal.c:
18699         * object.c: remove warnings.
18700
18701 2003-03-13  Martin Baulig  <martin@ximian.com>
18702
18703         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
18704         (MonoDebugLexicalBlockEntry): New types.
18705
18706         * debug-mono-symfile.c
18707         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
18708
18709 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18710
18711         * process.c: ret can be any non-zero value accroding to MS doc.
18712
18713 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
18714
18715         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
18716         fixing a warning for a miss-used prototype, would have cause
18717         random memory corruption.
18718
18719 2003-03-07  Martin Baulig  <martin@ximian.com>
18720
18721         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
18722         getting really annoying ....
18723
18724 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
18725
18726         * reflection.c (fixup_method): added support for array methods.
18727
18728 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
18729
18730         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
18731         (pointed out by Michael Adams).
18732
18733 2003-03-04  Dick Porter  <dick@ximian.com>
18734
18735         * icall.c: Temporarily reverted the Double and Single ToString()
18736         change, because it broke nunit.
18737
18738 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
18739
18740         * object.h, threads.h: make include files compatible with C++
18741         (patch by Jerome Laban <jlaban@wanadoo.fr>).
18742
18743 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
18744
18745         * icall.c: Erased ToString helper functions for Double and Single.
18746         Now, that implementations ar all in managed code (Double and Single
18747         Formatters).
18748
18749 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
18750
18751         * appdomain.c: Added method for initializing the default context of
18752         a domain. Added internal call for getting the default context.
18753         * appdomain.h: Added context variable in MonoDomain struct.
18754         * domain.c: mono_domain_set also sets the default context of the domain
18755         * icall.c: Mapped internal method InternalGetDefaultContext.
18756         * object.c: mono_object_get_virtual_method returns always a remoting
18757         wrapper if the object is a transparent proxy.
18758         mono_runtime_invoke_array: when creating an object by calling the
18759         constructor, if the created object is a proxy, then the constructor should
18760         be called using the a remoting wrapper.
18761
18762 2003-03-03  Dick Porter  <dick@ximian.com>
18763
18764         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
18765         variable so it compiles on solaris.  Problem spotted by
18766         Christopher Taylor <ct@cs.clemson.edu>
18767
18768 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18769
18770         * appdomain.c:
18771         (get_info_from_assembly_name): don't leak value.
18772
18773         * icall.c:
18774         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
18775         result.
18776
18777 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
18778
18779         * assembly.c: export mono_image_load_references ().
18780         * class.c: handle function pointers. mono_class_from_name() now
18781         supports nested type names directly.
18782
18783 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
18784
18785         * reflection.h reflection.c: Encode already created dynamic methods 
18786         and fields correctly as a DEF instead of a REF.
18787
18788         * reflection.c: Get rid of the force_ref argument to 
18789         mono_image_typedef_or_ref since it was wrong in the first place.
18790
18791         * string-icalls.c: add error checking to string constructors according
18792         to the MSDN docs.
18793
18794         * reflection.c: Emit types in the order their TypeBuilders were 
18795         created. Previously, a new table index was assigned to each type before
18796         the tables were emitted. This was wrong because the signature blob
18797         might already refer to a type by its original table index.
18798
18799 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
18800
18801         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
18802         change.
18803         
18804 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18805
18806         * Makefile.am: make assemblies dir have \ instead of / on windows.
18807
18808 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
18809
18810         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
18811         iterate over the NESTEDCLASS table using a linear search since the
18812         table is not guaranteed to be sorted by the secondary key.
18813
18814         * class.c (mono_class_create_from_typedef): fixed up call to
18815         mono_metadata_nesting_typedef.
18816         
18817 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
18818
18819         * marshal.c (mono_string_to_byvalstr): clear the memory as
18820         suggested by Jerome Laban <jlaban@wanadoo.fr>
18821
18822 2003-02-26  Dick Porter  <dick@ximian.com>
18823
18824         * process.c: Cope with padding in .rsrc blocks
18825
18826 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
18827
18828         * metadata.h: reverted the filter_len change, it breaks reflection
18829         
18830 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
18831
18832         * metadata.h: added a new field to store the filter_len
18833         
18834
18835 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
18836
18837         * reflection.c: handle custom attributes for types and members
18838         created with Reflection.Emit (bug#38422).
18839
18840 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
18841
18842         * reflection.c: define RTSpecialName automatically for constructors for
18843         compatibility with MS.NET.
18844
18845         * reflection.c (mono_reflection_create_runtime_class): initialize
18846         nested_in field of dynamically created classes.
18847
18848 2003-02-22  Martin Baulig  <martin@ximian.com>
18849
18850         * debug-mono-symfile.h: Incremented version number.
18851
18852 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
18853
18854         * object.h icall.c process.c: fix warnings.
18855
18856 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
18857
18858         * appdomain.h appdomain.c:
18859         (mono_domain_try_type_resolve): split the 
18860         name_or_tb argument into a name and a tb argument.
18861         (mono_domain_has_type_resolve): new function to check whenever the
18862         application has registered a TypeResolve event handler.
18863         
18864         * icall.c reflection.h reflection.c: move the type resolve logic into
18865         mono_reflection_get_type () so it will be invoked when 
18866         Assembly::GetType () is called.
18867
18868         * reflection.c:
18869         (mono_reflection_get_type): renamed to get_type_internal.
18870         (mono_reflection_get_type): fixed type name generation so it works 
18871         for nested types too.
18872         (mono_reflection_get_type): call has_type_resolve () to avoid the 
18873         costly type name generation if there is no resolve event handler.
18874
18875 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18876
18877         * class.c, image.c: load exported types from file references.
18878
18879 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
18880
18881         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
18882           used to cache the managed methods used to create proxies and make 
18883           remote invocation of methods.
18884         * class.h: Added in MonoVTable a flag to indicate that a class needs 
18885           to be remotely created.
18886         * object.c: Modified the method mono_class_vtable(). It now initializes 
18887           the remote flag of the vtable. Modified mono_object_new_specific(), 
18888           so now it checks the remote flag.
18889         * icall.c: Added a couple of internal methods, one for enabling instance 
18890           creation interception for a type, and one for creating objects bypassing
18891           the remote check.
18892
18893 2003-02-18  Martin Baulig  <martin@ximian.com>
18894
18895         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
18896         New interncall to get a method's metadata token.
18897
18898         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
18899         New interncall for the debugger.
18900
18901 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
18902
18903         * class.c (mono_class_setup_vtable): allocate supertype array
18904
18905 2003-02-18  Martin Baulig  <martin@ximian.com>
18906
18907         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
18908
18909 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18910
18911         * reflection.c:
18912         (assembly_name_to_aname): jump over unknown properties (i've found
18913         something like: 'type, assembly, version=xxx, custom=null, public...',
18914         so now will ignore custom=null and still get the rest of the values).
18915
18916 2003-02-17  Dick Porter  <dick@ximian.com>
18917
18918         * threads.c: Have Thread.Start() wait for a semaphore to signal
18919         that the thread has set up all its local data.  This fixes bug
18920         34323, where Abort() raced the new thread's TLS data.
18921
18922         Also removes the handle_store() call from start_wrapper, because
18923         threads are now always created suspended and there is no longer a
18924         race between the parent and child threads to store the info.
18925
18926 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
18927
18928         * image.c: explain the #- heap issue in a message, hopefully
18929         avoiding FAQs on mono-list.
18930
18931 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18932
18933         * icall.c:
18934         (GetEntryAssembly): if the domain has not invoked
18935         AppDomain.ExecuteAssembly yet, return the assembly of the default
18936         AppDomain.
18937
18938 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
18939
18940         * class.c (mono_ldtoken): make it work in dynamic assemblies.
18941
18942 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
18943
18944         * metadata.c, reflection.c: simple speedup to type hash
18945         and equals code.
18946
18947 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
18948
18949         * image.c, image.h, class.c, assembly.c: move module loading
18950         to MonoImage. When loading metadata, consider alignemnet from
18951         the start of metadata, not from the metadata address in memory.
18952
18953 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
18954
18955         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
18956         AssemblyBuilder objects. Factored out custom attribute creation into
18957         a separate function.
18958         (create_custom_attr): new function to create custom attributes.
18959
18960 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
18961
18962         * Makefile.am: Got tired of typing the full pathname to pedump.
18963         Until there is another option, am installing this.
18964
18965 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
18966
18967         * class.c (class_compute_field_layout): always set field->parent 
18968         (mono_ldtoken): use mono_defaults.fieldhandle_class;
18969
18970 2003-02-11  Dick Porter  <dick@ximian.com>
18971
18972         * threads-types.h:
18973         * monitor.c: Rewrote Monitor, making lock much faster and
18974         Pulse/Wait work as specified.  Also uses much fewer handles, and only
18975         creates them as needed.
18976
18977         * exception.c: Added SynchronizationLockException
18978
18979         * threads.c: Deleted old Monitor implementation.  The new one is
18980         in a new file.
18981
18982 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
18983
18984         * class.c: handled TypedReference type code. Set the correct size for
18985         class data. Setup interface_offsets for interface classes, too.
18986
18987 2003-02-09  Martin Baulig  <martin@ximian.com>
18988
18989         * debug-mono-symfile.h: Reflect latest symbol writer changes.
18990
18991 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
18992
18993         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
18994         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
18995         * object.c: fixed mono_object_get_virtual_method () for interfaces.
18996         * verify.c: check for code that runs after the end of the method.
18997
18998 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
18999
19000         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
19001         "System.Math::Round2".
19002         * sysmath.h: Added Floor, Round and Round2 definitions.
19003         * sysmath.c: Modified certain functions that were not 100% compliant
19004         with MS.NET (math precision) and added the implementation of Floor,
19005         Round and Round2.
19006
19007 2003-02-07  Martin Baulig  <martin@ximian.com>
19008
19009         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
19010
19011 2003-02-07  Martin Baulig  <martin@ximian.com>
19012
19013         * debug-mono-symfile.c: Reflected latest symwriter changes.
19014         (mono_debug_create_mono_symbol_file): Removed.
19015         (mono_debug_open_mono_symbol_file): Take an argument which
19016         specifies whether to create a dynamic symbol file.
19017
19018 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
19019
19020         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
19021
19022 2003-02-05  Martin Baulig  <martin@ximian.com>
19023
19024         * reflection.c (mono_image_build_metadata): Make this public,
19025         protect it against being called multiple times, don't create
19026         resources and don't build the compressed metadata here.
19027         (mono_image_create_pefile): Do this here.
19028
19029         * icall.c
19030         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
19031
19032 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19033
19034         * socket-io.c: fixed bug #36322.
19035
19036 2003-02-06  Piers Haken <piersh@friskit.com>
19037
19038         * appdomain.[ch]:
19039         * class.h:
19040         * debug-mono-symfile.c:
19041         * icall.c:
19042         * loader.c:
19043         * mono-config.c:
19044         * monosn.c:
19045         * reflection.c:
19046         * socket-io.c: warning cleanups
19047
19048 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
19049
19050         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
19051         function. works like remoting invoke, but does a check for the Proxy first.
19052
19053 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
19054
19055         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
19056
19057 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
19058
19059         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
19060         array of pointers.
19061         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
19062         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
19063
19064         * object.c (mono_store_remote_field_new): used by the new jit
19065         instead of mono_store_remote_field
19066         (mono_load_remote_field_new): used by the new jit
19067         instead of mono_load_remote_field
19068
19069 2003-02-05  Patrik Torstensson
19070
19071         * appdomain.c: changed unload to take the domain id instead
19072         of domain
19073         
19074         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
19075
19076
19077 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19078
19079         * appdomain.c: don't look for assemblies in ApplicationBase if
19080         PrivateBinPathProbe is set.
19081
19082 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19083
19084         * object.c: make the first argument in main_args contain the absolute
19085         path to the assembly. Fixes bug #37511.
19086
19087 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19088
19089         * icall.c: get correct UTC offset for countries not using daylight
19090         time saving. Fixes bug #30030.
19091
19092 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19093
19094         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
19095         and 1 are the family).
19096
19097 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
19098
19099         * icall.c (ves_icall_InternalExecute): removed wrong assertion
19100
19101         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
19102
19103 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
19104
19105         * reflection.c: added support for SignatureHelper tokens, which is
19106         needed by the Calli opcode.
19107
19108         * reflection.h: track changes to SignatureHelper class.
19109
19110         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
19111
19112 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19113
19114         * appdomain.c: fixed loading assemblies from PrivateBinPath.
19115
19116 2003-02-03  Patrik Torstensson
19117         * appdomain.[c|h], domain.c : 
19118          - Added support for getting a domain via domain id
19119          - Support for setting and getting domain from System.AppDomain 
19120            (used in cross appdomain channel)
19121          - Added support for get/set for a MonoAppContext on a thread 
19122            (Context class in System.Runtime.Remoting.Contexts),
19123          - Removed hack in Get/SetData and ExecuteAssembly.
19124         
19125         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
19126         the managed world to get control when a proxy is created.
19127
19128         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
19129         
19130 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
19131
19132         * icall.c
19133         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
19134         Populate the codebase field as well.
19135
19136 2003-02-02  Martin Baulig  <martin@ximian.com>
19137
19138         * debug-mono-symfile.c
19139         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
19140         (mono_debug_symfile_add_method): Allow interncalls.
19141
19142 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19143
19144         * icall.c: throw parse exception if strtod fails or the string is empty.
19145
19146 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
19147
19148         * marshal.c: handle object type separately from defined
19149         class types.
19150
19151 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
19152
19153         * marshal.c: handle NATIVE_LPSTR for strings when it's
19154         explicitly specified.
19155
19156 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
19157
19158         * reflection.c, reflection.h, icall.c: setup the reflection
19159         handle cache for ModuleBuilders and AssemblyBuilders.
19160
19161 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
19162
19163         * reflection.c (reflection_methodbuilder_to_mono_method): set
19164         pinvoke flag
19165
19166 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19167
19168         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
19169
19170 2003-01-29  Dick Porter  <dick@ximian.com>
19171
19172         * threads.c: No need for the fake_thread kludge now that Thread
19173         doesn't run a class constructor
19174         
19175 2003-01-29  Dick Porter  <dick@ximian.com>
19176
19177         * threads.c: Use g_direct_hash instead of the rather bogus
19178         g_int_hash
19179
19180 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
19181
19182         * marshal.c (mono_marshal_get_native_wrapper): add check for null
19183         (fix pinvoke12.exe)
19184         (mono_marshal_get_struct_to_ptr): generate valid IL code
19185         (mono_marshal_get_ptr_to_struct): generate valid IL code
19186         (*): correctly set sig->pinvoke, we need to memdup the signature
19187         to do that
19188
19189 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
19190
19191         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
19192         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
19193
19194 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
19195
19196         * profiler.c: provide more callers information.
19197
19198 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
19199
19200         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
19201
19202         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
19203
19204         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
19205
19206 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
19207
19208         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
19209         exception instead of going into an infinite loop on dates which it 
19210         can't yet handle.
19211
19212         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
19213         out-of-range exception if needed.
19214
19215         * class.c (mono_class_setup_vtable): allow a virtual method to provide
19216         an implementation for an interface method and to override an inherited
19217         method at the same time. 
19218         Imagine a scenario when a virtual method is used to override a
19219         virtual abstract method in a parent class, and this same method 
19220         provides an implementation for an method inherited from an interface. 
19221         In this case, the interface resolution code will set im->slot, which 
19222         means that the virtual method override pass will skip this method 
19223         which means a pointer to the abstract method inherited from the parent
19224         will remain in the vtable of this non-abstract class.
19225
19226         * class.c: (mono_class_setup_vtable): continue search for a real 
19227         method if only an abstract method is found.     
19228
19229 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
19230
19231         * reflection.c: add size to encoding for ByValStr and ByValArray
19232         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
19233
19234 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
19235
19236         * class.c (mono_class_setup_vtable): pass the override info as an
19237         argument.
19238
19239         * class.c (mono_class_setup_vtable): set the slot of overriding methods
19240         correctly.
19241         
19242         * reflection.c (ensure_runtime_vtable); add support for method 
19243         overrides.
19244         
19245 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
19246
19247         * reflection.c (resolution_scope_from_image): Hack to work to work with
19248         dynamic assemblies.
19249
19250         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
19251         added a 'force_ref' argument to force this function to allways return 
19252         a TypeRef. This is needed by mono_image_get_memberref_token ().
19253         
19254 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
19255
19256         * reflection.c (mono_image_get_type_info): interfaces really don't have
19257         a parent.
19258
19259         * reflection.c (mono_image_basic_init): fill out missing fields of
19260         image structure.
19261
19262         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
19263         dynamic assemblies. This is required so dynamic assemblies show up in
19264         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
19265         Type::GetType() etc. This is consistent with MS behaviour.
19266
19267         * image.c image.h reflection.c: add newly created classes to the name 
19268         cache so mono_class_get () will find them.      
19269
19270 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
19271
19272         First part of changes to get IKVM.NET running under mono.
19273         
19274         * appdomain.h, appdomain.c: added new function 
19275         mono_domain_try_type_resolve() which will emit TypeResolve events. 
19276         This function will call AppDomain::DoTypeResolve to do the actual work.
19277
19278         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
19279         moved existing code dealing with dynamic tokens to a new function 
19280         called mono_reflection_lookup_dynamic_token (). This function will 
19281         raise TypeResolve events when appropriate. Since reflection.c is not 
19282         part of libmetadata, a new hook function called 
19283         mono_lookup_dynamic_token() is added to class.c which will call this.
19284
19285         * assembly.h assembly.c: make the invoke_load_hook function public,
19286         so it can be called for dynamic assemblies.
19287
19288         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
19289
19290         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
19291         type isn't found.
19292
19293         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
19294         MonoGHashTable, since it contains pointers to objects which the GC 
19295         needs to track.
19296
19297         * assembly.c (search_loaded): remove unused variable.
19298         
19299 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
19300
19301         * object.c: fixed issue exposed by gcc-generated IL programs
19302         that use RVA data for pointers.
19303
19304 2003-01-25  Martin Baulig  <martin@ximian.com>
19305
19306         * threads.c (start_wrapper): Moved the initialization of
19307         `start_func' above the mono_new_thread_init() call to which we
19308         pass it as argument.
19309
19310 2003-01-24  Martin Baulig  <martin@ximian.com>
19311
19312         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
19313         the MonoThread pointer.
19314
19315 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
19316
19317         * icall.c: Rename `PowImpl' to Pow.
19318
19319 2003-01-23  Dick Porter  <dick@ximian.com>
19320
19321         * threads.c (start_wrapper): Create a Thread object if needed, so
19322         the Main() thread can do the class initialisation in a subthread
19323         that has been set up to allow managed code execution.
19324
19325         Pass the thread ID instead of the MonoThread pointer to the thread
19326         start and attach callbacks.  This change is required, because the
19327         jit thread start callback must be called _before_ the Thread
19328         object can be created.
19329         
19330         (mono_thread_init): Removed much object creation code that is no
19331         longer needed.  No managed code is called from here now.
19332
19333         * object.c (mono_runtime_exec_managed_code): Create a subthread
19334         for Main, and call back to the runtime to use it.
19335         Set the exit code when Main exits.
19336
19337         * gc.c: Make sure domain finalisation happens in a subthread.
19338         Re-enable threaded GC, fixing bug 31333 (again).
19339
19340         * environment.c: System.Environment internall calls (so far just
19341         ExitCode is here, the others are still in icall.c)
19342
19343         * appdomain.c (mono_runtime_cleanup): All threads running managed
19344         code should have finished before mono_runtime_cleanup() is
19345         reached, so no need to clean up threads.
19346
19347 2003-01-22  Martin Baulig  <martin@ximian.com>
19348
19349         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
19350         `gpointer func' arguments.      
19351         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
19352         but added `MonoThread *thread' argument.
19353         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
19354
19355         * threads.c (mono_new_thread_init): Added `gpointer func' argument
19356         and pass it to the mono_thread_start_cb callback.
19357         (mono_install_thread_callbacks): New public function to install a
19358         set of callbacks which are set by the debugger.
19359         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
19360
19361 2003-01-22  Martin Baulig  <martin@ximian.com>
19362
19363         * Makefile.am: Install debug-mono-symfile.h.
19364
19365 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
19366
19367         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
19368
19369 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
19370
19371         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
19372         * class.c (mono_ptr_class_get): correctly set access levels of pointers
19373         (mono_array_class_get): correctly set access levels of arrays
19374
19375 2003-01-20      Patrik Torstensson
19376         * image.h (MonoAssemblyName): changed major, minor, build, revision
19377         from signed to unsigned.
19378
19379 2003-01-20  sean kasun <skasun@azstarnet.com>
19380
19381         * reflection.c (load_cattr_value): Now this handles
19382         MONO_TYPE_SZARRAY.  Fixes bug #35629
19383
19384 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
19385
19386         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
19387         integer value
19388
19389 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19390
19391         * decimal.c: fixed bug #26056.
19392
19393 2003-01-17  Martin Baulig  <martin@ximian.com>
19394
19395         * gc.c: Raise an ExecutionEngineException instead of using g_error().
19396
19397 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19398
19399         * exception.[ch]:
19400         (mono_get_exception_type_initialization): new function.
19401
19402         * object.c: throw a TypeInitializationException when an exception is
19403         thrown invoking the class constructor.
19404
19405 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19406
19407         * reflection.c: fixed attribute reading.
19408
19409 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19410
19411         * icall.c:
19412         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
19413         provided, look for the type in the calling assembly and then in
19414         mscorlib; if the assembly name is provided, only try that one.
19415
19416 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
19417
19418         * object.c: register the vtable before there is a chance it's
19419         queried again recursively.
19420
19421 2003-01-13  Duncan Mak  <duncan@ximian.com>
19422
19423         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
19424         gc-internal.h. 
19425         
19426 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
19427
19428         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
19429
19430 2003-01-11  Martin Baulig  <martin@ximian.com>
19431
19432         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
19433         this to 20 for the release.
19434
19435 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
19436
19437         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
19438
19439         * loader.c (mono_method_get_marshal_info): bug fix
19440
19441         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
19442         structures with explicit layout
19443
19444 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
19445
19446         * profiler.c: made the output more readable (and sorted). 
19447         Added caller information for the allocation profiler.
19448
19449 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
19450
19451         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
19452
19453 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19454
19455         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
19456         to get value types.
19457         
19458 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
19459
19460         * object.c, profiler.h, profiler.c, profiler-private.h:
19461         Added object allocation profiler.
19462
19463 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
19464
19465         * reflection.h, reflection.c: handle global methods.
19466         Compress blob entries.
19467
19468 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
19469
19470         * marshal.c: fix compilation.
19471
19472 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
19473
19474         * loader.c (mono_method_get_marshal_info): impl.
19475
19476         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
19477
19478 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19479
19480         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
19481         for reference types.
19482
19483 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
19484
19485         * loader.c: fixed off by one error in loaded parameter names.
19486
19487 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
19488
19489         * marshal.c (mono_marshal_get_icall_wrapper): like
19490         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
19491         instead of a MonoMethod.
19492
19493 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19494
19495         * decimal.c: fixed bug #36537.
19496
19497 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
19498
19499         * marshal.c: throw a missing method exception if a
19500         P/Invoke method is not found.
19501
19502 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
19503
19504         * icall.c: allow a null this for constructors.
19505
19506 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
19507
19508         * icall.c: raise the proper exceptions if the arguments to the
19509         internal Invoke are incorrect.
19510
19511 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
19512
19513         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
19514
19515 2003-01-03  Martin Baulig  <martin@ximian.com>
19516
19517         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
19518
19519 2002-12-31  Martin Baulig  <martin@ximian.com>
19520
19521         * debug-mono-symfile.c: Completely rewrote the type section.
19522         Instead of using individual malloc()ed fields, we use one big
19523         continuous memory area and offsets into this area.
19524         See the comments in the source code for details.
19525
19526 2002-12-30  Martin Baulig  <martin@ximian.com>
19527
19528         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
19529
19530 2002-12-30  Martin Baulig  <martin@ximian.com>
19531
19532         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
19533         line number table in this data blob instead of using an external
19534         pointer.
19535
19536 2002-12-28  Martin Baulig  <martin@ximian.com>
19537
19538         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
19539
19540 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
19541
19542         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
19543         as a boxed return type.
19544
19545 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
19546
19547         * appdomain.c
19548         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
19549         g_build_filename to properly get separators on the filename created.
19550
19551         * object.h: Small change, introduce MonoMarshalByRefObject to
19552         track the layout of that structure in the C# universe as we make
19553         changes there.
19554
19555 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
19556
19557         * object.c: removed assert to allow static fields on interfaces.
19558         * loader.c: a TypeSpec may be used for any type, not just arrays.
19559
19560 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19561
19562         * class.c, class.h: added mono_class_array_element_size ().
19563         Ignore static methods in interfaces.
19564
19565 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19566
19567         * threads.c: fixed the build under cygwin.
19568
19569 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
19570
19571         * reflection.c: handle nullref constants. Allocate keys for
19572         reflection handles with the GC.
19573
19574 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
19575
19576         * threads.c, threads.h: added mono_thread_get_abort_signal()
19577         to get a suitable signal for thread abort.
19578
19579 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
19580
19581         * metadata.c: fix handling of ExportedType table.
19582
19583 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19584
19585         * icall.c: added WriteWindowsDebugString internal call.
19586
19587 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19588
19589         * reflection.h: added fields to match C# implementation.
19590
19591 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19592
19593         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
19594
19595 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
19596
19597         * gc.h, gc-internal.h: Rename header for GC internal calls to
19598         gc-internal.h from gc.h as to not clash with Boehm GC having its
19599         header installed as <gc.h> in outside include paths.
19600         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
19601         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
19602
19603 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19604
19605         * icall.c: assign minor, build and revision in FillName.
19606
19607 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
19608
19609         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
19610         Added support for running code generated by Reflection.Emit.
19611
19612 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19613
19614         * appdomain.c: check for NULL argument in LoadFrom.
19615
19616 2002-12-10  Dick Porter  <dick@ximian.com>
19617
19618         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
19619
19620 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19621
19622         * appdomain.c: fix buglet when building exe file name.  Handle full
19623         assembly name (needed after latest changes to AssemblyName).
19624         * image.c:
19625         (mono_image_close): free some hashtables.
19626
19627 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
19628
19629         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
19630         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
19631         on some systems (redhat 7.3) 
19632
19633 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
19634
19635         * threads.c: delete the critical section of a sync block,
19636         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
19637
19638 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
19639
19640         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
19641
19642 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19643
19644         * appdomain.[ch]: handle the assembly preload event to try loading the
19645         assemblies using the paths we have in the current domain.
19646
19647         * assembly.[ch]: created an assembly preload hook that is called to try
19648         loading the assembly by other means that the ones provided here.
19649
19650         * domain.c: initialize the domain search path.
19651
19652         From now on, assemblies (TODO: except corlib and System) are loaded
19653         according to these rules when using mono_assembly_load ():
19654
19655                 1. It tries to load the assembly from the ApplicationBase
19656                 of the current domain appending .dll and .exe (TODO: have to
19657                 try loading from name/name.dll and name/name.exe).
19658
19659                 2. It tries the search path specified in PrivateBinPath for the
19660                 current domain (if any).
19661
19662                 3. Previous behavior.
19663
19664 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
19665
19666         * icall.c: implemented GetInterfaceMap() related icall.
19667         * domain.c, loader.h: load MethodInfo in mono_defaults.
19668
19669 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19670
19671         * gc.c: disable the finalizer thread for now, untill all the issues
19672         with it are resolved.
19673
19674 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19675
19676         * string-icalls.c: handle embedded nulls in string ctor when the
19677         length is specified.
19678
19679 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19680
19681         * class.c: look for explicit interface implementation in parent
19682         classes, too.
19683
19684 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
19685
19686         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
19687
19688 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
19689
19690         * gc.c: protect handles with a critical section.
19691
19692 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19693
19694         * icall.c:
19695         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
19696         parameters. If no assembly specified, try getting the type from all
19697         the assemblies in the current domain, else, load the assembly and get
19698         the type from it.
19699
19700 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19701
19702         * marshal.c: applied patch from Aleksey Demakov that fixes
19703         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
19704
19705 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19706
19707         * icall.c: fixed get_location.
19708
19709 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
19710
19711         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
19712         declarations to make it work with older gcc. 
19713
19714         * loader.c (mono_get_method): set signature->pinvoke for native calls
19715
19716 2002-11-20  Dick Porter  <dick@ximian.com>
19717
19718         * threads.c (mono_thread_init): Set the main thread's handle
19719
19720 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
19721
19722         * gc.c: allow compilation without GC support. Changed to match the
19723         mono coding style.
19724
19725 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19726
19727         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
19728
19729 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
19730
19731         * reflection.c: set a public key token on the core assemblies.
19732
19733 2002-11-18  Dick Porter  <dick@ximian.com>
19734
19735         * threads.c: Split out some thread initialisation so that other
19736         files can set the start callback function.
19737
19738         * gc.c: Run finalisers in a separate thread, to avoid stack
19739         overflow.  Fixes bug 31333.
19740
19741         * appdomain.c: Set up GC finalisation thread.
19742
19743         * reflection.c: 
19744         * object.c: 
19745         * domain.c: Use gc.h macros for GC_malloc
19746         
19747 2002-11-15  Dick Porter  <dick@ximian.com>
19748
19749         * threadpool.c: 
19750         * threads.c:
19751         * appdomain.c: Removed mono_runtime_init_with_attach(),
19752         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
19753         merging the extra parameter with the existing function.  Removed
19754         unneeded code in mono_thread_attach().
19755
19756 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
19757
19758         * image.c (mono_image_loaded_by_guid): a method to get loaded
19759         images by guid. 
19760         (load_metadata_ptrs): we store the guid as string.
19761
19762 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
19763
19764         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
19765
19766         * metadata.c (mono_guid_to_string): imported method form Zoltan
19767         Varga (slightly modified)
19768
19769         * assembly.c (mono_assembly_open): load precompiled code
19770
19771         * loader.h (MonoMethod): we store the method token for use in the
19772         aot compiler. 
19773
19774 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19775
19776         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
19777         the hook function called when an assembly is loaded.
19778         
19779         * domain.c: Modified file.
19780         (mono_domain_assembly_load): removed hash table insertion of assemblies.
19781
19782         Fixes bug #33196.
19783
19784 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
19785
19786         * reflection.c: Map PEFileKind to the value expected by the WinNT
19787         image loader. 
19788
19789 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19790
19791         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
19792         Read until the buffer is filled completely.
19793
19794 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19795
19796         * icall.c: implemented MonoType.InternalGetEvent ().
19797
19798 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19799
19800         * appdomain.c: implemented InitAppDomainSetup. Delayed
19801         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
19802         the entry_assembly.
19803
19804         * assembly.c: base_dir is now an absolute path ending with
19805         G_DIR_SEPARATOR.
19806
19807         * icall.c: modified get_location according to the above changes.
19808
19809         * object.c: init AppDomain.SetupInformation for the default domain after
19810         we have the entry assembly.
19811
19812         * domain.c: when unloading a domain, setup = NULL.
19813
19814 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
19815
19816         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
19817
19818 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
19819
19820         * object.h, object.c: introduced mono_object_get_virtual_method ()
19821         to lookup the method invoked on an object when a callvirt is done on
19822         a method.
19823         * icall.c: make MethodInfo::Invoke() always do a virtual call.
19824
19825 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19826
19827         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
19828         current domain when loaded an assembly and failed to load it.
19829
19830         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
19831
19832 2002-10-31  Dick Porter  <dick@ximian.com>
19833
19834         * icall.c: 
19835         * file-io.h: 
19836         * file-io.c: Return the error status in a parameter, as the
19837         GetLastError() value has long since been blown away if we try and
19838         look it up in a subsequent internal call invocation.  Delete the
19839         GetLastError() internal call, because it's useless.
19840
19841 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
19842
19843         * class.[ch]: added cast_class to fix bug 29517
19844
19845 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
19846
19847         * marshal.c: create valid IL code in the filter clause:
19848         the new JIT is less forgiving:-)
19849
19850 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19851
19852         * icall.c: removed get_property internal call.
19853
19854 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
19855
19856         * appdomain.h domain.c: Added an ID to appdomains.
19857         
19858         * threads.c threads.h icall.c: Implement icall
19859         Thread:GetDomainID(), and remove unused icall 
19860         CurrentThreadDomain_internal.
19861
19862 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19863
19864         * icall.c: Don't recurse through the base types in GetConstructor.
19865         Fixes bug #32063. 
19866
19867 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
19868
19869         * mempool.h, mempool.c: added mono_mempool_empty() and
19870         mono_mempool_stats().
19871
19872 2002-10-23  Dick Porter  <dick@ximian.com>
19873
19874         * file-io.c: 
19875         * file-io.h: 
19876         * icall.c: Added MonoIO.GetFileType internal call
19877
19878 2002-10-17  Dick Porter  <dick@ximian.com>
19879
19880         * appdomain.c (mono_runtime_cleanup): Don't signal the async
19881         delegate semaphore before waiting for all threads to finish,
19882         because new threads can also call async delegates.  Fixes bug
19883         32004.
19884
19885         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
19886         of 3 seconds, in case another async job is queued.  (This part is
19887         needed because the bug fix reintroduced the 3s exit lag.)  This
19888         makes the mono_runtime_shutdown flag superfluous.
19889
19890 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
19891
19892         * reflection.c: include ehader size in method section headers.
19893         Really check for suplicated modules entries.
19894
19895 2002-10-17  Martin Baulig  <martin@gnome.org>
19896
19897         * debug-mono-symfile.c: Added back support for locals.
19898
19899 2002-10-14  Martin Baulig  <martin@gnome.org>
19900
19901         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
19902         MONO_TYPE_VOID.
19903
19904 2002-10-14  Martin Baulig  <martin@gnome.org>
19905
19906         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
19907         mono_class_get() instead of looking in the class cache. 
19908
19909 2002-10-13  Martin Baulig  <martin@gnome.org>
19910
19911         * debug-mono-symfile.c: Set version number to 28, include the
19912         signature in method names.
19913
19914 2002-10-13  Martin Baulig  <martin@gnome.org>
19915
19916         * debug-mono-symfile.h: Set version number to 27.
19917
19918 2002-10-11  Martin Baulig  <martin@gnome.org>
19919
19920         * gc.c: Don't register/unregister NULL pointers as disappearing links.
19921
19922 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19923
19924         * metadata.c, metadata.h: added helper function to allocate signatures.
19925
19926 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19927
19928         * icall.c: added internal call to get the location of machine.config.
19929
19930 2002-10-08  Martin Baulig  <martin@gnome.org>
19931
19932         * debug-mono-symfile.c: Ignore classes with a pending init for the
19933         moment.
19934
19935 2002-10-03  Dick Porter  <dick@ximian.com>
19936
19937         * threads.c: Freebsd pthread_t is a pointer
19938
19939 2002-10-03  Dick Porter  <dick@ximian.com>
19940
19941         * socket-io.c: Implemented GetHostName_internal
19942
19943 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19944
19945         * mono-config.c:
19946         (mono_config_parse_file): don't leak the text.
19947
19948 2002-10-02  Martin Baulig  <martin@gnome.org>
19949
19950         * debug-mono-symfile.c: Added support for methods.
19951
19952 2002-10-01  Martin Baulig  <martin@gnome.org>
19953
19954         * debug-mono-symfile.c: Don't emit methods and line numbers for
19955         the dynamic symbol file, just write the type table.  We can easily
19956         have an external helper program which creates a symbol file for an
19957         IL file.        
19958
19959 2002-10-01  Dick Porter  <dick@ximian.com>
19960
19961         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
19962         Only add the handle to the cleanup array when we're about to
19963         launch the thread.  Bug 31425 deadlocked when the test was run on
19964         mono under w32.
19965
19966 2002-10-01  Martin Baulig  <martin@gnome.org>
19967
19968         * debug-mono-symfile.c: Added support for properties.
19969
19970 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19971
19972         * reflection.c: unaligned store fix from Mark Crichton
19973         <crichton@gimp.org>.
19974
19975 2002-09-27  Martin Baulig  <martin@gnome.org>
19976
19977         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
19978         New interncall.
19979
19980 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
19981
19982         * assembly.h, assembly.c: use a sane API to hook into the assembly
19983         loading process instead of a useless special-purpouse hack
19984         (ngen needs a hook, too, for example).
19985
19986 2002-09-27  Dick Porter  <dick@ximian.com>
19987
19988         * threads.c (mono_thread_init): Call GetCurrentProcess() so
19989         io-layer can set up some process handle info.  Not needed on w32,
19990         but doesn't hurt either.
19991
19992         * process.c: Pass the program name in the second parameter to
19993         CreateProcess, so the path is searched.  Include the working
19994         directory. Implemented process name, process enumeration, and some
19995         process detail internal calls.
19996         
19997         * icall.c: Added internal calls for process lookup, and some
19998         process details
19999
20000 2002-09-26  Martin Baulig  <martin@gnome.org>
20001
20002         * assembly.c (mono_install_open_assembly_hook): New global
20003         function to install a function to be invoked each time a new
20004         assembly is loaded.
20005         (mono_assembly_open): Run this callback function if set.
20006
20007         * debug-mono-symfile.c: Put back line numbers for the dynamic
20008         symbol file and also record the .il file as source file.  This
20009         allows us to install the temporary symbol file as `file.dbg' just
20010         like a compiler-generated one.
20011
20012 2002-09-26  Nick Zigarovich <nick@chemlab.org>
20013
20014         * Corrected typo in gc.c (BOHEM vs BOEHM).
20015
20016 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20017
20018         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
20019         GetProperties. Also avoid calling g_slist_length in GetProperties and
20020         GetMethods.
20021
20022 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
20023
20024         * reflection.c: avoid unaligned stores (bug spotted by
20025         Mark Crichton  <crichton@gimp.org>).
20026
20027 2002-09-25  Martin Baulig  <martin@gnome.org>
20028
20029         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
20030         instead of guint64 for addresses and added prologue/epilogue info.
20031
20032 2002-09-25  Martin Baulig  <martin@gnome.org>
20033
20034         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
20035         store line number info.  For the dynamic symbol file, we only need
20036         to provide the JIT generated dynamic line number info for the dynamic
20037         symbol file.
20038
20039 2002-09-25  Martin Baulig  <martin@gnome.org>
20040
20041         * debug-mono-symfile.h: Incremented version number.
20042
20043 2002-09-24  Martin Baulig  <martin@gnome.org>
20044
20045         * class.c (mono_debugger_class_init_func): New global function
20046         pointer variable.
20047         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
20048         call it.
20049
20050         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
20051         function.  This is called via the mono_debugger_class_init_func
20052         hook to add all types to the dynamic type table.
20053         (ves_icall_MonoDebugger_GetType): New interncall to get a class
20054         from its metadata token.
20055
20056         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
20057         New interncall for the debugger.
20058
20059 2002-09-24  Nick Drochak <ndrochak@gol.com>
20060
20061         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
20062         before using it in case it is null.
20063         
20064 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20065
20066         * metadata.c: allow custom modifiers in local var signatures
20067         (bug spotted by Zoltan Varga).
20068
20069 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20070
20071         * class.c: deal with the <Module> class that may have a NULL vtable.
20072         Eliminate warnings.
20073
20074 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
20075
20076         * image.c, image.h: more strong name helpers.
20077         * monosn.c: more work: convert pem keys to cryptoapi format.
20078
20079 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
20080
20081         * string-icalls.c: speedup IndexOf.
20082
20083 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
20084
20085         * icall.c: updates from Zoltan.2.Varga@nokia.com.
20086
20087 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
20088
20089         * icall.c: cleanup: use mono_object_domain ().
20090
20091 2002-09-23  Martin Baulig  <martin@gnome.org>
20092
20093         * debug-mono-symfile.c: Improved type support.
20094
20095 2002-09-22  Martin Baulig  <martin@gnome.org>
20096
20097         * debug-mono-symfile.c: Added support for reference types and strings.
20098
20099 2002-09-22  Martin Baulig  <martin@gnome.org>
20100
20101         * debug-mono-symfile.c: Started to work on the type table.
20102
20103 2002-09-21  Martin Baulig  <martin@gnome.org>
20104
20105         * debug-mono-symfile.c: Largely reworked the symbol table format.
20106         The symbol table is now incrementally updated each time a new
20107         method is added.  We're now also using our own magic and version
20108         so that you don't need to recompile all your classes if the
20109         dynamic table changes.
20110         (mono_debug_update_mono_symbol_file): Removed.
20111         (mono_debug_symfile_add_method): New function to add a method.
20112
20113 2002-09-21  Martin Baulig  <martin@gnome.org>
20114
20115         * icall.c
20116         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
20117         New interncall.
20118
20119         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
20120         New interncall to get a method from its metadata token.
20121
20122 2002-09-21  Martin Baulig  <martin@gnome.org>
20123
20124         * debug-mono-symfile.c: Create type table.
20125
20126 2002-09-20  Martin Baulig  <martin@gnome.org>
20127
20128         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
20129
20130 2002-09-20  Martin Baulig  <martin@gnome.org>
20131
20132         * debug-mono-symfile.c: Provide information about params and locals.
20133
20134 2002-09-20  Martin Baulig  <martin@gnome.org>
20135
20136         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
20137         New interncall.
20138
20139         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
20140         interncall to get a method from its metadata token.
20141
20142 2002-09-20  Martin Baulig  <martin@gnome.org>
20143
20144         * debug-mono-symfile.c: Added a few checks for method->header
20145         being non-NULL.  This should never happen, but for the moment
20146         let's use a g_warning() rather than a g_assert().
20147
20148 2002-09-19  Mark Crichton  <crichton@gimp.org>
20149
20150         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
20151         even if support for it isn't present.  Added an #ifdef to fix this.
20152
20153         * socket-io.c: Added checks back for Solaris support.
20154
20155 2002-09-19  Martin Baulig  <martin@gnome.org>
20156
20157         * debug-mono-symfile.c (read_string, write_string): Reflect latest
20158         changes in the symbol file format.
20159
20160 2002-09-18  Martin Baulig  <martin@gnome.org>
20161
20162         * debug-mono-symfile.c: Set version number to 21.
20163
20164 2002-09-18  Dick Porter  <dick@ximian.com>
20165
20166         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
20167         on netbsd.  Fixes bug 30051.
20168
20169 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20170
20171         * reflection.c:
20172         (set_version_from_string): little fix.
20173
20174 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
20175
20176         * monosn.c, Makefile.am: added strong name utility.
20177         * reflection.h, reflection.c: implemented delayed signing,
20178         locale, version and hash id assembly attributes.
20179
20180 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
20181
20182         * loader.c, metadata.c: load param attributes in signatures.
20183
20184 2002-09-16  Martin Baulig  <martin@gnome.org>
20185
20186         * debug-mono-symfile.c: Added string table with all method names.
20187
20188 2002-09-14  Martin Baulig  <martin@gnome.org>
20189
20190         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
20191         fast method lookup.
20192
20193 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
20194
20195         * reflection.c: record the public key token of referenced assemblies.
20196
20197 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
20198
20199         * image.c, image.h: added functions to get the strong name and the
20200         public key of an assembly.
20201         * pedump.c: use them.
20202
20203 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
20204
20205         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
20206
20207 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
20208
20209         * marshal.c (mono_marshal_get_managed_wrapper): Added
20210         MONO_TYPE_BOOLEAN 
20211
20212 2002-09-11  Martin Baulig  <martin@gnome.org>
20213
20214         * gc.c: Call GC_unregister_disappearing_link() on all links when
20215         finalizing them, this is necessary to aviod a crash in boehm's
20216         finalize handler.
20217
20218 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
20219
20220         * gc.c: handle GetTarget for finalized objects spotted and fixed by
20221         nick@chemlab.org.
20222
20223 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
20224
20225         * icall.c: implemented MonoType::Module.
20226         * reflection.c, reflection.h: mono_module_get_object () from
20227         Tomi Pakarinen <tomi.pakarinen@welho.com>.
20228
20229 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20230
20231         * icall.c: ignore overridden methods in GetMethods ().
20232         Fix for FieldInfo::SetValue().
20233         * object.c: handle float/double in runtime invoke.
20234
20235 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20236
20237         * object.c: allow a constructor to be called again on an object.
20238
20239 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
20240
20241         * class.h, class.c: move field layout code to it's own function and
20242         export it. Get an interface id earlier. Move fields in MonoClass
20243         so they are more cache friendly and align the bitfields.
20244         * loader.c: temporary handle get_param_names() for a runtime method.
20245         * reflection.c, reflection.h: more code to handle runtime creation of
20246         types.
20247
20248 2002-09-09  Martin Baulig  <martin@gnome.org>
20249
20250         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
20251         signature with the pinvoke field being set for the actual call.
20252
20253 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20254
20255         * icall.c: removed some unused icalls. Start of map of glib charsets
20256         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
20257
20258 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
20259
20260         * debug-helpers.c: break infinite loop (found and fixed by
20261         Holger Arnold <harnold@gmx.de>).
20262
20263 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
20264
20265         * icall.c: target may be null in create_delegate.
20266
20267 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
20268
20269         * marshal.c: handle a boolean return type.
20270
20271 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
20272
20273         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
20274
20275 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
20276
20277         * gc.c: fix weakreferences.
20278
20279 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
20280
20281         * icall.c: added icall to get default codepage.
20282
20283 2002-09-03  Dick Porter  <dick@ximian.com>
20284
20285         * threads.h: 
20286         * threads.c: Use MonoThread instead of MonoObject where
20287         apropriate.
20288
20289         Store running thread objects in a hash table, so that we have all
20290         the info to hand when waiting for them to finish
20291         (means we don't need OpenThread() any more, so mingw builds should
20292         be fully functional again.)
20293
20294         * verify.c:
20295         * object.h: Added thread ID to MonoThread
20296
20297 2002-09-03  Martin Baulig  <martin@gnome.org>
20298
20299         * icall.c (System.Reflection.Assembly::get_location): New interncall.
20300
20301 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20302
20303         * icall.c: fixed leak in get_temp_path. Thanks lupus.
20304
20305 2002-09-03  Martin Baulig  <martin@gnome.org>
20306
20307         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
20308         argument to store the end address of the disassembled instruction.
20309
20310         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
20311         here from debug-symfile.h.
20312         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
20313         JIT into this struct.
20314         (MonoSymbolFile): Added `char *image_file' field.
20315         (MonoDebugGetMethodFunc): Removed.
20316         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
20317         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
20318         (mono_debug_find_method): New method.
20319
20320         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
20321         create a full symbol file.
20322         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
20323         and static symbol files.
20324         (mono_debug_find_method): The symbol file keeps an internal method hash,
20325         call this to get a MonoDebugMethodInfo from a MonoMethod.
20326
20327         * debug-symfile.[ch]: Removed.
20328
20329 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
20330
20331         * image.c (do_mono_image_open): Remove linker version check.
20332
20333 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
20334
20335         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
20336         wrappers for instance methods.
20337         
20338 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20339
20340         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
20341
20342 2002-08-28  Dick Porter  <dick@ximian.com>
20343
20344         * Makefile.am: Export HOST_CC for w32 builds
20345
20346 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
20347
20348         * file-io.c process.c: MonoString are null terminated, no
20349         need for mono_string_to_utf16() anymore.
20350
20351 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20352
20353         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
20354
20355 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
20356
20357         * icall.c, reflection.h: speedup System.MonoType.
20358
20359 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
20360
20361         * reflection.c: allow null as the value of a string argument in
20362         custom attributes constructors.
20363
20364 2002-08-27  Martin Baulig  <martin@gnome.org>
20365
20366         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
20367         `trampoline_address' field.
20368
20369 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
20370
20371         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
20372         check (fixes bug #29486) 
20373
20374 2002-08-27  Martin Baulig  <martin@gnome.org>
20375
20376         * debug-mono-symfile.c: Changed the file format in a way that allows us
20377         open it read-only and to use a specially malloced area for all the
20378         dynamic data.  We can now also generate a symbol file on-the-fly if we're
20379         debugging IL code and there is no MCS generated symbol file for it.
20380
20381 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20382
20383         * object.c: added a define for a good string and array
20384         creation speedup (not enabled by default because we need to deal with
20385         the synch stuff).
20386
20387 2002-08-26  Martin Baulig  <martin@gnome.org>
20388
20389         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
20390         function to create a dynamic symbol file.  This is used by the
20391         debugger to create a symbol file for IL code on-the-fly.
20392
20393 2002-08-26  Martin Baulig  <martin@gnome.org>
20394
20395         * loader.c (mono_lookup_pinvoke_call): Include the error message
20396         from g_module_error() in the error message.
20397
20398 2002-08-24  Martin Baulig  <martin@gnome.org>
20399
20400         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
20401         function to update the symbol file.  The symbol file is mmap()ed
20402         writable, but private.  This allows us to install the symbol file
20403         together with the assembly.
20404
20405 2002-08-24  Martin Baulig  <martin@gnome.org>
20406
20407         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
20408         but they can read the new symbol file format which mcs is now creating.
20409
20410         * debug-symfile.c (mono_debug_find_source_location): Moved to
20411         debug-mono-symfile.c; this is now operating on the new symbol file.
20412
20413 2002-08-23  Martin Baulig  <martin@gnome.org>
20414
20415         * debug-helpers.c (mono_method_desc_from_method): New function to get
20416         a MonoMethodDesc from a MonoMethod.
20417
20418 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
20419
20420         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
20421         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
20422
20423 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
20424
20425         * string-icalls.[ch]: make helper methods static.
20426
20427 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20428
20429         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
20430         types to it and to SetValueInternal.
20431
20432         * object.c: Moved handle_enum label to its proper place. This was the
20433         f... bug! ;-)
20434
20435         This time i compiled mcs and gtk-sharp and they both work.
20436
20437 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20438
20439         * icall.c: reverted partially my previous patch until 
20440         object.c:set_value handles enums correcly.
20441
20442 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20443
20444         * icall.c:
20445         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
20446         (ves_icall_System_Environment_get_MachineName): removed warning when
20447         compiling under cygwin.
20448
20449 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20450
20451         * object.c: fixed field_get_value() for reference types.
20452
20453 2002-08-22  Dick Porter  <dick@ximian.com>
20454
20455         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
20456         Don't free a buffer while it's still needed.  Patch from Jonathan
20457         Liger <Jonathan.liger@wanadoo.fr>
20458
20459 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
20460
20461         * icall.c (ves_icall_System_Environment_get_Platform): Add new
20462         internal call.
20463
20464 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
20465
20466         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
20467         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
20468
20469         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
20470         we call unmanaged code which throws exceptions.
20471
20472 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
20473
20474         * appdomain.h: added per-domain entry_assembly.
20475         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
20476         arguments.
20477         * icall.c: Assembly::GetEntryAssembly icall.
20478         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
20479         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
20480
20481 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
20482
20483         * appdomain.h, gc.c: added mono_domain_finalize ().
20484
20485 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20486
20487         * object.c:
20488         (mono_print_unhandled_exception): changed g_warning by g_printerr
20489         because g_log has a 1024 characters limit (yeah, i got a big stack
20490         trace). Don't print exception name, that should be in ToString 
20491         returned string.
20492
20493 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20494
20495         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
20496         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
20497
20498 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20499
20500         * object.c:
20501         (mono_print_unhandled_exception): after previous commit, i realized
20502         that MS calls ToString on the exception. I changed this function to
20503         do that. This way we get stack_trace for free.
20504
20505 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20506
20507         * object.c:
20508         (mono_print_unhandled_exception): invoke Message property instead of
20509         getting 'message' field from Exception. Don't allocate memory for
20510         'trace' and 'message' if not needed.
20511
20512 2002-08-18  Dick Porter  <dick@ximian.com>
20513
20514         * unicode.c: Fix asserts to match Encoder.cs checks
20515
20516 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20517
20518         * marshal.c: fix unaligned store issue and a few wrong
20519         opcode argument types.
20520
20521 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20522
20523         * icall.c: added GetUninitializedObjectInternal internal call.
20524
20525 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
20526
20527         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
20528         to the right domain.
20529
20530 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
20531
20532         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
20533
20534         * class.c (class_compute_field_layout): set blittable to false for Strings
20535
20536         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
20537
20538 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20539
20540         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
20541         first chunk of code to create types at runtime. Code to
20542         handle ReflectedType/DeclaringType. Make reflection handles
20543         domain specific.
20544
20545 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
20546
20547         * class.c: set correct name in arrays.
20548
20549 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
20550
20551         * appdomain.c (mono_domain_transfer_object): make it work with
20552         valuetypes. bug fixes.
20553
20554 2002-08-12  Dick Porter  <dick@ximian.com>
20555
20556         * object.h: Rename some parameters to avoid c++ keywords (Patch
20557         from Joseph Wenninger <kde@jowenn.at>)
20558
20559 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
20560
20561         * icall.c: added icall to implement Assembly.GetFile*.
20562
20563 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
20564
20565         * reflection.h, reflection.c: code to embed managed resources.
20566
20567 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
20568
20569         * class.c: move all the type size stuff into
20570         class_compute_field_layout().
20571
20572 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
20573
20574         * class.c: ensure enums have always the correct instance size.
20575         * unicode.c: remove wrong assert.
20576
20577 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20578
20579         * assembly.c: fix mem corruption issue.
20580         * image.h, image.c: added mono_image_get_resource () to access
20581         managed resources.
20582         * icall.c: implemented Assembly.EntryPoint property and some
20583         Managed Resources related internalcalls.
20584
20585
20586 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
20587
20588         * image.c, image.h: impemented mono_image_get_entry_point ().
20589         * appdomain.c: use mono_image_get_entry_point.
20590
20591 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
20592
20593         * reflection.c: support the object type argument when loading
20594         custom attributes.
20595
20596 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
20597
20598         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
20599         String as return type.
20600
20601 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
20602
20603         * reflection.c: fix encoding of named args for custom attrs to match
20604         the ms implementation. Read them back when instantiating custom
20605         attributes.
20606
20607 2002-08-02  Radek Doulik  <rodo@ximian.com>
20608
20609         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
20610         by Dietmar as quick fix
20611         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
20612         16 as stack size, used on more places as quick fix before Dietmar
20613         will fix it properly
20614
20615 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
20616
20617         * object.h, object.c: added accessors for fields and properties.
20618
20619 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
20620
20621         * class.c, class.h: made mono_class_get_field_from_name ()
20622         loop on parent types.
20623         Added mono_class_get_property_from_name ().
20624
20625 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20626
20627         * class.c, class.h: move the code to setup the type vtable in its own
20628         function so that it can be reused also for types created at runtime.
20629         Eliminate the "class" identifier from the header file.
20630         * reflection.c: setup the vtable for enums so that we can create
20631         objects for use in SetConstant ().
20632
20633 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
20634
20635         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
20636         instead of the delegate itself as this pointer (bug #28383)
20637
20638 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
20639
20640         * marshal.c (mono_marshal_get_managed_wrapper): added return type
20641         conversions.
20642
20643 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20644
20645         * loader.c: don't set the pinvoke bit on icalls.
20646
20647 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
20648
20649         * debug-helpers.c (mono_method_full_name): only print a number to
20650         indicate wrapper type (so that the output is more readable in traces).
20651
20652 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
20653
20654         * class.c (mono_class_init): include method override patch from Paolo
20655
20656 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
20657
20658         * icall.c: fixed GetTypeCode().
20659
20660 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
20661
20662         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
20663         use real delegate invoke function to make it work with multicast
20664         delegates (fix bug# 28291).
20665
20666 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20667
20668         * object.c: load constant strings.
20669
20670 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20671
20672         * reflection.c: no magic numbers.
20673         * tabledefs.h: security action enum.
20674
20675 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20676
20677         * assembly.c: fix possible memory corruption.
20678
20679 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
20680
20681         * reflection.h, reflection.c: added support for linking resources.
20682         * verify.c: check we have an updated corlib.
20683
20684 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
20685
20686         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
20687         string arrays.
20688         (mono_marshal_string_array): null terminate unmanaged string arrays.
20689         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
20690
20691 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20692
20693         * icall.c: Type.GetType () can now return also types from the
20694         calling assembly.
20695
20696 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
20697
20698         * loader.h, loader.c: stack walking support.
20699         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
20700         GetCallingAssembly.
20701
20702 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
20703
20704         * marshal.c: added optimisations for blittable types 
20705
20706         * class.c (mono_array_class_get): do not set blittable attribute on arrays
20707         (mono_class_setup_mono_type): set blittable attribute for single
20708         and double.
20709
20710         * marshal.c (mono_string_utf8_to_builder): impl.
20711         (mono_string_builder_to_utf8): impl.
20712         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
20713
20714 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
20715
20716         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
20717         (mono_marshal_get_managed_wrapper): impl. byref types
20718
20719 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20720
20721         * icall.c:
20722         (search_method): don't display debug message. 
20723
20724 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
20725
20726         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
20727
20728 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
20729
20730         * appdomain.c: set the missing filename when throwing exception.
20731
20732 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
20733
20734         * metadata.c (mono_type_size): code cleanup
20735         (mono_type_stack_size): removed some test code
20736
20737 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
20738
20739         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
20740         mono_get_exception_file_not_found now.
20741
20742         * exception.c (mono_exception_from_name_two_strings): New version
20743         that will call a constructor with two string arguments. 
20744         (mono_get_exception_file_not_found): New helper routine, used to
20745         report file-not-found errors.
20746
20747 2002-07-20  Dick Porter  <dick@ximian.com>
20748
20749         * process.h:
20750         * process.c: Pass file handles to CreateProcess
20751         
20752         * icall.c:
20753         * file-io.h:
20754         * file-io.c: Implemented CreatePipe
20755
20756 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
20757
20758         * metadata.c (mono_get_param_info): set alignment for value types
20759
20760 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20761
20762         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
20763         Constify mono_domain_assembly_open().
20764         * loader.c: handle null namespace in icalls.
20765
20766 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
20767
20768         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
20769         (emit_str_to_ptr_conv): marshal object as structs
20770
20771         * metadata.c (mono_type_to_unmanaged): marshal object as structs
20772
20773         * marshal.c (mono_marshal_get_runtime_invoke): support value types
20774
20775 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
20776
20777         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
20778         (mono_marshal_get_native_wrapper): we an now return value types
20779
20780 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20781
20782         * verify.c: more checks implemented.
20783
20784 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
20785
20786         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
20787         (fix bug #27695)
20788         (mono_marshal_get_native_wrapper): allow byref arguments
20789         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
20790         impl. PtrToStringXXX methods
20791         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
20792         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
20793         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
20794         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
20795         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
20796
20797 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20798
20799         * reflection.c: fix buglet in parsing an assembly name.
20800
20801 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
20802
20803         * marshal.c (emit_ptr_to_str_conv): first impl.
20804
20805 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20806
20807         * object.c, class.h: cache the vtable in the class as suggested by
20808         vargaz@freemail.hu (Zoltan Varga).
20809
20810 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20811
20812         * class.h, loader.c: added mono_field_from_token().
20813         * verify.c: first cut of type checking code.
20814
20815 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
20816
20817         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
20818
20819 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
20820
20821         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
20822         (fix bug #27782)
20823         (mono_marshal_get_remoting_invoke): impl.
20824         (mono_delegate_begin_invoke): impl.
20825         (mono_mb_emit_save_args): impl.
20826         (mono_delegate_end_invoke): impl.
20827         (mono_marshal_get_delegate_begin_invoke):
20828         (mono_marshal_get_delegate_end_invoke):
20829         (mono_marshal_get_delegate_invoke): generate a special name for
20830         those methods (including the signature) and associate them whith
20831         the delegate class. 
20832
20833 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
20834
20835         * reflection.[ch]: 
20836         (mono_reflection_type_from_name): now it has a MonoImage parameter
20837         which is used as the default image to search the type in. If the image
20838         is NULL or getting the type from it fails, it defaults to corlib.
20839
20840         * icall.c: changed 1 call to mono_reflection_type_from_name to match
20841         new parameter.
20842
20843 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20844
20845         * reflection.c: update the parameter table index.
20846
20847 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
20848
20849         * domain.c: don't include the mark byte in the string hash.
20850
20851 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
20852
20853         * icall.cs: icall for Type.GetTypeCode ().
20854         * verify: a couple of fixes and disabled local initialization checks.
20855
20856 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
20857
20858         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
20859
20860         * debug-helpers.c (mono_method_full_name): print the type of the
20861         runtime wrapper
20862
20863         * metadata.c (mono_signature_hash): a hash function for signatures
20864         (mono_signature_hash): better hash algorithm
20865
20866         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
20867
20868         * debug-helpers.c (mono_method_full_name): this can now generate
20869         method names with signatures
20870
20871         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
20872         method dont have this pointers.
20873
20874 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20875
20876         * reflection.c: fixup typebuilder tokens.
20877         * image.c: fix buglet.
20878         * marshal.h: remove whitespace.
20879         * metadata.h, metadata.c: reinstate code that was removed.
20880         * verify.c: handle catch directives and fix another couple of bugs.
20881
20882 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
20883
20884         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
20885         (mono_marshal_get_native_wrapper): make it comp. with the old code
20886         (mono_marshal_get_native_wrapper): support boolean
20887         (mono_marshal_get_managed_wrapper): support more types
20888
20889 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
20890
20891         * class.c (class_compute_field_layout): compute class->blittable attribute.
20892
20893 2002-07-09  Dick Porter  <dick@ximian.com>
20894
20895         * threads.c: Make the thread cleaning up cope with threads that
20896         call ExitThread()
20897
20898 2002-07-08  Radek Doulik  <rodo@ximian.com>
20899
20900         * reflection.c (method_encode_code): use non-translated values to
20901         compute finally_start, this fixes exception handling on ppc, yay!
20902
20903         * decimal.h (struct signscale): fix endianess
20904
20905 2002-07-07  Radek Doulik  <rodo@ximian.com>
20906
20907         * reflection.c: swap box_val and not val
20908
20909 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
20910
20911         * reflection.c, reflection.h: handle full assembly info in type name.
20912         Handle Type arguments when loading custom attributes.
20913         * icall.c: updated to use new mono_reflection_type_from_name () method.
20914
20915 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20916
20917         * loader.c:
20918         (method_from_memberref): also print assembly name when method not found.
20919
20920 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20921
20922         * icall.c:
20923         (ves_icall_TypeGetProperties): fixed bug #27473. 
20924
20925 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20926
20927         * reflection.c: display image name and token when cannot find the
20928         .ctor for an attribute.
20929
20930 2002-07-05  Martin Baulig  <martin@gnome.org>
20931
20932         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
20933
20934 2002-07-04  Dick Porter  <dick@ximian.com>
20935
20936         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
20937         compile on mingw.  This will cause mingw builds to not wait for
20938         subthreads to terminate after the main thread does.  I've lodged a
20939         bug with the mingw developers for them to wrap OpenThread().
20940
20941 2002-07-03  Dick Porter  <dick@ximian.com>
20942
20943         * threads.c: Store thread IDs instead of handles, because
20944         GetCurrentThread() returns a pseudohandle and therefore stores
20945         useless values.  mono_thread_cleanup() continues checking the
20946         array of threads until it is empty, to cope with subthreads
20947         spawning new threads after the main thread has finished.
20948
20949         * profiler.h:
20950         * profiler.c:
20951         * profiler-private.h: Pass the thread ID to thread profiler
20952         functions, instead of a handle
20953
20954 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20955
20956         * verify.c: fixes to make it more usable.
20957         * pedump.c: added --verify code to verify IL code in an assembly.
20958
20959 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20960
20961         * reflection.c: turn errors into warnings to allow compiling corlib.
20962
20963 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
20964
20965         * reflection.c: add special cases to compile corlib.
20966
20967 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
20968
20969         * reflection.c: handle properties with only a set method.
20970
20971 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20972
20973         * opcodes.h: add enum with opcodes in opval order.
20974
20975 2002-07-01  Dick Porter  <dick@ximian.com>
20976         
20977         * object.h:
20978         * object.c (mono_runtime_run_main): Removed unneeded argument
20979
20980 2002-06-28  Martin Baulig  <martin@gnome.org>
20981
20982         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
20983
20984 2002-06-27  Dick Porter  <dick@ximian.com>
20985
20986         * threads.c: Store the handle in both the parent thread and in the
20987         subthread, to minimise the time between starting a new thread and
20988         storing its ID.
20989
20990 2002-06-26  Dick Porter  <dick@ximian.com>
20991
20992         * appdomain.c (mono_runtime_cleanup): Close the socket library
20993         after all the threads have finished, not before
20994
20995 2002-06-26  Martin Baulig  <martin@gnome.org>
20996
20997         * debug-symfile.c (mono_debug_find_source_location): Added
20998         `guint32 *line_number' argument.  If it's not NULL, store the line number
20999         there and return the file name without the line number.
21000
21001 2002-06-25  Dick Porter  <dick@ximian.com>
21002
21003         * icall.c:
21004         * process.h:
21005         * process.c: Process forking and other support functions
21006
21007 2002-06-25  Dick Porter  <dick@ximian.com>
21008
21009         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
21010         things dont happen when the image is closed.
21011         (mono_image_lookup_resource): Walk the resource section looking
21012         for a particular entry
21013
21014         * cil-coff.h: PE resource section decoding
21015
21016 2002-06-25  Dick Porter  <dick@ximian.com>
21017         
21018         * assembly.h:
21019         * assembly.c: 
21020         (mono_assembly_foreach): Accessor functions to walk the list of
21021         loaded assemblies
21022         (mono_assembly_set_main):
21023         (mono_assembly_get_main): Process methods need to know which
21024         assembly is the "main" one
21025
21026         * object.c (mono_runtime_run_main): Record the main assembly
21027
21028         * debug-helpers.c: Fix typo
21029
21030 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
21031
21032         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
21033         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
21034
21035 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
21036
21037         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
21038
21039 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
21040
21041         * image.c (do_mono_image_open): Initialize reference count,
21042         otherwise we leak the MonoImage.
21043
21044 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
21045
21046         * reflection.c: small tweak to handle self-hosting.
21047
21048 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
21049
21050         * reflection.c: fix type name parse code.
21051
21052 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
21053
21054         * reflection.c: break out of the loop.
21055         * image.c: special case corlib.
21056
21057 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
21058
21059         * reflection.c: add all the custom attrs at the end to ensure the
21060         ctors have been properly initialized when the attributes are defined
21061         in the current assembly.
21062
21063 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
21064
21065         * reflection.c: handle correctly multiple-nested types.
21066
21067 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
21068
21069         * row-indexes.h: fix typos.
21070         * reflection.c: adjust for typos and fix method_def_or_ref
21071         encoding in MethodImpl table.
21072
21073 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
21074
21075         * reflection.c: fix entry point patching (thanks Serge!).
21076
21077 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
21078
21079         * verify.c: add check for System.Exception
21080
21081 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
21082
21083         * image.c, class.c: minifix for code just c&p'ed.
21084         * reflection.c: warning fix.
21085         * object.h, loader.h, domain.c: load also StringBuilder.
21086
21087 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
21088
21089         * marshal.h, marshal.c: some support code to handle complex marshaling.
21090
21091 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
21092
21093         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
21094         Better signatures with vtable error dump.
21095
21096 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
21097
21098         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
21099
21100 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
21101
21102         * icall.c (ves_icall_Type_GetField): impl.
21103
21104 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
21105
21106         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
21107         to retrieve a marshal description blob for a field or param.
21108
21109 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
21110
21111         * reflection.h, reflection.c: change order of nested type emission
21112         to avoid table corruption. The NestedTypes table is sorted.
21113         * icall.c: change order of GetConstructor results to workaround mcs bug.
21114
21115 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
21116
21117         * reflection.h, reflection.c: handle field and param marshal
21118         information.
21119
21120 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
21121
21122         * icall.c, marshal.c marshal.h: more Marshal class implementation.
21123
21124 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
21125
21126         * reflection.c: fix call convention.
21127
21128 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
21129
21130         * reflection.h, reflection.c: mono_image_get_memberref_token()
21131         takes a type instead of a class, now. Added
21132         mono_image_get_array_token() to create tokens for the special
21133         multi-dim array methods.
21134
21135 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
21136
21137         * assembly.c: handle modules (no assembly table). Split
21138         loading references in its own function.
21139         * class.c: handle moduleref resolution scope.
21140         * image.c, image.h: cache module name in image.
21141
21142 2002-06-07  Martin Baulig  <martin@gnome.org>
21143
21144         * reflection.c (mono_image_get_type_info): Only add a class layout entry
21145         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
21146
21147 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
21148
21149         * icall.c: more signature fixes that used uint instead of int.
21150
21151 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
21152
21153         * reflection.c: fixed signature of field refs.
21154
21155 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
21156
21157         * class.c, reflection.c: handle typerefs of nested types
21158         (both on read and when writing files).
21159
21160 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
21161
21162         * icall.c: fix method signatures that tried to workaround the previous
21163         typo, d'oh!
21164
21165 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
21166
21167         * debug-helpers.c: fix typo.
21168
21169 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
21170
21171         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
21172         rewrote the PE/COFF writing code (our programs are understood by the
21173         ms runtime, now).
21174
21175 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
21176
21177         * gc.c, gc.h, icall.c: weakreference support.
21178
21179 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
21180
21181         * Makefile.am, mono-config.c: use $(sysconfdir).
21182
21183 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
21184
21185         * icall.c: changed default precision of Double.ToString() to 15.
21186         Fixed memory leak. Unified with Single.ToString.
21187
21188 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
21189
21190         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
21191
21192 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
21193
21194         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
21195         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
21196         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
21197         and myself.
21198
21199 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
21200
21201         * debug-symfile.c, sysmath.c: yet more compilation fixes.
21202
21203 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
21204
21205         * reflection.c, socket-io.c: more compilation fixes.
21206
21207 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
21208
21209         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
21210         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
21211         unicode.c: warning and compiler compatibility fixes.
21212
21213 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
21214
21215         * class.h, metadata.c: fixed warnings/compilation errors.
21216
21217 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
21218
21219         * Makefile.am, mono-config.c, mono-config.h: configuration file
21220         support routines.
21221         * loader.c, loader.h: make Dll mapping configurable at runtime in the
21222         config file. Export methods to insert and lookup mappings.
21223
21224 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
21225
21226         * reflection.c: handle types and boxed objects in custom attr
21227         constructors.
21228
21229 2002-05-30  Martin Baulig  <martin@gnome.org>
21230
21231         * debug-symfile.c
21232         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
21233
21234 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
21235
21236         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
21237         to lookup the implmap row for a P/Invoke method.
21238         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
21239         P/Invoke method from the runtime on an as needed basis.
21240
21241 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
21242
21243         * metadata.c (mono_metadata_parse_signature): impl.
21244
21245 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
21246
21247         * class.c: handle .pack directive.
21248
21249 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
21250
21251         * object.c: initialize static fields with RVA data.
21252
21253 2002-05-25  Martin Baulig  <martin@gnome.org>
21254
21255         * debug-symfile.c
21256         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
21257
21258 2002-05-24  Martin Baulig  <martin@gnome.org>
21259
21260         * debug-symfile.c
21261         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
21262         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
21263         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
21264
21265 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
21266
21267         * object.c: special case string ctros in invoke.
21268         * gc.c: silly whitespace changes.
21269
21270 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
21271
21272         * threadpool.[ch]: impl. a threadpool that can
21273         be used by mint and mono.
21274
21275 2002-05-22  Martin Baulig  <martin@gnome.org>
21276
21277         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
21278         The first argument is now a `MonoReflectionModuleBuilder *', the return
21279         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
21280         `methods' field to get the method builder.  The `token' argument is the
21281         unfixed token.
21282
21283         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
21284         invalid characters instead of g_assert_not_reached()ing.  This seems
21285         to be the behaviour of mscorlib.
21286
21287 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
21288
21289         * object.c (mono_runtime_invoke_array): applied patch from Rachel
21290         Hestilow to fix bug #25104
21291
21292 2002-05-21  Martin Baulig  <martin@gnome.org>
21293
21294         * debug-symfile.c (mono_debug_find_source_location): New function.
21295         Looks up an IL offset in the line number table and returns the source
21296         location as a string.
21297
21298 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21299
21300         * icall.c:
21301         (mono_double_ToStringImpl): changed %f by %g until we have something
21302         better.
21303
21304 2002-05-21  Nick Drochak  <ndrochak@gol.com>
21305
21306         * icall.c : Use different name for Math.Pow's icall.  Needed to check
21307         parameters first in C#.
21308
21309 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
21310
21311         * icall.c, reflection.h: added icall to get info about an event.
21312
21313 2002-05-20  Radek Doulik  <rodo@ximian.com>
21314
21315         * object.c (mono_value_box): don't use memcpy for boxing on BIG
21316         endian
21317         (mono_value_box): don't use memcpy for small sizes on
21318         architectures with unaligned access
21319
21320 2002-05-20  Martin Baulig  <martin@gnome.org>
21321
21322         * reflection.c (mono_reflection_setup_internal_class): Don't crash
21323         if `tb->parent == NULL'.
21324         (mono_reflection_create_internal_class): New function.  This is
21325         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
21326         for enum types.
21327
21328         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
21329         New interncall.
21330
21331 2002-05-19  Martin Baulig  <martin@gnome.org>
21332
21333         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
21334         argument to get the length, don't default to the array length.
21335
21336 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
21337
21338         * assembly.c (mono_assembly_setrootdir): New function used to
21339         override the MONO_ASSEMBLIES directory.
21340
21341 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
21342
21343         * icall.c: ValueType_GetHashCode() initialize local var.
21344
21345 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
21346
21347         * reflection.c: sort custom attributes table.
21348
21349 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
21350
21351         * reflection.c: support named args in custom attributes (write support).
21352
21353 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
21354
21355         * reflection.c: fix finally position calculation.
21356
21357 2002-05-15  Radek Doulik  <rodo@ximian.com>
21358
21359         * reflection.c: fixed endianess at many places
21360
21361         * icall.c (ves_icall_InitializeArray): comment out debug msg
21362
21363 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
21364
21365         * object.c (mono_unhandled_exception): new function to handle
21366         unhandled exceptions.
21367         (mono_unhandled_exception): call the UnhandledException event.
21368         (mono_runtime_delegate_invoke): impl.
21369
21370 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
21371
21372         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
21373         returns the RVA, not the direct pointer to the data. Handle the case
21374         when the class size is fixed.
21375
21376 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
21377
21378         * reflection.c: fix some endianess issues.
21379
21380 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
21381
21382         * object.c (mono_runtime_invoke): is now able to catch exceptions.
21383
21384         * threads.c (mono_thread_init): added a callback which is invoked
21385         at thread start.
21386
21387 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
21388         
21389         * icall.c: make GetHashCode return non-negative values.
21390
21391 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
21392
21393         * object.c, icall.c, gc.c: revert to address-based hashcode.
21394
21395 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
21396
21397         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
21398
21399 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
21400
21401         * icall.c, class.c: special case <Module>.
21402
21403 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
21404
21405         * icall.c: fix bug in GetNow().
21406
21407 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
21408
21409         * object.c (mono_runtime_class_init): make sure that we call all
21410         static class constructors.
21411
21412 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
21413
21414         * reflection.c: sort methodsemantics table.
21415
21416 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
21417
21418         * reflection.h, reflection.c: honour init locals setting.
21419
21420 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
21421
21422         * icall.c: copied Double ToStringImpl for Single ToStringImpl
21423
21424 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
21425
21426         * reflection.c: support ContructorBuilders in attribute blob creation.
21427
21428 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
21429
21430         * reflection.c: some changes to build a binary that can be run
21431         directly in windows.
21432
21433 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
21434
21435         * loader.c: print a big message when an icall can't be found.
21436
21437 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21438
21439         * string-icalls.c: fix bug 24248.
21440
21441 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
21442
21443         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
21444         icall.c, reflection.h: separate assembly loading by pathname and by
21445         assembly name. Use the MONO_PATH env var to search for assemblies.
21446
21447 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
21448
21449         * assembly.c, image.h: add some support for assemblies
21450         with multiple modules.
21451         * class.c, class.h: export mono_class_from_typeref().
21452         * loader.c: remove duplicated code and use mono_class_from_typeref(),
21453         instead.
21454
21455 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
21456
21457         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
21458         documentation says (the ECMA one is correct).
21459
21460 2002-05-02  Dick Porter  <dick@ximian.com>
21461
21462         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
21463         Don't name the synchronisation mutex.
21464
21465 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
21466
21467         * rand.c
21468         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
21469         Make the prototypes match.
21470         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
21471         Same.
21472
21473         * icall.c
21474         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
21475         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
21476         all systems have tm.tm_zone, so use strftime() with %Z to print
21477         the timezone abreviation into a temp string.
21478
21479         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
21480         rather than mono_array_addr() on a MonoString on Big Endian
21481         machines.
21482
21483 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
21484
21485         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
21486         fix bug 24041
21487
21488 2002-04-30  Dick Porter  <dick@ximian.com>
21489
21490         * socket-io.c: Cope with SOCKET being an integer rather than a
21491         pointer now.
21492
21493         * threads.c: Added Thread_free_internal, to deal with thread
21494         handle cleanup.  Moved calls to handle_store() and handle_remove()
21495         to start_wrapper(), so each can only be called once.  Allocate
21496         synchronisation blocks with GC_malloc(), and use GC finalisation
21497         to close the handles.
21498
21499         * icall.c: added System.Threading.Thread::Thread_free_internal
21500
21501 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
21502
21503         * icall.c: support Environment.Exit, CommandLineArgs().
21504
21505 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
21506
21507         * object.c, object.h: added mono_runtime_run_main () and
21508         mono_runtime_get_main_args () for use in System.Environment.
21509
21510 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
21511
21512         * gc.c: fix thinko, enable actual finalization since the jit is now
21513         fixed.
21514
21515 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
21516
21517         * gc.c, object.c: take into account that an object may be offset wrt the address
21518         returned by GC_malloc().
21519
21520 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
21521
21522         * image.c: handle files without entries in the assembly table (modules).
21523
21524 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
21525
21526         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
21527         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
21528         allowed to be null when it's System.Object class setup.
21529
21530 2002-04-27  Martin Baulig  <martin@gnome.org>
21531
21532         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
21533         if `tb->parent == NULL' rather than crashing.
21534
21535 2002-04-28  Nick Drochak  <ndrochak@gol.com>
21536
21537         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
21538         calling acos() where asin() should have been called.
21539
21540 2002-04-26  Martin Baulig  <martin@gnome.org>
21541
21542         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
21543         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
21544         there's a subdirectory called `System', but we don't want to read that
21545         subdirectory as an assembly.
21546
21547 2002-04-25  Martin Baulig  <martin@gnome.org>
21548
21549         * debug-symfile.c: Reflect latest MonoString changes.
21550
21551 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
21552
21553         * rand.c, rand.h: instance method icalls need to have an explicit
21554         this pointer as first argument in the C implementation.
21555
21556 2002-04-25  Nick Drochak <ndrochak@gol.com>
21557
21558         * icall.c: Fix typo in map for GetNonZeroBytes
21559
21560 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
21561
21562         * string-icalls.c : String does now passes unit tests without any 
21563         errors, the following changes has been made:
21564         
21565         Implemented replace methods.
21566         Renaming of methods to (try) follow the standard.
21567         Fixed compare ordinal
21568         Made all memory allocated directly to function instead of via icall function.
21569         Small performance fix in is_in_array function
21570                         
21571  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
21572
21573         c (mono_string_Internal_ctor_charp_int_int):
21574         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
21575         sindex < 0, throw ArgumentOutOfRangeException instead of
21576         ArgumentNullException.
21577
21578         Added new check for length == 0, however
21579         I need to make it return String.Empty from the C code.
21580         
21581         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
21582         that calculate the length for us here.
21583         
21584         (mono_string_Internal_ctor_sbytep_int_int): Replaced
21585         mono_string_new_utf16 with mono_string_new, since value is utf8.
21586
21587 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
21588
21589         * object.c: register the object for finalization if needed.
21590         Allocate one more char in the string for the terminating 0 char.
21591
21592 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
21593
21594         * class.c, class.h, image.c: check if a type implemenst a destructor.
21595         Use the proper key for array class lookups.
21596         * icall.c: register the icalls in the System.GC class.
21597         * gc.c, gc.h: GC-related functions and icalls.
21598
21599 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21600
21601         * icall.c:
21602         * socket-io.c:
21603         * unicode.c: free some strings gotten from mono_string_to_utf8 and
21604         changed a couple of free () by g_free ().
21605
21606         * decimal.c: one-liner in the comments for decimal2string ().
21607
21608 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
21609
21610         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
21611
21612 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
21613
21614         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
21615         * object.c (mono_runtime_invoke_array) : handle null in params
21616
21617 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
21618
21619         * string-icalls.c: fixed bug in split (one off bug)
21620
21621 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
21622
21623         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
21624         * icalls.c: added String::Equals as internal method
21625
21626 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
21627
21628         * threads.c: fixed bug in the double interlocked functions
21629
21630 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
21631
21632         * threads.c: implemented all of the new interlocked icalls.
21633         * string-icalls.c: fix a bug in insert.
21634         * icalls.c: added the icalls for interlocked, removed old string functions.
21635         
21636 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
21637
21638         * loader.c: fix off-by-one error when reading argument names.
21639
21640 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
21641
21642         * profiler.c: win32 counter implementation (untested).
21643         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
21644         (the latter needs testing and more complete impl. from win32 folks).
21645
21646 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
21647
21648         * object.c: mono_array_new_full workaround mono_array_class_get
21649         problem.
21650
21651 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
21652
21653         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
21654         * object.h (mono_string_chars): Changed casting type.
21655
21656 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
21657
21658         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
21659                            method signatures to use gunichar2 instead of gint16.
21660
21661 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
21662
21663         * object.h, object.c: domain-specific versions of mono_object_new and
21664         mono_array_new.
21665
21666 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
21667
21668         * object.c: changed String layout
21669
21670         * string-icalls.c (mono_string_Internal_ctor_chara): added
21671         internal string constructors.
21672
21673 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
21674
21675         * threads.c: pass 'this' to the thread start routine.
21676
21677 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21678
21679         * string-icalls.c: fix IndexOf and LastIndexOf. Now
21680         InternalCompareStr don't call twice mono_string_cmp_char for the last
21681         character. Improved performance in mono_string_cmp_char.
21682
21683 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
21684
21685         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
21686         code into its own library: libmonoruntime.
21687
21688 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
21689
21690         * object.h, object.c: changed array format so that szarrays do not
21691         require a bounds structure.
21692         * icall.c, appdomain.c: support for new szarray format.
21693
21694 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
21695
21696         * metadata.c: compare also the retuns type when comparing signatures:
21697         we didn't do this as an optimization since really overloaded methods
21698         must differ also in the arguments, but this doesn't work with
21699         low-level IL code (or when using explicit conversion operators: see
21700         bug#23498 for an example).
21701
21702 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
21703
21704         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
21705
21706 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
21707
21708         * icall.c: make MonoType::GetElementType its own icall.
21709
21710 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
21711
21712         * icall.c: remove MonoMethod_get_Name().
21713         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
21714         object.
21715
21716 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
21717
21718         * string-icalls.c: optimized a few methods.
21719
21720 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
21721
21722         * icall.c: added all new string internal calls
21723         * string-icalls.c: added, new string internal call implementation.
21724         * object.c: added mono_string_new_size for allocating a string a size
21725
21726 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
21727
21728         * object.c (mono_object_isinst): use the same code as in the
21729         optimized x86 version.
21730
21731 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
21732
21733         * profiler.c: TSC-based timer code (faster and more accurate).
21734         Not hooked up in configure, yet (set USE_X86TSC to 1).
21735
21736 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
21737
21738         * profiler.c, profiler.h: track time spent compiling methods.
21739         * threads.c: track thread creation/destruction.
21740
21741 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
21742
21743         * profiler.c, profiler.h, profiler-private.h: profiling interface
21744         and sample implementation. Moved here so that it can be used also by
21745         the jit.
21746
21747 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
21748
21749         * reflection.c, reflection.h: keep types and other handles separate in
21750         the hash tables for referred tokens. Add guid for modules.
21751
21752 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
21753
21754         * assembly.c: fix bugs found with valgrind.
21755         * metadata.h, metadata.c: added mono_metadata_guid_heap().
21756
21757 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
21758
21759         * threads: added icall support for getting current domain for
21760                    the thread.
21761  
21762 2002-04-13  Martin Baulig  <martin@gnome.org>
21763
21764         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
21765         (MonoDebugVarInfo): Added `index' field for register based addresses.
21766         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
21767         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
21768         `MonoDebugVarInfo *params' and `guint32 this_offset' with
21769         `MonoDebugVarInfo *this_var'.
21770
21771         * debug-symfile.c (relocate_variable): New static function to write
21772         a location description for a local variable or method parameter.
21773
21774 2002-04-12  Martin Baulig  <martin@gnome.org>
21775
21776         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
21777         stack offset and begin/end scope address of a local variable.
21778         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
21779         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
21780         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
21781
21782         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
21783         Added new relocation types for start/end scope of a local variable.
21784
21785 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
21786
21787         * object.h: add mono_object_domain() macro.
21788         * reflection.c: handle typespecs.
21789         * icall.c: MonoMethod::get_Name() implementation.
21790
21791 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
21792
21793         * icall.c: String::GetHashCode() icall implementation.
21794
21795 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
21796
21797         * icall.c: String::IndexOfAny icall.
21798         * object.c, object.h: make array->max_length more useful.
21799         Intrduced mono_object_class() and mono_string_length() macros.
21800
21801 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21802
21803         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
21804         instead of g_unichar_isdigit.
21805
21806 2002-04-11  Nick Drochak  <ndrochak@gol.com>
21807
21808         * icall.c: Implement a simple Double.ToString().
21809
21810 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
21811
21812         * appdomain.h: only io-layer.h is supposed to be included.
21813         * icall.c: explicitly import environ. Fix warning.
21814
21815 2002-04-10  Nick Drochak  <ndrochak@gol.com>
21816
21817         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
21818                 return true even if it's not Daylight Savings time.
21819                 Only return false for the case where the function isn't
21820                 implemented for a plaform (read Windows).
21821
21822 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
21823
21824         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
21825         data with a mutex.
21826
21827 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
21828
21829         * mempool.c (mono_mempool_alloc): only use g_malloc when
21830         absolutely necessary.
21831
21832 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
21833
21834         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
21835
21836         * class.c (mono_class_vtable): use domain mempool to allocate vtable
21837         (mono_class_proxy_vtable): use domain mempool
21838
21839 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
21840
21841         * appdomain.h, appdomain.c: split initialization that requires the
21842         execution engine support into mono_runtime_init().
21843
21844 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
21845
21846         * class.c (mono_class_init): don't include vtable inside MonoClass
21847         to save some memory, gather some statistics.
21848         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
21849
21850 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
21851
21852         * icall.c: internalcall implementation for ValueType.Equals().
21853
21854 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
21855
21856         * object.c (mono_message_init): moved 
21857         (mono_runtime_exec_main): new arch. independent impl.
21858         (mono_runtime_invoke_array): new method - like
21859         mono_runtime_invoke, but you can pass an array of objects.
21860         (mono_remoting_invoke): new arch. independent impl.
21861         (mono_message_invoke): new arch. independent impl.
21862         (mono_runtime_class_init): new arch. independent impl.
21863         (mono_runtime_object_init): new arch. independent impl.
21864
21865 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
21866
21867         * metadata.c, object.c, reflection.c: documented the exported
21868         functions.
21869
21870 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
21871
21872         * icall.c: simpler code to pass the assembly builder data to corlib.
21873         Implement GetNestedTypes() internalcall.
21874
21875 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
21876
21877         * class.c: warn if a type can't be loaded.
21878
21879 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
21880
21881         * image.h: typedef MonoImageOpenStatus
21882         * types.h: removed unused file
21883         
21884 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
21885
21886         * icall.c: Enum_ToObject accepts enum value arguments.
21887
21888 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
21889
21890         * class.c: move initialization of properties, events and nested
21891         classes, so that they happen for interfaces, too.
21892
21893 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
21894
21895         * icall.c: cleanup some ugly casts in Array_SetValue*.
21896
21897 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
21898
21899         * icall.c: the values array fro enums is of the correct type, now.
21900         Implement (correctly) getFullName instead of assQualifiedName for
21901         MonoType.
21902         * reflection.h, reflection.c: added mono_type_get_name ().
21903
21904 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
21905
21906         * assembly.c, image.h: for each MonoImage, record from wich assembly
21907         it was loaded.
21908         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
21909         Make Type.Assembly work.
21910
21911 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
21912
21913         * debug-symfile.h: use char* instead of gpointer to avoid
21914         unnecessary casts.
21915
21916         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
21917
21918         * icall.c (ves_icall_InternalExecute): impl. FielSetter
21919         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
21920
21921 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
21922
21923         * icall.c (mono_message_init): impl. (code cleanup)
21924         (ves_icall_InternalExecute): impl. FieldGetter
21925
21926         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
21927         defined we call all (non-static)methods through the vtable. 
21928
21929 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
21930
21931         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
21932         finalizer even though the memory is still referenced (and the chunk of
21933         memory is not freed).
21934
21935 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
21936
21937         * assembly.c: fix brokeness.
21938
21939 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
21940
21941         * class.c: kill some warnings. Check explicit interface method
21942         implementation also without considering the namespace.
21943         Load also literal strings in static class data.
21944
21945 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
21946
21947         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
21948         (default_assembly_name_resolver): Make the resolver take the
21949         "base" directory where the assembly was originally defined, so we
21950         can load DLLs that are in the same directory as the assembly that
21951         is being referenced.
21952
21953 2002-03-28  Dick Porter  <dick@ximian.com>
21954
21955         * file-io.h: 
21956         * file-io.c:
21957         * socket-io.c: 
21958         * unicode.h: 
21959         * unicode.c: Warning cleanups
21960
21961 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
21962
21963         * object.h, reflection.h: use the correct type instead of MonoObject.
21964
21965 2002-03-28  Martin Baulig  <martin@gnome.org>
21966
21967         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
21968         (mono_debug_update_symbol_file): Initialize classes if necessary.
21969
21970 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
21971
21972         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
21973         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
21974
21975 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
21976
21977         * assembly.h: fix function prototype.
21978         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
21979         * mono-endian.h: use const cast.
21980
21981 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
21982
21983         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
21984
21985 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
21986
21987         * loader.c: don't assert when a typeref can't be loaded, give
21988         a chance to the runtime to trow an exception instead.
21989         * loader.h: fix warning.
21990
21991 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
21992
21993         * class.c (mono_class_proxy_vtable): added proxy support
21994
21995 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
21996
21997         * icall.c: removed last of PAL calls, added System.Environment
21998         * file-io.h, file-io.c: MonoIO implementation
21999         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
22000
22001 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
22002
22003         * appdomain.c: do not use the byte marker in ldstr table lookup.
22004         * debug-helpers.c: allow two ':' to separate class and method name.
22005         * object.c: allocate arrays bounds with the GC, too.
22006         * verify: add a few more checks.
22007
22008 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
22009
22010         * reflection.c: output also literal strings. Allocate parameter data
22011         with GC_malloc() (thanks, Martin, for catching this!).
22012
22013 2002-03-26  Martin Baulig  <martin@gnome.org>
22014
22015         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
22016         include the `this' offset in the `param_offsets'.
22017
22018 2002-03-25  Martin Baulig  <martin@gnome.org>
22019
22020         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
22021         mono_debug_get_class() function to get the classes. Added new
22022         relocation types for arrays and strings.
22023         (mono_debug_get_class): New static function to search in all
22024         referenced assemblies for a metadata token.
22025
22026         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
22027
22028 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
22029
22030         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
22031         hold gc-allocated objects. Make the string heap a stream like the
22032         others. Removed duplicated code when writing stream info.
22033         Added asserts to catch possible buffer overflows. Set the sorted map
22034         for tables that need sorting. Added some documentation.
22035
22036 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
22037
22038         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
22039         for interned strings and vtables.
22040
22041 2002-03-24  Martin Baulig  <martin@gnome.org>
22042
22043         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
22044         it in the array since it was created with g_slist_prepend().
22045
22046 2002-03-24  Martin Baulig  <martin@gnome.org>
22047
22048         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
22049         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
22050         (mono_debug_method_from_token): Renamed to
22051         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
22052         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
22053
22054         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
22055         relocation types.
22056
22057         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
22058
22059 2002-03-24  Martin Baulig  <martin@gnome.org>
22060
22061         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
22062         (mono_debug_method_from_token): New func.
22063
22064         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
22065         New interncall, calls mono_debug_local_type_from_signature().
22066         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
22067         calls mono_debug_method_from_token().
22068
22069 2002-03-23  Martin Baulig  <martin@gnome.org>
22070
22071         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
22072         specifies the number of bytes to be converted, not the array size.
22073         Return the number of chars, not the number of bytes.
22074         (ves_icall_iconv_get_chars): The `byteCount' argument
22075         specifies the number of bytes to be converted, not the array size.
22076
22077 2002-03-23  Martin Baulig  <martin@gnome.org>
22078
22079         * reflection.h (MonoReflectionSigHelper): New type.
22080
22081         * reflection.c (mono_reflection_sighelper_get_signature_local),
22082         (mono_reflection_sighelper_get_signature_local): New functions.
22083
22084         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
22085         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
22086         interncalls.
22087
22088 2002-03-23  Martin Baulig  <martin@gnome.org>
22089
22090         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
22091         is_writeable is set.
22092         (mono_raw_buffer_update): New function to write the modified map
22093         back to disk.
22094
22095         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
22096
22097         * debug-symfile.c (mono_debug_update_symbol_file): Call
22098         mono_raw_buffer_update() when done writing.
22099
22100 2002-03-23  Martin Baulig  <martin@gnome.org>
22101
22102         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
22103
22104         * debug-symfile.c: Added support for arguments and local variables.
22105
22106 2002-03-23  Dick Porter  <dick@ximian.com>
22107
22108         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
22109         protected by ifdefs, hence breaking the w32 build.
22110
22111 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
22112
22113         * object.c: implement is_interned() the right way.
22114
22115 2002-03-21  Martin Baulig  <martin@gnome.org>
22116
22117         * debug-symfile.[ch]: New files to handle debugging information
22118         files. There's also support to dynamically update these symbol
22119         files to include machine dependent information.
22120
22121 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
22122
22123         * threads.c (mono_thread_create): new function to create thread
22124         from C
22125
22126 2002-03-20  Martin Baulig  <martin@gnome.org>
22127
22128         * icall.c (ves_icall_InternalInvoke): Create a new object if the
22129         method is a constructor.
22130         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
22131         points to ves_icall_InternalInvoke().
22132
22133 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
22134
22135         * file-io.c: Flush shouldn't throw exceptions.
22136
22137 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
22138
22139         * file-io.c: FileStream flush support; FileSetLength now
22140         restores file pointer.
22141
22142 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
22143
22144         * class.c: set image for pointer classes.
22145
22146 2002/03/19  Nick Drochak <ndrochak@gol.com>
22147
22148         * sysmath.c: Forgot one.
22149
22150 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
22151
22152         * sysmath.c: Avoid redefining existing names.
22153
22154 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
22155
22156         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
22157         handled by runtime as icall rather than dllimport from libm.so
22158         * file-io.c, file-io.h: fixed handle argument type.
22159
22160 2002-03-18  Dick Porter  <dick@ximian.com>
22161
22162         * reflection.c (mono_image_get_type_info): rename interface to
22163         iface, because of "#define interface struct" on windows.
22164
22165 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
22166
22167         * class.c, class.h: rename and export mono_ptr_class_get().
22168         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
22169         * reflection.c, reflection.h, icall.c: better/saner type name
22170         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
22171         method signatures.
22172
22173 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
22174
22175         * class.c (mono_class_init): removed hardcoded GHC_SLOT
22176
22177         * icall.c (ves_icall_InternalInvoke): impl.
22178
22179 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
22180
22181         * reflection.c: output the interface map table, too.
22182
22183 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
22184
22185         * class.c (class_compute_field_layout): separate computation of 
22186         static field layout
22187
22188 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
22189
22190         * icall.c: added System.Buffer support.
22191         * file-io.c: moved file icalls from PAL to FileStream.
22192
22193 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
22194
22195         * icall.c (ves_icall_System_Object_GetHashCode): impl.
22196
22197 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
22198
22199         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
22200
22201 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
22202
22203         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
22204
22205 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
22206
22207         * debug-helpers.{c,h}: moved here from monograph some useful functions
22208         to locate a method by name/signature in a class or image. Included
22209         also a small and flexible IL disassembler.
22210
22211 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
22212
22213         * reflection.c: fixup tokens in methods with small header size, too.
22214
22215 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
22216
22217         * object.c (mono_string_to_utf8): remove assert(!error), instead
22218         print a warning. 
22219
22220 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
22221
22222         * icall.c: update to the new mono_Array_class_get interface.
22223
22224 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
22225
22226         * appdomain.c, object.c: Boehm-GC enable.
22227         * icall.c: make get_data_chunk() support split data requests.
22228         Ensure a class is initialized in more cases. Return only the first
22229         property found in GetProperties() or the compiler gets confused. 
22230         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
22231         * reflection.h, reflection.c: add fixup mechanism for field and method
22232         tokens. Initialize assembly->typeref in a single place. Output
22233         properties after events. Support custom attributes for events, too.
22234         Typo fix for paramter custom attrs.
22235
22236 2002-03-07  Martin Baulig  <martin@gnome.org>
22237
22238         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
22239
22240 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
22241
22242         * class.c (mono_array_class_get): fix. for multi. dim. arrays
22243
22244 2002-03-06  Martin Baulig  <martin@gnome.org>
22245
22246         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
22247         non-zero lower bounds. See testcases #F10-#F13.
22248
22249 2002-03-05  Martin Baulig  <martin@gnome.org>
22250
22251         * exception.c (mono_get_exception_argument_out_of_range): New exception.
22252
22253         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
22254         ves_icall_System_Array_GetValue(), only calculate the absolute array position
22255         here.
22256         (ves_icall_System_Array_SetValue): Likewise.
22257         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
22258         as argument and does the actual work. This function is used when copying a
22259         multi-dimensional array.
22260         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
22261         now do all the widening conversions of value types.
22262         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
22263
22264 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
22265
22266         * class.c: remove some magic numbers and use the smbolic names,
22267         instead. Added init_events() to load event info at class init time.
22268         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
22269         and mono_metadata_methods_from_event().
22270         * reflection.h, reflection.c: added support for writing out the evnets
22271         related information.
22272
22273 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
22274
22275         * reflection.h, icall.c: use a different method (GetInterfaces)
22276         to gather interface info and add isbyref, isprimitive and
22277         ispointer to the ves_icall_get_type_info() return value.
22278
22279 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
22280
22281         * class.h: stared adding support for events.
22282         * icall.c: split find_members implementation. Added debug icall to get
22283         the address of an object.
22284         * reflection.c: handle TypeBuilders in mono_type_get_object().
22285
22286 2002-03-01  Martin Baulig  <martin@gnome.org>
22287
22288         * icall.c (ves_icall_System_Array_GetLength): This must throw an
22289         ArgumentOutOfRangeException(), not an ArgumentException().
22290         (ves_icall_System_Array_GetLowerBound): Likewise.
22291         (ves_icall_System_Array_GetValue): Improved argument checking.
22292         (ves_icall_System_Array_SetValue): Improved argument checking.
22293
22294 2002-03-01  Martin Baulig  <martin@gnome.org>
22295
22296         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
22297         called with invalid arguments rather than just dying with g_assert().
22298         (ves_icall_System_Array_SetValue): Likewise.
22299         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
22300         raise a NotImplementedException instead.
22301         (ves_icall_System_Array_GetLength): Added argument checking.
22302         (ves_icall_System_Array_GetLowerBound): Added argument checking.
22303
22304 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
22305
22306         * object.h (mono_assert): new macros mono_assert and
22307         mono_assert_not_reached
22308
22309 2002-02-28  Martin Baulig  <martin@gnome.org>
22310
22311         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
22312         and "System::String::IsInterned" to "System::String::_IsInterned".
22313
22314 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
22315
22316         * icall.c: remove hacks for typebuilder. Added icall to create a
22317         modified type from a tybebuilder.
22318         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
22319         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
22320         to create a backing MonoClass for a TypeBuilder.
22321
22322 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
22323
22324         * class.c, class.h: more refactoring of class init.
22325         Export mono_class_setup_mono_type() and mono_class_setup_parent().
22326
22327 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
22328
22329         * marshal.c, marshal.h: start of marshaling interface.
22330
22331 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
22332
22333         * icall.c: fix order in assembly qualified name icall.
22334
22335 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
22336
22337         * class.c: do not free str, since we store it in the hash table.
22338         * reflection.h: add label field to MonoILExceptionInfo.
22339         * reflection.c: handle references to more than one assembly. Handle
22340         case when there isn't a module created in the assembly.
22341
22342 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
22343
22344         * class.c: Fix typo. Start refactoring of class init code.
22345
22346 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
22347
22348         * appdomain.c: exit with 1 on error.
22349         * class.c: we already have the name in MonoClassField.
22350         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
22351         MonoStreamHeader instead of an offset of image->raw_metadata.
22352
22353 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
22354
22355         * appdomain.c (mono_init): Be even more descriptive about the error.
22356
22357 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
22358
22359         * appdomain.c: give the user an informative message when corlib can't
22360         be loaded.
22361
22362 2002-02-26  Martin Baulig  <martin@gnome.org>
22363
22364         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
22365         New icall to get the time zone data.
22366
22367 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
22368
22369         * reflection.c: set virtual and raw size of section correctly.
22370         * threads.c: transfer domain information to newly created threads.
22371
22372 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
22373
22374         * class.c: when instancing a class in a domain, load the default
22375         vaules for static fields from the constant table. Fix System.Enum to
22376         not be an enum.
22377         * icall.c: implement Object::GetType() internalcall. Implemented
22378         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
22379         Fixed checking of binding flags in find_members().
22380         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
22381         * reflection.c: handle enumerations when writing to the constant
22382         table. Use a different object cache for types.
22383
22384
22385 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
22386
22387         * object.c (mono_object_isinst): fix for arrays
22388
22389         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
22390
22391 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
22392
22393         * object.c: don't use mprotect ()  and fix intern pool hash table
22394         lookup for big endian systems.
22395
22396 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
22397
22398         * icall.c: change type_is_subtype_of () signature.
22399
22400 2002-02-21  Mark Crichton  <crichton@gimp.org>
22401
22402         * rand.c, rand.h: Added random number generator for
22403         System.Security.Cryptography classes.
22404
22405         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
22406
22407         * icall.c: Added System.Security.Cryptography calls.
22408
22409 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
22410
22411         * class.c, icall.c, metadata.c: better support for pointer types.
22412         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
22413         * reflection.c: Add support for getting custom attrs for properties
22414         and simplify some code.
22415
22416 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
22417
22418         * icall.c: change getToken () and add custom attribute GetBlob()helper
22419         method.
22420         * reflection.h: add custom attrs array to the reflection builder structures.
22421         * reflection.c: encode and emit custom attributes for all the relevant
22422         reflection objects. Cache fieldref and methodref tokens. Change
22423         mono_image_create_token() interface to take a MonoDynamicAssembly.
22424         More complete custom attributes decoder. Load custom attributes for
22425         Assembly, Field, Method and Constructor objects, too. Make the
22426         returned array an Attribute[] one, not object[]. Added
22427         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
22428         custom attribute constructor.
22429
22430 2002-02-20  Dick Porter  <dick@ximian.com>
22431
22432         * icall.c:
22433         * rawbuffer.c:
22434         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
22435         problem code out for now).
22436
22437 2002-02-19  Radek Doulik  <rodo@ximian.com>
22438
22439         * object.c (mono_ldstr): use hash table to avoid multiple swapping
22440
22441 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
22442
22443         * icall.c: register the GetCustomAttributes method.
22444         * object.c, object.h: add mono_string_new_len ().
22445         * reflection.h, reflection.c: added mono_runtime_invoke(),
22446         mono_install_runtime_invoke(). Added
22447         mono_reflection_get_custom_attrs () to load custom attributes and
22448         create the attribute objects.
22449
22450 2002-02-19  Dick Porter  <dick@ximian.com>
22451         * threads-dummy-types.c:
22452         * threads-dummy-types.h:
22453         * threads-dummy.c:
22454         * threads-dummy.h:
22455         * threads-pthread-types.c:
22456         * threads-pthread-types.h:
22457         * threads-pthread.c:
22458         * threads-pthread.h:  Deleted obsolete files
22459
22460 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
22461
22462         * class.c (mono_class_vtable): runtime init the class when we
22463         allocate static class data.
22464
22465         * icall.c (ves_icall_System_Array_SetValue): check for null values.
22466
22467         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
22468         and String - but we will need generic marshalling support in the
22469         future. 
22470         (mono_init): set the domain name in a ms compatible way
22471
22472         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
22473         String[].
22474
22475 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
22476
22477         * object.c (mono_array_clone): use alloca() instead of g_malloc  
22478         for sizes
22479
22480         * appdomain.c (mono_domain_unload): impl.
22481
22482 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
22483
22484         * appdomain.c, object.c: fix intern pool implementation.
22485         * class.c: fix alignment code.
22486
22487 2002-02-16  Radek Doulik  <rodo@ximian.com>
22488
22489         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
22490         and s2 > s1, just copy lower bytes to be compatible with little
22491         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
22492         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
22493
22494         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
22495         force big_endian to be 1 for big endian machines 
22496         (ves_icall_iconv_new_decoder): ditto
22497
22498 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
22499
22500         * socket-io.c (convert_sockopt_level_and_name): If the system
22501         doesn't define SOL_IP or SOL_TCP, get them by hand using
22502         getprotobyname() and caching the values (because this could be a
22503         slow operation).
22504         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
22505         Use the appropriate struct when the system does support it. Ie,
22506         not all systems have struct ip_mreqn so use struct ip_mreq when
22507         appropriate.
22508
22509 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
22510
22511         * reflection.c: handle finally clauses.
22512
22513 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
22514
22515         * socket-io.c: use g_snprintf() instead of snprintf.
22516
22517 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
22518
22519         * reflection.c (mono_param_get_objects): Cast second argument to
22520         mono_method_get_param_names to a const char** to silence the
22521         compiler warning.
22522
22523         * appdomain.c (mono_domain_assembly_open): Put parens around the
22524         truth statement in the for-loop.
22525
22526         * unicode.c (iconv_convert): Got rid of a compiler warning about
22527         int i being unused when the system has a new iconv.
22528         (iconv_get_length): Same.
22529
22530         * image.c (load_class_names): Cast the second argument to
22531         g_hash_table_insert() to char* to hush compiler warnings about the
22532         arg being a const.
22533         (mono_image_open): Same here.
22534
22535         * socket-io.c: Don't conditionally include sys/filio.h or
22536         sys/sockio.h here anymore since we now get them from
22537         io-layer/io-layer.h
22538         (inet_pton): If the system doesn't support inet_aton, implement
22539         using inet_addr and also #define INADDR_NONE if it isn't defined
22540         by the system.
22541
22542 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
22543
22544         * metadata.c, metadata.h: added function to get packing and size info
22545         of a typedef.
22546         * reflection.h, reflection.c: handle field RVA data. Save info about
22547         the table layout if needed. Assign typedef indexes to all the types
22548         before dumping the info about them to avoid forward reference problems.
22549
22550 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
22551
22552         * socket-io.c (convert_sockopt_level_and_name): ifdef
22553         SO_ACCEPTCONN because it is not defined on my system (old debian)
22554
22555 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
22556
22557         * opcode.c: use stddef.h to get NULL.
22558
22559 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
22560
22561         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
22562         for FIONBIO, FIONREAD and SIOCATMARK.
22563         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
22564         define INADDR_NONE and besides, inet_addr() is deprecated and
22565         should not be used. Use inet_pton() instead - it also has the
22566         added bonus that it can easily handle IPv6 addresses as well.
22567         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
22568
22569 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
22570
22571         * decimal.c: remove _MSC_VER conditional.
22572
22573 2002-02-13  Dick Porter  <dick@ximian.com>
22574
22575         * socket-io.c: 
22576         * icall.c: Internal calls for Blocking, Select, Shutdown,
22577         GetSocketOption and SetSocketOption
22578
22579 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
22580
22581         * assembly.cs: better resolver: use it instead of some kludgy
22582         code.
22583
22584 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
22585
22586         * reflection.c: the best way to speed-up the compiler is to avoid
22587         infinite loops.
22588
22589 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
22590
22591         * class.c (mono_class_vtable): changed the object layout
22592         (obj->vtable->class). 
22593         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
22594
22595 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
22596
22597         * assembly.c: look for assemblies in the assembly dir, too.
22598
22599 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
22600
22601         * class.c: fix thinko in mono_class_from_type().
22602
22603 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
22604
22605         * exception.h, exception.c: added TypeLoadException.
22606         * object.h, object.c: added mono_array_clone ().
22607         * icall.c: handle throwOnError in AssemblyGetType().
22608         Added Array.Clone().
22609         * opcode.h, opcode.c: use a single value for the opcode val.
22610         Compile fix for non-gcc compilers.
22611
22612 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
22613
22614         * opcodes.c, opcodes.h: export interesting info about opcodes.
22615
22616 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
22617
22618         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
22619         icalls. 
22620
22621         * class.c (class_compute_field_layout): set element_class for enums
22622         (mono_class_create_from_typedef): set element_class for normal classes
22623
22624         * icall.c (ves_icall_System_Enum_get_value): impl.
22625
22626         * class.c (mono_class_create_from_typedef): do not set valuetype
22627         flag for System.ValueType and System.Enum
22628
22629 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
22630
22631         * unicode.c (iconv_convert): fix big endian problem.
22632
22633 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
22634
22635         * class.c: add asserts if we are ever going to scribble over memory.
22636         * socket-io.c: not all systems have AF_IRDA defined.
22637
22638 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
22639
22640         * class.c (class_compute_field_layout): do not consider static
22641         fields to compute alignment
22642
22643 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
22644
22645         * appdomain.c (mono_appdomain_get): impl.
22646         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
22647
22648 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
22649
22650         * icall.c: ignore "file://" prefix when loading an assembly.
22651
22652 2002-01-23  Dick Porter  <dick@ximian.com>
22653
22654         * socket-io.c:
22655         * icall.c:
22656         * Makefile.am: Added socket support
22657
22658 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
22659
22660         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
22661         code back.  This should return the assemblies that are loaded by
22662         the runtime on behalf of an application domain. 
22663
22664         The current implementation is still broken, it just returns every
22665         assembly loaded, but until we get real applications domain this
22666         will do.
22667
22668 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
22669
22670         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
22671         AppDomain object.
22672
22673 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
22674
22675         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
22676         the mono_class_from_name lookup.
22677         (ves_icall_get_parameter_info): ditto.
22678         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
22679         method.
22680         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
22681
22682 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
22683
22684         * class.c: load also nested classes on class init.
22685         System.ValueType instance methods gets passed boxed
22686         values, unless methods in derived classed that get a pointer to the
22687         data.
22688         * icall.c: use better name parsing code in GetType().
22689         * image.c, image.h: add mono_image_loaded ().
22690         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
22691         * reflection.c, reflection.h: added mono_reflection_parse_type().
22692
22693 2002-01-22  Veronica De Santis <veron78@interfree.it>
22694
22695         * icall.c : Added mapping of internal calls for Manual and Auto reset events
22696         * threads.c : Added the implementation of internal calls for events
22697         * threads.h : Added prototypes of internal calls for events
22698         
22699 2002-01-21  Radek Doulik  <rodo@ximian.com>
22700
22701         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
22702
22703 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
22704
22705         * class.c (mono_class_init): set min_align to 1 (instead of 0)
22706         (mono_class_value_size): use min_align
22707
22708 2002-01-20  Dick Porter  <dick@ximian.com>
22709
22710         * threads.h:
22711         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
22712         so it compiles on w32.
22713
22714 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
22715
22716         * metadata.c (mono_type_stack_size): impl.
22717
22718         * class.c (mono_class_get_field): impl. memberref token
22719
22720 2002-01-16 Veronica De Santis <veron78@@interfree.it>
22721
22722         * icall.h : Added the internal calls mapping for CreateMutex_internal
22723                     and ReleaseMutex_internal.
22724         * threads.h : Added the prototype of mutexes internal calls.
22725         * threads.c : Added the implementations of mutexes internal calls.
22726
22727 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
22728
22729         * metaparse.h: removed unused file.
22730         * reflection.c, reflection.h: added stream_data_align () function 
22731         to align data in streams and keep stream aligned. Add support for
22732         exception support in method headers.
22733
22734 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
22735
22736         * unicode.c: make iconv_convert () return the number of bytess written
22737         in the output buffer.
22738
22739 2002-01-15  Dick Porter  <dick@ximian.com>
22740         * threads.c: Make the runtime's idea of infinite timeouts coincide
22741         with the class library's
22742
22743         Fix a particularly egregious bug in mono_thread_cleanup(). That
22744         code was so utterly bogus it must have been written on a Monday.
22745
22746 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
22747
22748         * reflection.h: add subtypes field to TypeBuilder.
22749         * reflection.c: encode constants for literal fields.
22750         Handle subtypes. Fix user string token (and add a zero byte)
22751         at the end.
22752         
22753 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
22754
22755         * class.c (mono_class_init): bug fix: assign slot numbers for
22756         abstract methods.
22757
22758 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
22759
22760         * reflection.c: don't try to output a code RVA for abstract methods.
22761         Small fixes for method header format. Output parameter info to the
22762         ParamDef table. Save method overriding info to MethodImpl table.
22763         Fix property support. Allow typedef.extends to be a type in the
22764         building assembly.
22765         * verify.c: fix off-by-one error.
22766
22767 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
22768
22769         * class.c: fix mono_class_from_mono_type () for szarray types.
22770         Remove unused cache check in mono_class_from_type_spec().
22771         * icall.c: *type_from_name () functions handle simple arrays and byref.
22772         * reflection.c: handle byref and szarray types. Handle methods without
22773         body (gets P/Invoke compilation working). Handle types and fields in
22774         get_token ().
22775         * reflection.h: add rank to MonoTypeInfo.
22776
22777 2002-01-10  Dick Porter  <dick@ximian.com>
22778
22779         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
22780         internal calls
22781
22782 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
22783
22784         * icall.c: initialize class in type_from_handle ().
22785         Loop also in parent classes for get_method ().
22786         * reflection.c: properly encode class and valuetype types.
22787         Start on encoding TypeBuilder types. Handle fieldrefs.
22788         Use correct length when registering a user string.
22789         Handle ConstructorBuilder and MonoMethod in get_token ().
22790         Make mono_type_get_object () aware of cached types.
22791         * object.c: back out change to mono_string_new ().
22792
22793 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
22794         * object.c: mono_string_new should return a NULL when the string 
22795         passed in is NULL -- not try to deference it.
22796         
22797 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
22798
22799         * icall.c: hack to make IsSubType work for TypeBuilders.
22800         * reflection.c: emit constructors before methods.
22801         Retrieve param names in mono_param_get_objects().
22802
22803 2002/01/05  Nick Drochak  <ndrochak@gol.com>
22804
22805         * Makefile.am: fix list of headers and sources so automake 1.5
22806         doesn't complain. Removed \# at end of list.
22807
22808 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
22809
22810         * reflection.c: get token for a method ref. Set return type of
22811         constructor to void.
22812         * loader.c: debug message.
22813         * class.c: typo fix.
22814
22815 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
22816
22817         * icall.c: fix array init with rank > 1. FindMembers
22818         loops in parent class as well.
22819         * image.c: do not insert nested types in name cache.
22820         * reflection.c: warning fix.
22821         * reflection.h: add override method (for interface impl).
22822
22823 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
22824
22825         * metadata.c: fix customattr decoding.
22826
22827 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
22828
22829         * rawbuffer.cs: Added native Win32 implementation, avoids using
22830         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
22831
22832 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
22833
22834         * class.c: make the low-level routines handle the cache.
22835
22836 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
22837
22838         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
22839
22840 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
22841
22842         * class.c: fix mono_array_element_size() for objects.
22843         * class.h, class.c: add properties to MonoClass and load them
22844         at init time.
22845         * icall.c: check with isinst() when assigning a value to an array
22846         instead of requiring the classes to match exactly.
22847         Implemented icall for System.Type::GetType().
22848         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
22849         enums. Handle bindingflags when looking for methods and fields.
22850         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
22851         and mono_metadata_methods_from_property().
22852         * reflection.h, reflection.c: added structures for propreties,
22853         parameters and enums. Implemented mono_property_get_object() and
22854         mono_param_get_objects().
22855
22856 2001-12-18  Dick Porter  <dick@ximian.com>
22857
22858         * file-io.c: Use mono_string_to_utf16() instead of
22859         mono_string_chars()
22860
22861         * object.c: Added mono_string_to_utf16(), which copies the non
22862         NULL-terminated MonoString into a new double-null-terminated
22863         buffer.
22864
22865 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
22866
22867         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
22868
22869 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
22870
22871         * file-io.c: raise exceptions if handle is invalid.
22872
22873 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
22874
22875         * assembly.c: yet another check for mscorlib.
22876         * class.c, class.h: load nesting info for classes.
22877         * icall.c: many new functions to support the Reflection classes.
22878         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
22879         * reflection.h, reflection.c: mono_image_create_token(),
22880         mono_assembly_get_object(), mono_type_get_object(),
22881         mono_method_get_object(), mono_field_get_object(): methods to return
22882         objects that parallel the C representation of assemblies, types,
22883         methods, fields.
22884
22885 2001-12-11  Dick Porter  <dick@ximian.com>
22886
22887         * icall.c:
22888         * file-io.c: Internal calls for file IO.
22889
22890 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
22891
22892         * tabledefs.h: missing FileAttributes.
22893         * verify.h, verify.c: use is_valid_string () to simplify and check for
22894         valid strings more correctly. Fix warnings and speeling.
22895         Check more tables: Filed, File, ModuleRef, StandAloneSig.
22896         Check code: branches, maxstack, method calls.
22897
22898 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
22899
22900         * object.c (mono_object_allocate): removed static, so that the jit
22901         can allocate value types.
22902
22903         * icall.c (ves_icall_System_DateTime_GetNow): impl.
22904
22905 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
22906
22907         * class.c: init enum types right away and register the
22908         token->MonoClass map in mono_class_create_from_typedef ().
22909         * verify.h, verify.c: first cut of the verifier.
22910         * pedump.c: add --verify switch to verify metadata tables.
22911         * tabledefs.h: add some missing enums.
22912
22913 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
22914
22915         * class.c (mono_install_runtime_class_init): impl.
22916         (mono_class_init): renamed mono_class_metadata_init to
22917         mono_class_init, also removed the metadata_inited flag
22918
22919         * object.c (mono_object_isinst): use faster algorithm
22920
22921 2001-11-30  Radek Doulik  <rodo@ximian.com>
22922
22923         * mono-endian.h: reverted last change
22924         added function prototypes
22925
22926         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
22927         add mono-endian.c back
22928
22929         * mono-endian.c: returned back, as Paolo pointed out, it's needed
22930         for unaligned access, I've mistaked it with endianess. I am
22931         sorry.
22932         (mono_read16): fix reverted endianess
22933         (mono_read64): ditto
22934         (mono_read32): ditto
22935
22936 2001-11-30  Dick Porter  <dick@ximian.com>
22937
22938         * exception.c: Implement mono_exception_from_name()
22939
22940 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
22941
22942         * metadata.h, metadata.c: remove params_size and locals_size and their
22943         calculation from the metadata code: they are only usefult to the
22944         interp.
22945
22946 2001-11-29  Radek Doulik  <rodo@ximian.com>
22947
22948         * object.c (mono_ldstr): swap bytes here, it's probably not the
22949         best place, but works for me now, I'll redo it once I know mono
22950         better, also note that I add PROT_WRITE and don't reset back, also
22951         note that it's only affects big endians, so x86 should be OK
22952
22953         * mono-endian.h (read16): use just glib macros for both endians
22954
22955         * mono-endian.c: removed as glib macros are used in in
22956         mono-endian.h so we don't need to care about endianess for read
22957         macros as glib does that for us already
22958
22959 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
22960
22961         * class.h, class.h: take minimum alignment into consideration so
22962         that the fields of a class remain aligned also when in an array.
22963
22964 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
22965
22966         * loader.h, loader.c: add mono_method_get_param_names().
22967         * class.c: 0-init class fields.
22968
22969 2001-11-26  Dick Porter  <dick@ximian.com>
22970
22971         * icall.c:
22972         * threads-types.h:
22973         * threads.c: New file that handles System.Threading on all platforms
22974
22975         * object.c: 
22976         * object.h: Remove the synchronisation struct from MonoObject,
22977         replace it with a pointer that gets initialised on demand
22978
22979         * Makefile.am: Replace all the system-specific threading code with
22980         a single file that uses the new wrapper library
22981
22982 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
22983
22984         * class.c, class.h: add mono_install_trampoline() so that the runtime
22985         can register a function to create a trampoline: removes the ugly
22986         requirement that a runtime needed to export arch_create_jit_trampoline.
22987         * object.h, object.c: added mono_install_handler() so that the runtime
22988         can install an handler for exceptions generated in C code (with
22989         mono_raise_exception()). Added C struct for System.Delegate.
22990         * pedump.c: removed arch_create_jit_trampoline.
22991         * reflection.c: some cleanups to allow registering user strings and
22992         later getting a token for methodrefs and fieldrefs before the assembly
22993         is built.
22994         * row-indexes.h: updates and fixes from the new ECMA specs.
22995
22996 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
22997
22998         * class.h, class.c: add enum_basetype field to MonoClass.
22999         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
23000         to get index in the constant table reated to a field, param or
23001         property.
23002         * reflection.h, reflection.c: handle constructors. Set public-key and
23003         version number of the built assembly to 0.
23004         * row-indexes.h: update from new ECMA spec.
23005
23006 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
23007
23008         * class.h, class.c: add a max_interface_id to MonoClass.
23009         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
23010         since it's used to do that. Added mono_type_type_from_obj().
23011         Make GetType() return NULL instead of segfaulting if the type was not
23012         found. Handle simple arrays in assQualifiedName.
23013         * object.h: add a struct to represent an Exception.
23014         * reflection.c: output call convention in method signature.
23015         Add code to support P/Invoke methods and fixed offsets for fields.
23016
23017 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
23018
23019         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
23020         the value.
23021         * icall.c: use mono_array_addr instead of array->vector: fixes the
23022         reflection image writing.
23023         * reflection.c: init call convention byte to 0 in method signature.
23024         Encode the property signature. Don't output property-related methods
23025         twice. Really process the properties for a type (don't cast a field to
23026         a property, my mom always told me that).
23027         Fix 64 bit issues in pointer alignment in a different and more
23028         readable way.
23029
23030 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
23031
23032         * loader.h: Removed type class from MonoDefaults, added monotype
23033
23034         * loader.c: Loaded MonoType, removed loading of Type
23035
23036         * icall.c (my_mono_new_object): Now returns a System.MonoType,
23037         and fills in System.Type._impl with a RuntimeTypeHandle rather
23038         than the actual MonoClass *
23039
23040         (ves_icall_type_from_handle): change from type_class to
23041         monotype_class
23042
23043         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
23044         implemented
23045
23046         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
23047         implemented
23048
23049         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
23050
23051         (ves_icall_System_Reflection_Assembly_GetType): implemented
23052
23053         (ves_icall_System_MonoType_assQualifiedName): implemented
23054
23055         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
23056
23057 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
23058
23059         * assembly.c (mono_assembly_open): Implement a cache for the
23060         assemblies. 
23061
23062         (mono_assembly_close): only destroy the assembly when the last
23063         reference is gone.
23064         
23065 2001-11-09  Dick Porter  <dick@ximian.com>
23066
23067         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
23068
23069 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
23070
23071         * class.c (mono_class_metadata_init): bug fix: compute the right slot
23072
23073 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
23074
23075         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
23076         from Martin Weindel.
23077         * object.h: add mono_string_chars ().
23078
23079 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
23080
23081         * reflection.c (build_compressed_metadata): Eliminates warnings
23082         and uses 64-bit clean code.
23083
23084         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
23085         (mono_type_equal): Change signature to eliminate warnings.
23086
23087 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
23088
23089         * icall.c, loader.c: remove the internalcall array constructors.
23090         Changes to match the new MonoArray structure.
23091         * object.h, object.c: an array object doesn't allocate an extra
23092         vector. Add mono_array_new_full () to create jagged arrays easily.
23093
23094 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
23095
23096         * metadata.h, metadata.c: add mono_metadata_field_info () to
23097         retreive all the info about a field from vairous tables.
23098         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
23099         * class.h, class.c: augment MonoClassField with more info.
23100         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
23101         policy and load a field's RVA if needed.
23102
23103 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
23104
23105         * class.c (mono_class_metadata_init): create a trampoline for all
23106         virtual functions instead of actually compiling them.
23107
23108 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
23109
23110         * class.h, class.c: include name in MonoClassField.
23111         * class.c: fix fundamental type of System.Object and System.String.
23112         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
23113         tokens in ldtoken.
23114         * icall.c: remove internalcalls for the Reflection stuff that is now
23115         done in C# code.
23116         * loader.c: mono_field_from_memberref () implementation.
23117         * mono-endian.c: thinko (s/struct/union/g).
23118         * object.c, object.h: make the mono_string_* prototypes actually use
23119         MonoString instead of MonoObject.
23120         * reflection.c, reflection.h: updates for changes in the reflection
23121         code in corlib: we use C structures that map to the actual C# classes.
23122         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
23123         fat method header if needed and use the info from the ILGenerator for
23124         methods. Handle fields in types. Misc fixes.
23125
23126 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
23127
23128         * class.c (mono_class_metadata_init): bug fix: always allocate
23129         space for static class data
23130
23131 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
23132
23133         * class.c (mono_compute_relative_numbering): use relative
23134         numbering to support fast runtime type checks.
23135
23136 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
23137
23138         * class.c (mono_class_create_from_typeref): added debugging output
23139         to print class name when MonoDummy is returned instead of real class
23140
23141 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
23142
23143         * class.c (mono_class_metadata_init): interface offset table now
23144         contains pointers into the vtable - this is more efficient for the jit
23145
23146 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
23147
23148         * class.c (mono_class_metadata_init): use a temporary vtable (the
23149         old algorithm only worked for the interpreter, but not for the jit)
23150
23151 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
23152
23153         * loader.c (method_from_memberref): use mono_class_get to get the
23154         class of an array instead of using System.Array directly.
23155         (mono_get_method): also add MEMBERREF methods to the method cache
23156         which usefull for arrays.
23157
23158 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
23159
23160         * pedump.c (arch_compile_method): added to compute vtable entry
23161
23162         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
23163         number of interfaces.
23164         
23165         * class.h: merged MonoArrayClass into MonoClass
23166
23167         * class.c (mono_class_create_from_typedef): compute the vtable size and
23168         allocate space to include the vtable inside MonoClass
23169         (mono_class_metadata_init): initialize the vtable
23170
23171 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
23172
23173         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
23174         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
23175         * image.c: endian fixes by Laurent Rioux.
23176         * object.h, object.c: rename MonoStringObject to MonoString and
23177         MonoArrayObject to MonoArray. Change some function names to conform to
23178         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
23179         guint16* as first argument, so don't use char*.
23180         Provide macros to do the interesting things on arrays in a portable way.
23181         * threads-pthread.c: updates for the API changes and #include <sched.h>
23182         (required for sched_yield()).
23183         * icall.c: updates for the API changes above.
23184         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
23185         platforms that need them.
23186
23187 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
23188
23189         * class.c: set the correct type for all the fundamental
23190         type when loading the class.
23191
23192 2001-10-05  Dick Porter  <dick@ximian.com>
23193
23194         * threads-pthread.c (pthread_mutex_timedlock): Simple
23195         compatibility version for C libraries that lack this call.
23196
23197 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
23198
23199         * class.c: MonoTypes stored in MonoClass are stored as
23200         fundamental MonoTypes when the class represents a
23201         fundamental type (System.Int32, ...).
23202         The TypeHandle return by ldtoken is a MonoType*.
23203         * icall.c: ves_icall_get_data_chunk () write out all the
23204         PE/COFF stuff. Implement ves_icall_define_method (),
23205         ves_icall_set_method_body (), ves_icall_type_from_handle ().
23206         * image.c: properly skip unknown streams.
23207         * loader.h, loader.c: add type_class to mono_defaults.
23208         * metadata.c, metadata.h: export compute_size () as
23209         mono_metadata_compute_size () with a better interface.
23210         Typo and C&P fixes.
23211         * pedump.c: don't try to print the entry point RVA if there is no entry point.
23212         * reflection.c, reflection.h: many cleanups, fixes, output method
23213         signatures and headers, typedef and typeref info, compress the metadata
23214         tables, output all the heap streams, cli header etc.
23215         * row-indexes.h: typo fixes.
23216
23217 2001-10-04  Dick Porter  <dick@ximian.com>
23218
23219         * object.h: Add a synchronisation mutex struct to MonoObject
23220
23221         * object.c (mono_new_object): Initialise the object
23222         synchronisation mutexes
23223
23224         * icall.c: System.Threading.Monitor internal calls
23225         
23226         * threads-pthread.h:
23227         * threads-pthread.c: System.Threading.Monitor internal calls
23228
23229         * threads-types.h: New file, includes the system-specific thread
23230         structures
23231         
23232         * threads-pthread-types.h:
23233         * threads-pthread-types.c: New files, handle pthread-specific
23234         synchronisation types
23235
23236         * threads-dummy-types.h: 
23237         * threads-dummy-types.c: New files of dummy support for
23238         thread-specific types
23239
23240         * metadata.c:
23241         * image.c:
23242         * pedump.c: include mono-endian.h not endian.h
23243         
23244         * Makefile.am: More threads files.
23245         Name mono-endian.h not endian.h
23246
23247 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
23248
23249         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
23250         stuff and implement a few more bits.
23251         * icall.c: a field needs to be dereferenced twice. Do not use the same
23252         name for two variables in the same scope.
23253         * image.c, image.h: cleanups.
23254
23255 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
23256
23257         * class.c (mono_class_metadata_init): bug fix: compute the right size
23258
23259 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
23260
23261         * icall.c: implemented some of the Reflection internalcalls.
23262         * image.c, image.h: start writing out the PE/COFF image.
23263         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
23264         that does the reverse than decode_blob_size ().
23265         * object.c: use mono_metadata_encode_value (). Move here
23266         temporary implementation of mono_string_to_utf8 ().
23267         * rawbuffer.c: make malloc_map static.
23268
23269 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
23270
23271         * metadata.c: fix type comparison for arrays.
23272         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
23273         Added a couple of new classes to monodefaults.
23274         * icall.c: added a couple of Reflection-related internalcalls.
23275         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
23276         Added a byval_arg MonoType to MonoClass.
23277
23278 2001-09-28  Dick Porter  <dick@ximian.com>
23279
23280         * icall.c:
23281         * threads-pthread.h: 
23282         * threads-pthread.c: Implemented internal calls for
23283         LocalDataStoreSlot operations.  Applied mutexes around all shared
23284         data.  Reworked the thread creation and Start() operations to
23285         avoid a race condition.
23286         
23287         * threads-dummy.h:
23288         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
23289
23290 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
23291
23292         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
23293
23294 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
23295
23296         * class.c, loader.c: warn and return NULL instead of erroring out.
23297         * icall.c: added System.AppDomain::getCurDomain().
23298         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
23299
23300 2001-09-25  Dick Porter  <dick@ximian.com>
23301
23302         * threads-pthread.h:
23303         * threads-pthread.c: Implemented timed thread joining and added
23304         System.Threading.Thread::Join_internal internal call
23305
23306         * icall.c: Added System.Threading.Thread::Join_internal internal call
23307
23308         * threads-dummy.h:
23309         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
23310
23311 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
23312
23313         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
23314         mono_string_intern () to implement the semantics of the ldstr opcode
23315         and the interning of System.Strings.
23316         * icall.c: provide hooks to make String::IsIntern and String::Intern
23317         internalcalls.
23318
23319 2001-09-23  Dick Porter  <dick@ximian.com>
23320
23321         * threads-dummy.c: 
23322         * threads-dummy.h: New files of dummy threading routines
23323
23324         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
23325         support code based on system specifics
23326
23327         Rename PTHREAD_LIBS to THREAD_LIBS
23328         
23329 2001-09-23  Dick Porter  <dick@ximian.com>
23330
23331         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
23332         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
23333         internal calls.
23334         (mono_thread_init): Set up a Thread object instance to return when
23335         the main thread calls Thread.CurrentThread
23336         (mono_thread_cleanup): Wait for all subthreads to exit
23337
23338         * icall.c: New internal calls for System.Threading.Thread::Sleep
23339         (including Schedule) and CurrentThread
23340
23341         * threads.h: New file, to insulate thread-specific stuff from the
23342         rest of the code
23343
23344 2001-09-21  Dick Porter  <dick@ximian.com>
23345
23346         * threads-pthread.h: 
23347         * threads-pthread.c: New file, for handling pthreads-style
23348         threading support.  Start() now starts a new thread and executes
23349         the ThreadStart delegate instance.
23350
23351         * icall.c: Added the internalcall for
23352         System.Threading.Thread::Start_internal
23353
23354         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
23355
23356 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
23357
23358         * loader.c: work around the different signatures for delegates
23359         constructors csc generates in compiled code vs the ones compiled in mscorlib.
23360
23361 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
23362
23363         * class.h, class.c: add mono_class_get_field_from_name ().
23364         * *: Fix C comments and other ANSI C issues.
23365
23366 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
23367
23368         * endian.h, assembly.c: fix some endianness issues.
23369
23370 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
23371
23372         * loader.h, load.c: add delegate_class to mono_defaults.
23373         Handle runtime provided methods in mono_get_method ().
23374
23375 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
23376
23377         * loader.c (mono_get_method): use pinvoke for internal call
23378
23379         * icall.c: use pinvoke for internal call
23380
23381         * loader.c (method_from_memberref): set the method name
23382
23383 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
23384
23385         * metadata.c: help the compiler generate better code for
23386         mono_class_from_mono_type ().
23387
23388 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
23389
23390         * class.c (mono_class_metadata_init): delayed computing of the
23391         class size to mono_class_metadata_init ()
23392
23393 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
23394
23395         * class.c, class.h: add an interfaces member to MonoClass.
23396         * image.c, image.h: add assembly_name field to MonoImage
23397         from the assembly table.
23398         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
23399
23400 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
23401
23402         * class.c: Handle Array in mono_class_from_mono_type ().
23403         * metadata.c, pedump.c: some endian fixes.
23404
23405 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
23406
23407         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
23408         * metadata.c: fix small problem introduced with the latest commit.
23409
23410 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
23411
23412         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
23413         We don't need a MonoMetadata pointer anymore to compare signatures in
23414         mono_metadata_signature_equal (), update callers.
23415         Reduced memory usage an number of allocations for MonoMethodHeader and
23416         MonoMethodSignature.
23417
23418 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
23419
23420         * metadata.c: added compare for szarray.
23421
23422 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
23423
23424         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
23425         and add a couple more types to it and mono_defaults. Give an hint on
23426         classes that need implementing in our corlib and are referenced
23427         in mscorlib.
23428
23429 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
23430
23431         * class.h, class.c: keep track if a class is also an Enum.
23432         * loader.c: Implement a couple more types for use in libffi
23433         marshalling. Gives better diagnostics when failing to dlopen
23434         a library. Set method->klass for P/Invoke methods, too.
23435
23436 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
23437
23438         * class.c, class.h: add a MonoType this_arg to MonoClass that
23439         represents a pointer to an object of the class' type that
23440         can be used by the interpreter and later the type cache.
23441         Add best guess alignment info for valuetype objects.
23442
23443 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
23444
23445         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
23446         into MonoType: one less level of indirection and allocation and
23447         simplifies quite a bit of code. Added cache for MonoTypes that are
23448         used frequently, so that we don't need to allocate them all the time.
23449
23450 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
23451
23452         * class.c (mono_class_create_from_typedef): System.Enum is also a
23453         value type, although it does not derive from System.ValueType
23454         (maybe a bug in the ms compiler?)
23455
23456         * metadata.c (mono_type_size): return the right size for value types
23457
23458         * loader.c (mono_get_method): only initialize method header if not abstract
23459
23460         * class.c (mono_class_from_mono_type): use mono_default values. 
23461
23462 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
23463
23464         * *: use MonoClass pointers instead of <type_tokens>
23465         
23466         * class.h: new flag: metadata_inited.
23467
23468         * class.c (mono_class_metadata_init): impl.
23469         (mono_class_instance_size): impl.
23470         (mono_class_data_size): impl.
23471
23472 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
23473
23474         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
23475         MonoClass now has the name and name_space fields. 
23476         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
23477         mono_get_method () takes and optional MonoClass as argument.
23478         Removed mono_typedef_from_name() and added mono_class_token_from_name()
23479         instead that takes advantage of a map from class names to typedef
23480         tokens in MonoImage.
23481
23482 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
23483
23484         * metadata.c: zero is not a valid alignment boundary.
23485         Merge MONO_TYPE_VOID in default decoding code.
23486
23487 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
23488
23489         * image.h: merged MonoMetadata into MonoImage
23490
23491         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
23492         identify the type of elements.
23493
23494 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
23495
23496         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
23497         * cil-coff.h: split MonoMSDOSHeader and add size info.
23498         * image.c: add some consistency checks.
23499         * metadata.c: fix row size computation: one programmer
23500         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
23501         add explanation for the locator routine.
23502         Fix decoding of size in method header.
23503         
23504 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
23505
23506         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
23507         (g_concat_dir_and_file): Bring g_concat_dir_and_file
23508         function from gnome-libs.  This uses the right path separator
23509         based on the OS, and also works around a bug in some systems where
23510         a double slash is not allowed. 
23511         (default_assembly_name_resolver): Use g_concat_dir_and_file
23512         (mono_assembly_open): ditto.
23513
23514 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
23515
23516         * metadata.c (mono_metadata_signature_equal): impl.
23517
23518         * *: void is now a realy MonoType (instead of using NULL)
23519         
23520         * metadata.c (do_mono_metadata_parse_type): use
23521         mono_metadata_parse_type to parse void value.
23522
23523 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
23524
23525         * metadata.c, metadata.h: in the signature and method header store
23526         only the space required for holding the loca vars and incoming arguments.
23527
23528 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
23529
23530         * metadata.c (do_mono_metadata_parse_type): treat void like any
23531         other type (instead of assigning NULL);
23532
23533 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
23534
23535         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
23536
23537 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
23538
23539         * image.c (do_mono_image_open): added a cache for arrays.
23540
23541 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
23542
23543         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
23544         decode a single column from a row in a metadata table and changes
23545         to take advantage of it in the typedef locator (gives a nice speed up).
23546         Store offset info for function params.
23547
23548 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
23549
23550         * image.h (MONO_IMAGE_IS_CORLIB): removed 
23551
23552 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
23553
23554         * assembly.c: how could mono_assembly_close () had ever worked?
23555         * metadata.c, metadata.h: provide offset info for local vars.
23556         Implement mono_type_size () to take care of alignment as well
23557         as size (it was mono_field_type_size in cli/class.c before).
23558
23559 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
23560
23561         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
23562
23563         * assembly.h (CORLIB_NAME): set to corlib.dll
23564
23565         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
23566
23567 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
23568
23569         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
23570         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
23571         tokentype.h: massive namespace cleanup.
23572
23573 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
23574
23575         * metadata.h, metadata.c: decode exception clauses when parsing method header.
23576
23577 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
23578
23579         * metadata.c (mono_metadata_free_type): added check for type !=
23580         NULL (void) before calling mono_metadata_free_type()
23581
23582 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
23583
23584         * metadata.h, row_indexes.h: added header with enumerations to use
23585         to index in the columns from tables in metadata and to decode coded
23586         tokens: we should start using this instead of embedding magic numbers
23587         all over the code.
23588
23589 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
23590
23591         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
23592         Move metadata_t info from cli_image_info_t to MonoImage, where
23593         it's easily accessible. Changed all the uses accordingly.
23594         Added the method and class caches to MonoImage.
23595         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
23596         and mono_metadata_decode_value () signature to be more consistent
23597         with the other parse functions (and simplify code). Taken advantage
23598         of zero-length array allocation with GCC. Removed reduntant (and
23599         wrong) MonoFieldType struct and use MonoParam instead. Changed
23600         mono_metadata_parse_field_type () to use common code for parsing.
23601         Added mono_metadata_typedef_from_field () and
23602         mono_metadata_typedef_from_method () to lookup a typedef index from a
23603         field or method token.
23604         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
23605
23606 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
23607
23608         * metadata.c (mono_metadata_parse_field_type): Implement. 
23609         (do_mono_metadata_parse_type): Split engine from
23610         mono_metadata_parse_type, so that we can create smaller structures
23611         for things that just have one pointer to the MonoType (look at
23612         the MonoFieldType)
23613
23614 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
23615
23616         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
23617         as Jan Gray found out, it is incorrect. 
23618
23619 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
23620
23621         * assembly.c: Implement asssembly loading.  This loads an image
23622         and loads all the referenced assemblies.  Come to think of it, we
23623         could always do lazy loading of the assemblies. 
23624
23625         * image.c (mono_image_open): Keep loaded images in a hashtable.
23626
23627         * image.h (MonoImage): Add reference count.
23628
23629 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
23630
23631         * assembly.c (mono_assembly_open): Keep track of the file name in
23632         case the assembly has no ASSEMBLY table.
23633
23634         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
23635         from get.c here.
23636
23637 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
23638
23639         * metadata.c, metadata.h: decode local vars in method header
23640         parse function. Change callers accordingly.
23641
23642 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
23643
23644         * metadata.h, cil-coff.h: protect against multiple inclusion.
23645         Added some new structures to hold information decoded from metadata:
23646         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
23647         and relevant decoding/free functions.
23648         * metadata.c: implement decoding functions. Add warning for out of bounds
23649         index in mono_metadata_locate(). Implement mono_get_method () to retreive
23650         all the info about a method signature and invocation. Remove check on
23651         uninitialized local var in parse_mh() and fix memory leak.
23652
23653 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
23654
23655         * metadata.h: More macros.
23656
23657         * tokentype.h: New file.
23658
23659 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
23660
23661         * assembly.c: added a consistency check and initialize
23662         some structures with g_new0().
23663         * metadata.c: fixed a couple more bugs in table size computation
23664         and add other checks for out-of bound access to metadata.
23665
23666 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
23667
23668         * metatada.c: fix bugs computing table sizes. Spew a
23669         warning when index in string heap is out of bounds.
23670
23671 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
23672
23673         * metadata.h: Add a couple of macros to manipulate tokens. 
23674
23675 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
23676
23677         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
23678         cli_section_tables).
23679
23680 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
23681
23682         * metadata.c (mono_metadata_user_string): New function, provides
23683         access to the UserString heap. 
23684
23685 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
23686
23687         * metadata.c: Add inline documentation.
23688
23689 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
23690
23691         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
23692         files. 
23693
23694 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
23695
23696         * typeattr.h: New file, TypeAttribute flags. 
23697
23698 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
23699
23700         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
23701         mono_assembly_ensure_section): Section loading code.
23702         (load_section_tables): Load the sections.
23703
23704         * mono/metadata/metadata.c (mono_metadata_locate_token,
23705         mono_metadata_locate): Functions to locate the information
23706         definition given a token or a table and an index.
23707         (mono_metadata_compute_table_bases): New.
23708         (compute_size): New function to compute the sizes of the various
23709         tables.
23710
23711         * mono/metadata/metadata.h: Finish listing the different index
23712         types. 
23713
23714         * mono/metadata/pedump.c: Improve to dump new information.
23715
23716 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
23717
23718         * mono/metadata/metadata.c: Entered all the tables matching
23719         Beta2. 
23720
23721         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
23722
23723
23724