* class-internals.h (_MonoGenericClass): Rename 'context' field to
[mono.git] / mono / metadata / ChangeLog
1 2006-01-04  Raja R Harinath  <rharinath@novell.com>
2
3         * class-internals.h (_MonoGenericClass): Rename 'context' field to
4         'cached_context', and change semantics -- it starts off NULL, and
5         is initialized on demand.
6         * class.c (mono_generic_class_get_context): New accessor to
7         replace 'context' field accesses.
8         (mono_class_get_context): New helper.
9         (*): Update to changes.
10         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
11
12 2007-01-03  Miguel de Icaza  <miguel@novell.com>
13
14         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
15         before the memcpy.   Fixes Marshal2 regression.
16
17 2007-01-02  Jb Evain  <jbevain@gmail.com>
18
19         * blob.h: add a MONO_TYPE_ENUM definition
20         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
21         fix the encoding of arrays of enums in custom attributes.
22
23         Fixes #79666.
24
25 2007-01-01  Miguel de Icaza  <miguel@novell.com>
26
27         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
28         string is null terminated, but only cut the string short if it
29         overflows the buffer.   
30         
31         (mono_string_to_byvalstr): Also fix this routine.   The code here
32         was not properly terminating a string (it was only terminated
33         because of the previous catch-all memset). 
34
35         I left the memset, because I do not know if applications expect
36         the runtime to clear this region. 
37
38         Fixes #79944.
39
40         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
41         Clear the error before returning to unmanaged code to prevent the
42         runtime from being confused later on (fixes  80420).
43         (ves_icall_type_from_name): Always call mono_loader_clear_error
44         after parsing a type that could have failed.
45         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
46
47         * loader.c (mono_loader_clear_error): Fix indentation.
48
49 2006-12-28  Martin Baulig  <martin@ximian.com>
50
51         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
52
53 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
54
55         * reflection.c: patch from Rolf Bjarne Kvinge to fix
56         getting a token for an EnumBuilder.
57
58 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
59
60         * reflection.c: be more careful in case resource generation
61         fails to create the data array.
62
63 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
64
65         * sgen-gc.c: write barrier for clone and fix unregister handles.
66
67 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
68
69         * reflection.c: some fixes needed in the generics code for the moving GC.
70
71 2006-12-22  Robert Jordan  <robertj@gmx.net>
72
73         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
74         account. Fixes bug #80299.
75
76 2006-12-21  Raja R Harinath  <rharinath@novell.com>
77
78         Fix WaitHandle usage in delegates.
79         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
80         * object.c (mono_wait_handle_new): Use the property set method to
81         initialize the handle.
82         (mono_wait_handle_get_handle): New.
83         * threadpool.c (mono_async_invoke): Use it.
84         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
85         Likewise.
86         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
87
88 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
89
90         * marshal.c (emit_marshal): Call emit_marshal_variant and
91         emit_marshal_com_interface when applicable.
92         (emit_marshal_variant, emit_marshal_com_interface): Add
93         methods for this case and remove if's from emit_marshal_object.
94         
95 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
96
97         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
98
99 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
100
101         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
102         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
103         and GlobalFree on Windows. Remove FIXME.
104
105 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
106
107         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
108         implementation for managed objects.
109
110 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
111
112         * object.c: implemented code to be used for checking
113         that no reference field overlaps with non-references.
114
115 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
116
117         * threadpool.c: fix queue code to be compatible with the
118         moving GC.
119
120 2006-12-18  Miguel de Icaza  <miguel@novell.com>
121
122         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
123         in structures by throwing ArgumentNullException.
124
125         (emit_marshal_safehandle): Also when they are null parameters.
126
127         (emit_marshal_safehandle): Add support for ref
128         SafeHandles parameters
129
130 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
131
132         * profiler.c: updated to use the mono-dl API instead of
133         gmodule.
134
135 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
136
137         * profiler.c: updated to use the mono-dl dynamic loading
138         API instead of gmodule.
139
140 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
141
142         * profiler.c: use readlink, older versions of glib don't have
143         g_file_read_link ().
144
145 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
146
147         * profiler.c: try to detect the path to mono if libc fails to provide
148         a useful name (bug #80286).
149
150 2006-12-16  Raja R Harinath  <rharinath@novell.com>
151
152         Fix #80242
153         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
154         instance, use the generic type definition instead.
155         (ves_icall_Type_GetNestedTypes): Likewise.
156         * class.c (mono_class_create_generic): Always set the
157         nested_classes of a generic instance to NULL, even if the generic
158         type definition has nested types.
159
160 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
161
162         * marshal.c (mono_string_from_bstr): Revert previous Windows change
163         and fix on Linux.
164         
165 2006-12-15  Miguel de Icaza  <miguel@novell.com>
166
167         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
168         my arguments were in the wrong order.   I also fixed the Windows
169         version which seems to have had the same issue.
170
171         (mono_free_bstr): On Unix, this is g_free.
172         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
173         conversions (for the tests in corlib to pass).
174
175 2006-12-14  Miguel de Icaza  <miguel@novell.com>
176
177         * marshal.c (emit_ptr_to_object_conv): For now, ignore
178         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
179         exception if a ref SafeHandle in a struct has changed).
180         
181         (emit_struct_conv): Do not perform layout checks for classes
182         derived from SafeHandle, as those are specially handled. 
183
184         (emit_object_to_ptr_conv): Add support for
185         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
186
187         (emit_marshal_safehandle): Implement conversion of return values
188         of safehandles (MARSHAL_ACTION_CONV_RESULT).
189         
190         * threads.c: WaitHandle now is compiled with two different handles
191         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
192         for 2.0.
193         
194         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
195         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
196         these routines to cope with both kinds of fields.
197
198 2006-12-12  Miguel de Icaza  <miguel@novell.com>
199
200         * metadata.c (mono_type_to_unmanaged): Handle the case where
201         type->data.klass is a SafeHandle, and in that case, return the
202         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
203         MONO_MARSHAL_CONV_SAFEHANDLE. 
204
205 2006-12-11  Miguel de Icaza  <miguel@novell.com>
206
207         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
208         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
209         calling emit_marshal_object.
210
211         (emit_marshal_safehandle): Implement marshalling of
212         SafeHandle parameters (no ref support yet).
213
214         (MarshalAction): Document the defines as I implement
215         them for SafeHandle.
216
217         (emit_marshal_object): indentation police.
218
219         * class-internals.h: Define MonoSafeHandle.
220         Add safehandle_class to MonoDefaults type.
221
222         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
223         list of classes to check for fields. 
224
225         * domain.c (mono_init_internal): Add SafeHandle to the list of
226         mono_defaults loaded.
227
228 2006-12-15  Raja R Harinath  <rharinath@novell.com>
229
230         Fix #80253
231         * reflection.c (mono_reflection_bind_generic_parameters): If the
232         generic type definition is a type builder, ensure that it is fully
233         initialized before instantiating it.  Kill some dead code.
234
235 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
236
237         * object.c: clear the loader_error () before loading
238         more metadata stuff (bug #80258).
239
240 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
241
242         * icall.c, icall-defs.h: type modifiers icalls for
243         parameters and properties.
244
245 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
246
247         * object.c, icall.c: fixed warnings.
248
249 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
250
251         * marshal.c: fixed a couple of leaks and coding style in a few places.
252
253 2006-12-08  Dick Porter  <dick@ximian.com>
254
255         * process.c: Cope with NULL ProcessStartInfo arguments on windows
256         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
257         80173.
258
259 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
260
261         * process.c: ProcessStartInfo may have only filename set and
262         arguments can be NULL.
263
264 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
265
266         * icall.c: fix leak found by Robert Jordan.
267
268 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
269
270         * marshal.c, marshal.h: generate managed method to access an element
271         of a multi-dimensional array.
272
273 2006-11-30  Paolo Molaro (lupus@ximian.com)
274
275         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
276
277 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
278
279         * icall.c: back out GetFields () fix until the serialization code is
280         fixed to not depend on the incorrect behaviour.
281
282 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
283
284         * profiler.c: provide defaults if none are set.
285
286 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
287
288         * Makefile.am, attrdefs.h: new public header file with
289         constants for attributes for use by embedders.
290
291 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
292
293         * icall.c: GetFields () fix for bug #80064.
294
295 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
296
297         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
298         removed long unused icalls.
299
300 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
301   
302         * marshal.c: 
303                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
304                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
305                 can be generated without a delegate class.
306                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
307         
308         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
309
310 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
311
312         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
313         #80069.
314
315 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
316
317         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
318         icall-def.h: added icalls needed by System.GC.
319
320 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
321
322         * loader.c: ensure the class in catch clauses is handled
323         correctly for generics methods (fixes bug#79980).
324
325 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
326
327         * monitor.h, monitor.c: added mono_locks_dump () function
328         to help debug deadlocks involving managed locks.
329
330 2006-11-13  Dick Porter  <dick@ximian.com>
331
332         * file-io.c (get_file_attributes): If the file is a symlink try
333         and get the stat data for the target, but also add the
334         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
335         the specs for the windows symlink support, but will probably have
336         to be reworked when I have test data from a vista machine.  Fixes
337         bug 79887.
338
339 2006-11-13  Dick Porter  <dick@ximian.com>
340
341         * gc.c (mono_domain_finalize): 
342         * marshal.c (mono_delegate_begin_invoke): 
343         * threadpool.c (socket_io_init, mono_thread_pool_init)
344         (mono_thread_pool_finish): 
345         * monitor.c (mono_monitor_try_enter_internal): 
346         * threads.c (mono_thread_resume, mono_thread_init)
347         (mono_thread_suspend_all_other_threads)
348         (mono_thread_execute_interruption): 
349         * appdomain.c (mono_domain_unload): Check for NULL error returns
350         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
351         75733.
352
353 2006-11-11  Miguel de Icaza  <miguel@novell.com>
354
355         * process.c
356         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
357         Only close the handle if the value of the handle is not
358         INVALID_HANDLE_VALUE.  This just makes the process a bit more
359         robust.
360
361         Improvement for #75733, so that we do not run into this problem. 
362
363         
364         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
365         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
366         internal variables.  Fixes #79462 
367         
368
369 2006-11-09  Dick Porter  <dick@ximian.com>
370
371         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
372         Use poll() not select().  Fixes bug 79397.
373
374 2006-11-09  Raja R Harinath  <rharinath@novell.com>
375
376         Fix #79872
377         * assembly.c (mono_assembly_load_from_full): Check that the given
378         image has an assembly manifest.
379
380 2006-11-09  Ankit Jain  <jankit@novell.com>
381
382         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
383         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
384         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
385
386 2006-11-07  Dick Porter  <dick@ximian.com>
387
388         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
389         Put the old resolver behaviour back for pre-2.0 profiles.
390
391 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
392
393         * threadpool.c: precise GC and locking fixes.
394
395 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
396
397         * class.c: don't load types that have an explicit unaligned
398         managed reference. Provide better info in the TypeLoad exception.
399         Part of the fix for bug #79744.
400         * object.c: use the correct check for class type load issues.
401
402 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
403
404         * class.c: enforce alignment of fields with managed references
405         even when Pack=1 is forced by the user (bug #77788).
406
407 2006-11-03  Dick Porter  <dick@ximian.com>
408
409         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
410         If the address reverse lookup fails, return it as the hostname
411         anyway.  Fixes bug 79721.
412
413 2006-11-03  Dick Porter  <dick@ximian.com>
414
415         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
416         Fix build on Windows.
417
418 2006-11-02  Dick Porter  <dick@ximian.com>
419
420         * icall-def.h: 
421         * object-internals.h: 
422         * exception.c (mono_get_exception_thread_interrupted): 
423         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
424         Fixes bug 74525.
425
426         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
427         Check for pending Thread.Interrupt.
428
429 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
430         * loader.c: Fixed bug 79684.
431
432 2006-10-27  Dick Porter  <dick@ximian.com>
433
434         * file-io.c (get_file_attributes): Force symlinks to directories
435         to be returned as a regular file.  Fixes bug 79733.
436 2006-10-26  Dick Porter  <dick@ximian.com>
437
438         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
439         CreateFile to open a directory then we need to set the
440         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
441
442 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
443
444         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
445         friends.
446
447 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
448
449         * sgengc.c: small cleanup of timer code.
450
451 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
452
453         * sgen-gc.c: fix some warnings and start adding support for
454         complete object removal on domain unload.
455
456 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
457
458         * assembly.c: build_assembly_name should not consider a version
459         number without build or revision number invalid. Fixes bug #79715.
460
461 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
462
463         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
464         call kernel32 function OutputDebugString directly.
465         
466         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
467         
468 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
469
470         * reflection.c: small cleanup, using a function to insert a MonoString
471         in the string heap.
472
473 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
474
475         * reflection.c: moving GC fixes.
476
477 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
478
479         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
480         all the objects with finalizers belonging to an unloading appdomain.
481
482 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
483
484         * sgen-gc.c: added ability to allocate even when the nursery is fully
485         pinned and fixed a couple of bugs.
486
487 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
488
489         * threads.h: Revert the last change for now.
490
491         * threads.h (mono_thread_get_pending_exception): Rename this to
492         mono_thread_get_undeniable_exception ().
493
494 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
495
496         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
497         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
498         when fname does not refer to valid assembly. This result in a more
499         meaningful error message.
500         * exception.c: added mono_get_exception_bad_image_format2 which 
501         constructs a BadImageFormatException using the ctor taking a custom
502         message and the file name. Passing in a NULL msg results in a default
503         message.
504         * exception.h: define mono_get_exception_bad_image_format2 function.
505         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
506         when file name pointed to an invalid IL image. Use 
507         mono_get_exception_file_not_found2 to construct FileNotFoundException,
508         as this results in a more meaningful error message.
509
510 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
511
512         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
513         #79465.
514
515 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
516
517         * metadata.c (mono_type_size): Change the align parameter to guint32 for
518         consistency with the other _size functions.
519         (mono_type_stack_size): Ditto.
520
521         * class.c object.c icall.c: Fix warnings caused by the above change.
522
523         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
524
525         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
526
527         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
528
529 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
530
531         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
532         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
533         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
534         threadpool.h, threads-types.h: mark more internal functions.
535
536 2006-10-11  Dick Porter  <dick@ximian.com>
537
538         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
539         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
540         reproduce the bug even before applying the fix.)
541
542 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
543
544         * reflection.c: allow retrieving attributes for arguments in generic
545         methods (bug #79241).
546
547 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
548
549         * debug-mono-symfile.c: properly check fopen () result (found by
550         coverity).
551
552 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
553
554         * reflection.c: make error message clearer and fixed two
555         issuelets found by Coverity.
556
557 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
558
559         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
560
561 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
562
563         * object-internals.h, gc-internal.h, profiler-private.h:
564         mark internal functions.
565
566 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
567
568         * reflection.c: put data in the text section.
569         * icall.c: recognize more types in type_from_typename ().
570         * process.c, marshal.c: added some GC FIXMEs.
571
572 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
573
574         * loader.c: check for NULL before initializing.
575
576 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
577
578         * gc.c (finalizer_thread): Use a non-alertable wait here.
579
580         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
581         until the correct solution is found.
582
583 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
584
585         * reflection.c (mono_module_get_object): Avoid an assert when operating on
586         modules with no metadata. Fixes #79596.
587
588         * image.c (load_metadata_ptrs): Put back the error message when
589         the #- heap is encountered since the support is not complete yet.
590
591 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
592
593         * gc.c: do not allow the user to SuppressFinalize () a
594         delegate because it would leak the trampoline if present.
595
596 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
597
598         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
599         PropertyPtr table.
600
601 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
602
603         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
604
605         * metadata.c (mono_metadata_get_param_attrs): Ditto.
606
607         * row-indexes.h: Add definitions for *Ptr tables.
608
609         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
610
611         * metadata.c (mono_metadata_translate_token_index): New helper function to
612         translate table indexes used in uncompressed metadata.
613         (mono_metadata_decode_table_row): Ditto.
614         (mono_metadata_decode_table_row_col): Ditto.
615
616         * metadata.c: Add table schema for *Ptr tables.
617
618         * class.c loader.c: Use the new helper function to access the affected metadata
619         tables.
620         
621         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
622         #38532.
623         
624 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
625
626         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
627         sequences which can be unbounded in size. Fixes #79583.
628
629 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
630
631         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
632         static initialization.
633
634         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
635
636         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
637
638         * domain.c (mono_domain_free): Free up type_init_exception_hash.
639
640         * object.c (mono_runtime_class_init): Implement correct semantics when a static
641         ctor fails, i.e. throw the same exception on subsequent accesses.
642         
643 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
644
645         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
646         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
647         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
648         Handle marshalling of interfaces and VARIANTs contained in structs.
649         
650         Code is contributed under MIT/X11 license.
651         
652 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
653
654         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
655         
656         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
657         mempool.
658
659 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
660
661         * console-io.c: ignore previous SIGINT handler.
662
663 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
664
665         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
666         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
667         #79460, #79461, #79485.
668
669         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
670
671         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
672         #79217.
673
674 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
675
676         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
677         could be generated from it.
678
679 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
680
681         * rand.c: fix read loop to correctly handle EINTR.
682
683 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
684
685         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
686         internal calls are defined to keep methods closer to the declaring
687         type and allow a significant reduction in runtime relocations and
688         memory usage.
689
690 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
691
692         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
693         exception message to have FileNotFoundException use the default
694         assembly load error message. Fixes bug #79426.
695         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
696
697 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
698
699         * threadpool.c: (start_thread_or_queue) use the root domain when
700         creating the thread instead of the async object one.
701
702 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
703
704         * class.c, object.c, class-internals.h, reflection.c:
705         for arrays, store element_size inside MonoClass (speedup
706         for array object creation).
707
708 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
709
710         * icall.c: fixed CodeBase to use the file name and not the module
711         name (bug #79365).
712
713 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
714
715         * mono-debug.c, mono-debug.h: export find_method as
716         mono_debug_find_method ().
717
718 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
719
720         * debug-helpers.c, class-internals.h: added a few functions useful
721         when debugging under gdb.
722
723 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
724
725         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
726         characters that need special handling.
727
728 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
729
730         * mono-config.c: make the os/cpu specification more flexible,
731         allowing lists and negation.
732
733 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
734
735         * marshal.c: COM Interop fixes. Handle case where method->klass.
736         is interface. Handle BSTR/MonoString when null. Use CDECL as 
737         calling convention on non-windows platforms. This is for
738         compatibility with XPCOM and MainWin COM.
739         
740         Code is contributed under MIT/X11 license.
741         
742
743 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
744
745         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
746         correctly. Fixes #79217.
747
748         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
749
750 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
751
752         * mono-config.c: allow both an os and cpu attribute for dllmap
753         and dllentry elemnets to enable a single config file to be used
754         for multiple architectures.
755
756 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
757
758         * loader.c: MonoLoaderError was cleared too soon on load failure.
759         Fixes bug #79424.
760
761 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
762
763         * icall.c: use the defining class vtable when accessing a
764         static field, not a pobblibly derived class.
765
766 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
767
768         * icall.c string-icalls.c: Remove references to unicode.h.
769
770         * unicode.h unicode.c Makefile.am: Remove these unused source files.
771
772         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
773
774         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
775         indicating the image where custom marshaller types should be looked up.
776         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
777         custom marshallers, instead of corlib. Fixes #79425.
778
779 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
780
781         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
782
783 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
784
785         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
786         Implement Environment.ProcessorCount.
787         
788         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
789         Implement Environment.ProcessorCount.
790         
791         * icall.c: 
792         Add Environment.ProcessorCount icall.
793         
794         Patch by Jason McFall.
795
796 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
797
798         * assembly.c: don't append .exe/.dll when the filename already contains
799         one of those extensions.
800
801 2006-09-12  Martin Baulig  <martin@ximian.com>
802
803         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
804         to array interfaces.
805
806 2006-09-11  Martin Baulig  <martin@ximian.com>
807
808         * reflection.c (mono_image_build_metadata): Create the
809         MethodImpl's after emitting all types and methods, so we don't
810         need another fixup pass for them.
811
812 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
813
814         * class.c (mono_class_from_name_case): Fix regression introduced by the last
815         change.
816
817 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
818
819         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
820         unload.
821
822 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
823
824         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
825         args is not set. Fixes #78926.
826
827 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
828
829         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
830
831         * image.c (load_class_names): Move this to class.c, and rename it to 
832         'mono_image_init_name_cache'.
833         (load_modules): Fix a warning.
834
835         * class.c icall.c image.c: Initialize image->name_cache lazily.
836
837         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
838         on its name using information in the AOT file.
839
840         * class.c (mono_class_from_name): Use the new hook function.
841
842 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
843
844         * reflection.c (mono_param_get_objects): Handle enum default parameter values
845         correctly.
846
847         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
848         Fixes #79289.
849         
850 2006-09-06  Martin Baulig  <martin@ximian.com>
851
852         * icall.c (mono_lookup_internal_call): Small fix.
853
854 2006-09-05  Raja R Harinath  <rharinath@novell.com>
855
856         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
857         double g_free.
858
859 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
860
861         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
862         when --debug is specified.
863
864 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
865
866         * class.c (setup_generic_array_ifaces): Fix a warning.
867
868 2006-09-04  Miguel de Icaza  <miguel@novell.com>
869
870         * Temporarily remove the patch to assemly.c that checks the
871         assembly versions as it breaks our gacutil.
872
873 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
874
875         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
876
877         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
878         a net 1.0 runtime.
879
880         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
881         created using the default ctor. Fixes #79152.
882         (mono_string_builder_to_utf16): Ditto.
883
884 2006-09-01  Martin Baulig  <martin@ximian.com>
885
886         Fix handling of the generic array interfaces.
887
888         * class-internals.h
889         (MonoDefaults): Removed `generic_array_class' and added
890         `generic_ilist' class.
891
892         * class.c
893         (mono_bounded_array_class_get): Add the new generic array interfaces.
894         (setup_generic_array_ifaces): New static method; create vtable
895         entries for each method in the generic array interfaces.
896
897         * metadata.c
898         (select_container): Allow "parent-less" generic methods.
899
900         * marshal.c
901         (mono_marshal_get_generic_array_helper): New public method.
902
903         * icall.c
904         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
905         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
906         moved the interncall into System.Array.
907
908 2006-09-01  Raja R Harinath  <rharinath@novell.com>
909
910         A few more cases of avoiding work on types with ->byref set.
911         Has the real fix for #79238
912         * icall.c (is_generic_parameter): New helper.
913         (ves_icall_Type_GetGenericParameterPosition): Use it.
914         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
915         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
916         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
917         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
918         reference types.
919         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
920         reference types.
921         (ves_icall_Type_get_IsGenericInstance): Likewise.
922         (ves_icall_Type_get_IsGenericType): Likewise.
923
924 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
925
926         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
927         class if possible.
928
929         * mempool.h (mono_mempool_get_allocated): New helper function.
930
931         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
932         change.
933
934         * mempool.c: Fix warnings and the calculation of stats.
935
936         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
937
938         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
939
940         * loader.c (mono_get_method_from_token): Update method_count stat.
941
942         * class-internals.h (MonoStats): Add some stats.
943
944 2006-08-31 Robert Jordan  <robertj@gmx.net>
945
946         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
947         with managed variants.
948         All code is contributed under the MIT/X11 license.
949         
950 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
951
952         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
953         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
954
955         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
956
957         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
958         with cycles in classes.
959
960         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
961
962         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
963         missing a [MarshalAs] directive. Fixes #79203.
964
965         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
966         klass->marshal_info. Fixes #79217.
967
968 2006-08-30  Martin Baulig  <martin@ximian.com>
969
970         Committing a patch from Joachim Ante <joe@otee.dk>:
971         Add support for binary data symbol stores.
972
973         * debug-mono-symfile.c
974         (mono_debug_open_mono_symbol_file): Renamed into
975         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
976         arguments.
977
978         * mono-debug.c
979         (mono_debug_open_image): Added `raw_contents' and `size' args.
980         (mono_debug_init_2_memory): New public function.
981
982 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
983
984         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
985
986 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
987
988         * appdomain.c: implement support for ShadowCopyFiles.
989
990 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
991
992         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
993         when value is NULL (and should remove CID #51).
994
995 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
996
997         * image.c: moved 2 functions to ../utils.
998
999 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
1000
1001         * gc.c: cope with the target object of a GC handle being NULL
1002         (bug #78877).
1003
1004 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
1005
1006         * class.c: recursively check parent's explicit implementations
1007         of interface methods (fixes bug #79125).
1008
1009 2006-08-19  Miguel de Icaza  <miguel@novell.com>
1010
1011         * filewatcher.c: Avoid warnings when building, do not redefine
1012         constants that are defined.
1013
1014         Remove warnings.
1015
1016 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1017
1018         * image.c: don't fail when the link points to an absolute path.
1019
1020 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
1021
1022         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
1023         Fix CID #3.
1024
1025 2006-08-17  Miguel de Icaza  <miguel@novell.com>
1026
1027         * image.c (full_path): A new method used to obtain the actual path
1028         of an assembly even in the presence of symbolic links.  
1029
1030         This is necessary for the case where we are running a binary that
1031         has been GACed, but we are using the "published" path name
1032         ($prefix/mono/1.0/blah.exe) which happens to point to the real
1033         file in the GAC.
1034
1035         This was the source of the failure for the `xsp' command with the
1036         recent AppDomain changes, as far as the runtime was concerned,
1037         there were two different assemblies: $prefix/mono/1.0/blah.exe and
1038         $prefix/mono/gac/blah/version/blah.exe.
1039
1040         (do_mono_image_open): use full path
1041
1042 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1043
1044         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
1045
1046 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
1047
1048         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
1049         domain_id is supplied. Fix CID #241 and corlib's unit tests.
1050
1051 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1052
1053         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
1054         small structures. Fixes #78990.
1055
1056 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1057
1058         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
1059
1060         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
1061
1062 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1063
1064         * appdomain.c:
1065         * marshal.c: don't load all the assemblies from a domain into newly
1066         created ones. The new domains might have different rules and load
1067         assemblies from different locations. Fixes bug #76757.
1068
1069         Patch by Lluis. Conflicts resolved by Brian Crowell.
1070
1071 2006-08-16  Alp Toker  <alp@atoker.com>
1072
1073         * socket-io.c: First half of the fix for #79084.
1074         Set sa_size to the length of the content, not that of the struct.
1075         Don't add NULL suffix to the content, this should be done in
1076         managed code if needed.
1077
1078 2006-08-14  Raja R Harinath  <rharinath@novell.com>
1079
1080         Fix part of #79012
1081         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
1082         mono_metadata_parse_type returns NULL.
1083
1084 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
1085
1086         * normalization-tables.h : new file for string normalization data.
1087         * locales.c, locales.h, icall.c :
1088           added load_normalization_resource() for string normalization,
1089           and icall as well.
1090         * Makefile.am : added normalization-tables.h to the sources.
1091
1092 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
1093
1094         * marshal.c: Add more helper functions to reduce code duplication and use them
1095         everywhere.
1096
1097 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
1098
1099         * marshal.c: Fix non-x86 stdcall warnings.
1100         
1101         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
1102         them everywhere.
1103
1104 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
1105
1106         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
1107         type check on multi-dimensional arrays. Fixes #79000.
1108
1109 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
1110
1111         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
1112         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
1113         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
1114         * class-internals.h: add is_com_object to class structure.
1115         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
1116         null checks to COM object marshalling. Fix .ctor call on RCW.
1117         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
1118         
1119         All code is contributed under the MIT/X11 license.
1120
1121 2006-08-09  Dick Porter  <dick@ximian.com>
1122
1123         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
1124         racing mono_monitor_allocator_lock() somewhere, so don't delete
1125         the critical section for now.  Found by running and exiting
1126         monodevelop.
1127
1128 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
1129
1130         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
1131         (ves_icall_System_ComObject_FindInterface): Ditto.
1132         (ves_icall_System_ComObject_CacheInterface): Ditto.
1133
1134         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
1135         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
1136
1137 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1138
1139         * threadpool.c: treat pipes from process asynchronous reads as sockets
1140         when reading from them, so we get select/poll or epoll to wait for
1141         data.
1142
1143 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
1144
1145         * loader.c: Fix a typo (CID #233) in the null check.
1146
1147 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
1148
1149         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
1150         Hopefully fixes #78949.
1151         
1152         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
1153         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
1154         bytes. Fixes #78972.
1155
1156 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1157
1158         * filewatcher.c: we need to set errno here.
1159
1160 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1161
1162         * filewatcher.c: let Win32Exception get the error value.
1163
1164 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1165
1166         * filewatcher.c: translate errno into win32 errors for Win32Exception
1167         to know what happened.
1168
1169 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
1170
1171         * threadpool.c: Fix more warnings.
1172
1173         * assembly.c (search_loaded): Fix warnings.
1174
1175         * threadpool.c (mono_thread_pool_finish): Fix warnings.
1176         (mono_async_invoke): Ditto.
1177
1178 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
1179
1180         * object.c (mono_remote_class_vtable): Need to create proxy vtable
1181         entries for __ComObject type in addition to ComImport types.
1182         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
1183         about hash table.
1184         
1185         All code is contributed under the MIT/X11 license.
1186
1187 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
1188
1189         * image.c: avoid tentative loading of modulerefs that contain
1190         no metadata (P/Invoke library names).
1191
1192 2006-07-28  Dick Porter  <dick@ximian.com>
1193
1194         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
1195         mono_loader_lock() somewhere, so don't delete the critical section
1196         for now.  Found by running and exiting monodevelop.
1197
1198 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1199
1200         * filewatcher.c: define the inotify syscalls when we're building on
1201         linux and have sys/syscall.h. The build system might not have support
1202         for inotify but the target system might have it.
1203
1204 2006-07-26  Miguel de Icaza  <miguel@novell.com>
1205
1206         * domain.c: Documentation updates.
1207
1208         * loader.c (mono_free_method): Do not release the method
1209         information if we are being profiled, as profilers will use this
1210         information at shut down to present some data to the user.
1211
1212         This is needed so that the profiler does not crash, as the
1213         profiler tends to keep MonoMethods around, and they might become
1214         invalid if we free these.
1215
1216         (mono_get_method_constrained): Return the original CIL stream
1217         method as well, so verification can be performed against it.
1218
1219 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1220
1221         * filewatcher.[ch]: support for inotify file system watcher.
1222         * icall.c: add new internal calls for the inotify file system watcher.
1223
1224 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1225
1226         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
1227         #78888.
1228
1229 2006-07-20  Dick Porter  <dick@ximian.com>
1230
1231         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
1232         warning.
1233
1234 2006-07-20  Dick Porter  <dick@ximian.com>
1235
1236         * threads.c (start_wrapper): Do the thread cleanup while we still
1237         hold a reference to its object.  Fixes bug 78123.
1238
1239 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
1240
1241         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
1242         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
1243           "managed-to-managed".
1244         * icall.c: Redirect string constructors that take sbyte* to
1245           ves_icall_System_String_ctor_RedirectToCreateString.
1246         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
1247           to CreateString () methods with matching signature.
1248         * reflection.c: Use original security informations for
1249           MONO_WRAPPER_MANAGED_TO_MANAGED.
1250         * security-manager.c: Use original security informations for
1251           MONO_WRAPPER_MANAGED_TO_MANAGED.
1252         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
1253           that is a placeholder and only its address should be used.
1254         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
1255           that is a placeholder and only its address should be used.
1256
1257 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
1258
1259         Begin implementing COM Interop.
1260         * appdomain.c: Increment corlib version.
1261         * class.c: Set ComImport classes' parent to __ComObject.
1262         * loader.c: Mark cominterop methods as such.
1263         * domain.c: Add __ComObject class to MonoDefaults structure.
1264         * image.c: Add 2 hashtables to the image for COM Interop related methods
1265         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
1266         using the mempool allocator
1267         
1268         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
1269         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
1270         declaration for mono_metadata_type_dup_mp.
1271         
1272         * debug-helpers.c: Added strings for two additional wrapper types
1273         * object.c: Create proxy objects for ComImport classes
1274         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
1275         and added __ComObject class to MonoDefaults structure.
1276         
1277         * object-internals.h: Finish MonoRealProxy definition, and add definition of
1278         MonoComInteropProxy and MonoComObject.
1279         
1280         * marshal.c: Added support for COM Interop
1281         (signature_cominterop): Converts managed signature to corresponding
1282         unmanaged COM signature.
1283         (cominterop_get_function_pointer): gets unmanaged function pointer via
1284         COM object vtable
1285         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
1286         (cominterop_get_method_interface): returns interface type that method is defined on
1287         (mono_mb_emit_cominterop_call): emits native call to function pointer
1288         gotten from vtable
1289         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
1290         that matches signature of unmanaged function.
1291         (cominterop_get_native_wrapper): wrapper around adjusted method call.
1292         (cominterop_get_invoke): forwards call from proxy to __ComObject
1293         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
1294         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
1295         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
1296         
1297         * marshal.h: Added Marshal icall declarations.
1298         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
1299         so we can access them in finalizer
1300         
1301 2006-07-14  Dick Porter  <dick@ximian.com>
1302
1303         * object.c (mono_type_initialization_cleanup): Fix a race
1304         condition by temporarily commenting out the critical section
1305         deletion.
1306
1307 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
1308
1309         * reflection.c (create_custom_attr): Fix some warnings.
1310         (create_custom_attr_data): Ditto.
1311         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
1312         types. Fixes #78855.
1313
1314 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
1315
1316         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
1317
1318         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
1319
1320 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
1321
1322         * reflection.c (resolve_object): Add support for DynamicMethod.
1323
1324         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
1325         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
1326
1327 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
1328
1329         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
1330         don't leak GPtrArray's pdata has we have no use (nor free) for it.
1331
1332 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
1333
1334         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
1335         Fixes #77888.
1336
1337 2006-06-30  Raja R Harinath  <rharinath@novell.com>
1338
1339         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
1340         slightly: remove a shadow local variable.
1341
1342 2006-06-29  Raja R Harinath  <rharinath@novell.com>
1343
1344         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
1345         definition that introduces the virtual function slot.
1346         Also fix Coverity #105.
1347
1348 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
1349
1350         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
1351         for dynamic assemblies. Fixes #78724.
1352
1353 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
1354
1355         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
1356         Fixes #78722.
1357
1358 2006-06-21  Martin Baulig  <martin@ximian.com>
1359
1360         * reflection.c
1361         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
1362         fixes #76484.
1363
1364 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
1365
1366         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
1367
1368 2006-06-20  Raja R Harinath  <rharinath@novell.com>
1369
1370         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
1371         nor TYPEREFs.
1372         * class.c (mono_class_create_from_typespec): Add 'context' argument.
1373         Inflate result if necessary.
1374         (mono_class_get_full): Remove old version.  Rename from
1375         'mono_class_get' and add 'context' argument.  Pass it to
1376         ..._create_from_typespec.
1377         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
1378         (mono_ldtoken): Revert change below.
1379
1380 2006-06-20  Martin Baulig  <martin@ximian.com>
1381
1382         * class.c (mono_ldtoken): Don't pass the generic context to
1383         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
1384
1385 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
1386
1387         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
1388         and later freeing it. Fixes #78638.
1389
1390 2006-06-15  Miguel de Icaza  <miguel@novell.com>
1391
1392         * icall.c (mono_class_get_throw): Revert over-zealous error
1393         throwing, the caller for mono_class_get_throw will cope with
1394         errors when classes are not properly initialized already.
1395
1396         The code still copes with loader exceptions though.
1397
1398         Fixes the regression in reftype1 and reftype3 from the CAS tests.
1399         
1400 2006-06-14  Miguel de Icaza  <miguel@novell.com>
1401
1402         Fixes the `make run1' version of RuntimeAbort (to be commited,
1403         source is in Bugzilla).
1404         
1405         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
1406         FALSE on class loading failure instead of returning true.
1407
1408         * class.c (mono_class_create_from_typedef): It is possible for
1409         mono_metadata_interfaces_from_typedef_full to fail if a class is
1410         not found, cope with this.
1411         
1412
1413 2006-06-14  Dick Porter  <dick@ximian.com>
1414
1415         * socket-io.c: 
1416         * process.c: Fix a bunch of signed/unsigned warnings from gcc
1417         4.1.1
1418
1419 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
1420
1421         * culture-info-table.h : oops, forgot to make it nsync with r61548.
1422
1423 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
1424
1425         * icall.c: Another fix for building mono in Visual Studio.
1426
1427 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
1428
1429         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
1430         
1431 2006-06-09  Martin Baulig  <martin@ximian.com>
1432
1433         * debug-mono-symfile.c: Put this back and really fix it this
1434         time. Sorry for all the trouble.
1435
1436 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
1437
1438         * icall.c (mono_class_get_throw): Fix a warning.
1439         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
1440         ReflectionTypeLoadException if needed. Fixes #78606.
1441
1442         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
1443         (mono_class_init): Ditto.
1444
1445         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
1446         ref_only exceptions.
1447         (mono_loader_clear_error): Make this work even if there is no error.
1448
1449 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
1450
1451         * object-internals.h marshal.c marshal.h icall.c: Implement method 
1452         Marshal.GetComSlotForMethodInfo using internal call.
1453
1454 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
1455
1456         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
1457         a function for signalling it.
1458
1459         * class.c (mono_class_from_typeref): Use the new kind of loader error when
1460         a referenced assembly is not found.
1461
1462         * loader.c (mono_loader_error_prepare_exception): Add support for 
1463         LOADER_ERROR_ASSEMBLY. Fix formatting.
1464
1465 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
1466
1467         * domain.c appdomain.c class-internals.h marshal.c: Add support 
1468         for VARIANT marshalling on windows and increment corlib version
1469         since Variant struct was added.
1470
1471 2006-06-03  Miguel de Icaza  <miguel@novell.com>
1472
1473         * debug-mono-symfile.c: Revert Martin's previous patch which broke
1474         stack trace line information:
1475
1476         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
1477         (Martin) when looking up B which is between A and C, return A not C.
1478
1479         Bug is #78573.
1480
1481         Thanks to Alexander Olk for tracking this down.
1482
1483 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
1484
1485         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
1486         
1487         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
1488         avoid clobbering its value.
1489         (mono_string_to_lpstr): Fix a warning on windows.
1490
1491 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
1492
1493         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
1494
1495         * reflection.c loader.c: Removed references to 'dummy' flag.
1496
1497         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
1498
1499         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
1500         it gets GC tracking.
1501
1502         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
1503         GC tracking.
1504         
1505         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
1506
1507         * marshal.c threadpool.c: Update callers of mono_async_result_new.
1508
1509         * appdomain.c: Bump corlib version.
1510
1511 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
1512
1513         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
1514         CEE_STIND_REF when working with object references.
1515
1516 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
1517
1518         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
1519         Fixes #78539.
1520
1521 2006-05-30  Miguel de Icaza  <miguel@novell.com>
1522
1523         * loader.c (method_from_memberref): Fix argument value for
1524         mono_loader_set_error_method_load (I was passing the MonoClass
1525         instead of the class name char *).
1526
1527 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
1528
1529         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
1530         CEE_STIND_REF when working with object references.
1531
1532 2006-05-30  Martin Baulig  <martin@ximian.com>
1533
1534         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
1535         mono_method_full_name() change and replace the ':' with a '.'
1536         here.
1537
1538 2006-05-30  Martin Baulig  <martin@ximian.com>
1539
1540         * debug-mono-symfile.c
1541         (mono_debug_symfile_lookup_location): Fix the algorithm:
1542         when looking up B which is between A and C, return A not C.
1543
1544 2006-05-29  Martin Baulig  <martin@ximian.com>
1545
1546         * mono-debug.h
1547         (MonoDebugMethodInfo): Make the typedef public.
1548         (MonoDebugSourceLocation): New public struct.
1549
1550         * mono-debug.c
1551         (mono_debug_source_location_from_address): Removed.
1552         (mono_debug_source_location_from_il_offset): Removed.
1553         (mono_debug_il_offset_from_address): Removed.
1554         (mono_debug_address_from_il_offset): Removed.
1555         (mono_debug_lookup_method): New public function.
1556         (mono_debug_lookup_source_location): New public function; replaces
1557         the old mono_debug_source_location_from_*() functions; see the
1558         inline documentation.
1559         (mono_debug_free_source_location): New public function.
1560         (mono_debug_print_stack_frame): New public function; see the
1561         inline documentation.
1562
1563         * debug-mono-symfile.c
1564         (mono_debug_find_source_location): Renamed into
1565         mono_debug_symfile_lookup_location(); only take a
1566         `MonoDebugMethodInfo *' and an `offset' argument; added inline
1567         documentation.
1568         (mono_debug_find_method): Renamed into
1569         mono_debug_symfile_lookup_method().
1570
1571 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
1572
1573         * assembly.c (mono_assembly_open_full): Dont overwrite the status
1574         returned by mono_image_open_full ().
1575
1576         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
1577         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
1578         #78517.
1579
1580         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
1581         #78518.
1582
1583 2006-05-27  Miguel de Icaza  <miguel@novell.com>
1584
1585         * class.c (mono_class_from_typeref): handle missing images
1586         earlier, deals with bug #78418.   Refactor code; 
1587
1588         Fix a warning introduced in my previous commit (some stale code
1589         from before I revisited my patch).
1590
1591         * class.c (mono_class_create_from_typedef): On failure, remove the
1592         class from the MonoImage->class_cache as the class is not
1593         initialized;   Fixes the leak pointed out by Paolo.
1594
1595 2006-05-25  Dick Porter  <dick@ximian.com>
1596
1597         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
1598         DeleteCriticalSections until I figure out which one may still be
1599         sometimes locked when mono_thread_cleanup is called.
1600
1601 2006-05-24  Dick Porter  <dick@ximian.com>
1602
1603         * threads.c (mono_thread_cleanup): Move the threading cleanup out
1604         of mono_thread_manage and back into its own function, so it can be
1605         called after the finalizer thread has finished.
1606
1607         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
1608
1609 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
1610
1611         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
1612         Fixes #78495.
1613
1614         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
1615         with non-blittable elements.
1616         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
1617
1618 2006-05-24  Martin Baulig  <martin@ximian.com>
1619
1620         * mono-debug-debugger.h (MonoDebuggerEvent): Added
1621         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
1622
1623         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
1624         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
1625         `mono_debugger_event_handler' to NULL.
1626
1627 2006-05-24  Martin Baulig  <martin@ximian.com>
1628
1629         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
1630
1631 2006-05-24  Martin Baulig  <martin@ximian.com>
1632
1633         * mono-debug-debugger.h
1634         (mono_debugger_create_notification_function): Added
1635         `MonoCodeManager *' argument.
1636
1637 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
1638
1639         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
1640
1641 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
1642
1643         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
1644         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
1645         implementation.
1646
1647 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
1648
1649         * icall.c: precise GC support: objects can't be stored in unmanaged
1650         memory anymore, even if they are kept alive by other references: since
1651         they can move the GC needs to be able to always find them.
1652
1653 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
1654
1655         * object.c: precise GC support for static fields. Support
1656         for moving GCs: write barriers and pinned allocation for interned
1657         strings.
1658
1659 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
1660
1661         * domain.c, domain-internals.h: precise GC support for the MonoDomain
1662         structure.
1663
1664 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
1665
1666         * class.c, gc.c: sgen and precise GC updates.
1667
1668 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
1669
1670         * marshal.h, marshal.c: added write barrier wrapper and precise type
1671         fixes.
1672
1673 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
1674
1675         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
1676         support.
1677
1678 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
1679
1680         * reflection.c: precise and sgen GC updates.
1681
1682 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
1683
1684         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
1685
1686 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
1687
1688         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
1689
1690 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
1691
1692         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
1693         MONO_TYPE_OBJECT. Fixes #78462.
1694
1695 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
1696
1697         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
1698         and blittable types.
1699
1700 2006-05-17  Miguel de Icaza  <miguel@novell.com>
1701
1702         * class.c (mono_class_get_exception_for_failure): Implement parts
1703         of a TODO: if the loader error is set (instead of the class
1704         error), we return a Loader exception that can be properly thrown
1705         elsewhere.
1706
1707         This was exposed by some Winforms 2.0 code that I tried to run
1708         (Atsushi pointed me to it).
1709
1710 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
1711
1712         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
1713         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
1714         
1715         * marshal.c (emit_marshal_vtype): Add limited support for 
1716         UnmanagedType.LPStruct. Fixes #78427.
1717
1718         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
1719         Applied a patch from kangaroo to fix #77523.
1720
1721 2006-05-17  Martin Baulig  <martin@ximian.com>
1722
1723         * threads.c
1724         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
1725         (debugger_thread_created): Removed.
1726         (debugger_thread_exited): Removed.
1727
1728 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
1729
1730         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1731
1732         * object-internals.h (MonoReflectionResource): Sync with managed version.
1733
1734 2006-05-12  Wade Berrier <wberrier@novell.com>
1735
1736         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
1737
1738 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
1739
1740         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
1741         functions try to allocate from the image mempool.
1742
1743 2006-05-12  Dick Porter  <dick@ximian.com>
1744
1745         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
1746
1747 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
1748
1749         * object.c: The FieldGetter and FieldSetter methods require the full
1750         name of the class, not only the name. Fixes bug #78277.
1751
1752 2006-05-11  Miguel de Icaza  <miguel@novell.com>
1753
1754         * loader.c (method_from_memberref): Do not pass the NULL klass to
1755         mono_loader_set_error_() methods.  Pass the non-NULL value
1756         (class). 
1757
1758 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
1759
1760         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
1761         (mono_assembly_close): Null out assembly->image->references after freeing it.
1762
1763         * image.c (mono_image_close): Free image->references.
1764         
1765         * reflection.c (mono_image_basic_init): Fix a small memory leak.
1766
1767 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
1768
1769         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
1770         before checking if it's NULL (g_assert).
1771
1772 2006-05-10  Martin Baulig  <martin@ximian.com>
1773
1774         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
1775         I thought I already killed that two months ago, but now it somehow reappeared.
1776
1777 2006-05-10  Martin Baulig  <martin@ximian.com>
1778
1779         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
1780
1781 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
1782
1783         * reflection.c: Allocate memory for dynamically created methods in the image
1784         mempools.
1785
1786 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
1787
1788         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
1789         don't use the ad pointer before checking if it's NULL (g_assert).
1790
1791 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
1792
1793         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
1794         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
1795
1796         * marshal.c: Allocate all signatures from mempools.
1797
1798         * marshal.c: Allocate some more signatures from mempools.
1799
1800 2006-05-09  Miguel de Icaza  <miguel@novell.com>
1801
1802         * object.c (mono_load_remote_field): The code used to provide a
1803         temporary variable for returning results if the user did not
1804         provide a result pointer.  But our temporary variable was allocted
1805         on the satck.
1806
1807         Fix calling code to always pass a result area.   Coverity ID 103.
1808
1809 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
1810
1811         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
1812         value, not the old. Fixes #78312.
1813         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
1814
1815         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
1816         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
1817         per-image cache.
1818
1819         * assembly.c (mono_assembly_close): Free image->references.
1820
1821         * assembly.c (mono_assembly_names_equal): Fix a warning.
1822         (mono_assemblies_cleanup): Cleanup more global data.
1823
1824         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
1825
1826         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
1827         ptr_cache and image->modules.
1828
1829         * image.c (mono_image_init): Allocate array_cache lazily.
1830         
1831 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1832
1833         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
1834         behavior was changed recently and has bad side effects.
1835
1836 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
1837
1838         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
1839         
1840         * assembly.c (mono_assembly_close): Remove a debug printf.
1841
1842         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
1843
1844         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
1845         to also allow for temporary references between mono_image_open ()/close ().
1846
1847         * domain.c (get_runtimes_from_exe): Add a FIXME.        
1848
1849 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
1850
1851         * marshal.c: Fix support for dynamic methods.
1852
1853         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
1854
1855         * marshal.c (mono_marshal_cleanup): New cleanup function.
1856
1857         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
1858         image mempools.
1859
1860         * class.c (mono_class_init): Fix leaking class->nested_classes.
1861
1862         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
1863
1864         * image.c (mono_image_init): Initialize the new cashes.
1865
1866         * image.c (mono_image_close): Destroy the new cashes.
1867
1868         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
1869
1870         * mempool.c (mono_mempool_strdup): New helper function.
1871
1872         * class-internals.h: Add prototype for mono_loader_unlock ().
1873
1874         * domain.c (mono_jit_info_table_find): Fix a warning.
1875         (mono_debugger_check_runtime_version): Ditto.
1876
1877         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
1878         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
1879         functions to these modules.
1880
1881         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
1882         metadata modules.
1883         
1884         * marshal.c (mono_free_bstr): Fix a warning.
1885
1886         * assembly.c (mono_assembly_open_full): Fix another small leak.
1887
1888         * object.c: Fix some unload leaks in the remoting code.
1889
1890         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
1891         function.
1892
1893         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
1894
1895         * reflection.c: Fix some unload leaks in dynamic assemblies.
1896
1897 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
1898
1899         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
1900         * marshal.h: Add BSTR support on Win32
1901         * icall.c: Add BSTR icalls
1902         * metadata.h: Add BSTR enums
1903
1904 2006-04-28  Miguel de Icaza  <miguel@novell.com>
1905
1906         Work to catch the crash from #76795 and turn it into an
1907         exception.   As I stubbed out pieces of the VisualBasic support,
1908         I found a number of places where the code was failing and I added
1909         checks to those places. 
1910         
1911         * metadata.c (do_mono_metadata_parse_generic_class): Make this
1912         function return a status code.  If we fail to parse the signature
1913         from mono_metadata_parse_generic_inst, return FALSE.
1914
1915         * loader.c (mono_get_method_from_token): If we fail to load the
1916         method (mono_class_get) return NULL.   
1917
1918         * (method_from_memberref): Return NULL if we are unable to parse
1919         the method signature
1920
1921         (mono_loader_error_prepare_exception): Since we now use the
1922         loader_error flag internally to stop processing, and obtaining
1923         exceptions that might be thrown will walk this code path the
1924         proper way of going from a MonoLoaderError into a
1925         MonoException was convoluted.   This new routine encapsulates the
1926         process of turning the error into an exception and *clearing* the
1927         error afterwards.
1928         
1929 2006-04-27  Miguel de Icaza  <miguel@novell.com>
1930
1931         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
1932         with missing assemblies), and to cope with:
1933
1934                 * Missing fieldref from a non-existing assembly.
1935                 * Missing methodref from a non-existing assembly.
1936
1937         The first batch of work to address *some* of the issues from 76661.
1938         
1939         * object.c (mono_class_create_runtime_vtable): If we fail to
1940         initialize the class raise the exception here. 
1941
1942         * metadata.c (mono_class_get_overrides_full): If any methods fail
1943         to load return the failure to the caller.
1944
1945         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
1946         flagging assemblies that failed to load.   
1947
1948         Do not crash if we are unable to load the assembly.
1949
1950         (mono_assembly_close): Do nothing with REFERENCE_MISSING
1951         assemblies. 
1952
1953         * loader.c (mono_loader_set_error_type_load): Change the
1954         convention to always pass unallocated strings, so we make our own
1955         copies (I know our own code had duplicated strings before, but
1956         this keeps the normal conventions).
1957         (method_from_memberref): Call mono_loader_set_error_method_load
1958         for all possible failures of loading the class. 
1959         Remove assert, turn into a loader error.
1960
1961         (mono_loader_error_to_exception): Move this routine from mini
1962         (mini_loader_error_to_exception) there was no need to have that in
1963         mini. 
1964
1965         * class.c (mono_class_from_typeref): If we were not able to load
1966         the assembly with mono_assembly_load_reference, call the
1967         mono_loader_set_error_type_load to register the problem.
1968
1969         (mono_class_setup_fields): If we fail to load the type from
1970         mono_metadata_parse_type_full, call mono_class_set_failure and
1971         break from the loop.
1972
1973         If class->exception_type is set, we do not layout the fields as
1974         that might crash the runtime, and instead return (from breaking
1975         from the previous loop).
1976
1977         (mono_class_setup_vtable): This now returns a boolean indicating
1978         whether the table was properly setup.   The decision is driven by
1979         mono_class_get_overrides_full which might run into non-existing
1980         methods. 
1981         
1982         (mono_class_init): Returns TRUE on success or FALSE if there was a
1983         problem in loading the type (incorrect assemblies, missing
1984         assemblies, methods, etc).
1985
1986         When we call mono_class_setup_fields we also check for a potential
1987         error inside this call (either a class exception or a general
1988         loader exception).
1989
1990         (mono_class_create_from_typedef): If the parent fails to load
1991         (calling mono_class_get_full) return NULL.
1992         
1993         ** Important **
1994
1995         calls to mono_metadata_parse_type_full should be checked
1996         everywhere and set the mono_class_set_failure
1997         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
1998
1999         The current patch checks the places where my manually constructed
2000         tests show the errors are showing up, but we should do it
2001         everywhere. 
2002
2003         ** Important2 **
2004
2005         mono_class_init return values should be tested everywhere, like
2006         the previous case this is something that we should audit
2007         everywhere and not only on the cases exposed by the tests I
2008         created. 
2009
2010 2006-04-26  Miguel de Icaza  <miguel@novell.com>
2011
2012         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
2013         boolean parameter and instead pass the information on `options'
2014         parameter (FileOptions).
2015
2016         * icall.c: Register the new signature for MonoIO.Open.
2017
2018         * debug-helpers.c (dis_one): Trying to understand how coverity
2019         works.  Fix Run 5, item 78.
2020
2021 2006-04-26  Dick Porter  <dick@ximian.com>
2022
2023         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
2024         dereference.
2025
2026 2006-04-25  Martin Baulig  <martin@ximian.com>
2027
2028         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
2029
2030         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
2031         debugger_thread_created().
2032         (debugger_gc_push_all_stacks): Don't handle the main thread in any
2033         special way.
2034         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
2035         (mono_debugger_finalize_threads): New function; undo the effects
2036         of mono_debugger_init_threads().
2037         (mono_debugger_create_all_threads): Removed.
2038
2039 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
2040
2041         * image.c (mono_image_close): Tidy up trace messages.
2042
2043         * assembly.c (mono_assembly_close): Ditto.
2044
2045         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
2046         no longer references an already freed assembly. Fixes #78168.
2047
2048 2006-04-21  Dick Porter  <dick@ximian.com>
2049
2050         * threads.c (mono_thread_detach): Fix reference counting when
2051         detaching threads.
2052
2053 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
2054
2055         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
2056         #78155.
2057
2058 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
2059
2060         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
2061         (mono_type_to_stind): Ditto.
2062
2063         * marshal.c: Use the new helper functions to simplify code.
2064
2065         * image.c (mono_image_close): Add some code for help debug assembly unloading
2066         problems.
2067
2068         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
2069         image mempool.
2070
2071         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
2072         assembly was already loaded in another appdomain. Fixes #78083.
2073
2074 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
2075
2076         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
2077         referenced assemblies.
2078         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
2079
2080         * domain.c (mono_domain_free): Add a trace message.
2081
2082         * appdomain.c (add_assemblies_to_domain): Ditto.        
2083
2084         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
2085         field.  
2086
2087 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
2088
2089         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
2090
2091 2006-04-12  Martin Baulig  <martin@ximian.com>
2092
2093         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
2094         `USE_INCLUDED_LIBGC'.   
2095
2096 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
2097
2098         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
2099         the patch contains ../ and a small directory name later. Hopefully fixes
2100         #78035.
2101
2102 2006-04-10  Martin Baulig  <martin@ximian.com>
2103
2104         Clean up the debugger's thread-handling code.
2105
2106         The debugger's thread-handling code has been moved from
2107         ../mini/debug-debugger.c to threads.c.  We now iterate directly
2108         over the `threads' hash, keep track of exiting threads and also
2109         use proper locking.
2110
2111         We can now debug XSP and XSP based applications with the debugger.
2112
2113         * object-internals.h (MonoThread): Added `gpointer end_stack'.
2114
2115         * threads.h
2116         (MonoThreadCallbacks): Removed; this was only used by the debugger.
2117         (mono_install_thread_callbacks): Likewise.      
2118
2119         * threads.c (mono_thread_callbacks): Removed.
2120         (debugger_thread_created, debugger_thread_exited): New static functions.
2121         (start_wrapper): Call debugger_thread_created().
2122         (thread_cleanup): Call debugger_thread_exited().
2123         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
2124         (mono_debugger_init_threads): New public function.
2125         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
2126         iterate directly over the `threads' hash and also use proper locking.
2127
2128         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
2129
2130         * mono-debug-debugger.h
2131         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
2132
2133 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
2134
2135         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
2136         argument type=array. Fixes #78057.
2137
2138 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
2139
2140         * culture-info-table.h : regenerated. Fixed bug #69652.
2141
2142 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
2143
2144         * loader.c metadata.c: Reapply a variant r59116.
2145         
2146         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
2147
2148         * class.c (mono_class_setup_interface_offsets): New internal function.
2149
2150         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
2151         interfaces too. Fixes #77398.
2152
2153         * reflection.c (encode_cattr_value): Add support for 
2154         parameter type=object, argument type=array.
2155         (load_cattr_value): Ditto. Fixes #77916.
2156
2157         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
2158         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
2159
2160         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
2161         a byval char array and CharSet is Ansi.
2162
2163         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
2164
2165 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
2166
2167         * metadata.c: Add some locking comments.
2168         
2169         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
2170         mempool.
2171         (mono_metadata_free_method_signature): Don't free the signature itself.
2172
2173         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
2174
2175         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
2176         reference the same MonoImage.
2177         (mono_assembly_load_from_full): Add an assert.
2178
2179 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
2180
2181         * image.c (mono_image_close): Don't put the image we are about to free into the
2182         loaded_images_guid_hash.
2183
2184         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
2185         to reduce code duplication.
2186
2187         * marshal.c: Register the native functions called by this module as icalls, to
2188         somewhat centralize the creation of MonoMethodSignature's.
2189
2190         * loader.c (mono_method_signature): Add a cache for method signatures.
2191
2192         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
2193         the parameter attributes of a method.
2194         (mono_metadata_parse_method_signature_full): Refactored the computation of
2195         parameter attributes into a separate function. Also avoid one allocation in
2196         most cases.
2197
2198         * assembly.c (mono_assembly_close): Ditto.
2199
2200         * image.c (mono_image_close): Log trace messages with INFO level.
2201
2202         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
2203
2204         * image.c reflection.c: Correct reference counting of image modules.
2205         
2206         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
2207         of this function from the image mempool.
2208         
2209         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
2210         to allow more cached types to be used.
2211
2212         * mono-debug.c (mono_debug_add_method): Appled patch from
2213         David S. Miller  <davem@sunset.davemloft.net>: Access 
2214         minfo->lexical_blocks[] entry elements using read32().
2215
2216 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
2217
2218         * loader.c (mono_free_method): No longer free the method header for non-dynamic
2219         methods as it is allocated from the mempool.
2220
2221         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
2222         image mempool.
2223
2224         * metadata-internals.h: Add comments describing the reference counting scheme
2225         used for MonoImage and MonoAssembly.
2226
2227         * image.c assembly.c reflection.c: Rework reference counting of images and 
2228         assemblies so they are freed when the runtime is shut down. Free some 
2229         additional memory structures when an image is unloaded.
2230         
2231 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
2232
2233         * class.c loader.c reflection.c: Allocate more data structures in
2234         the image mempool.
2235
2236 2006-03-31  Miguel de Icaza  <miguel@novell.com>
2237
2238         * icall.c
2239         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
2240         build on pre glib 2.4 systems.
2241
2242 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
2243
2244         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
2245
2246         * icall.c: Fix some warnings.
2247
2248 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
2249
2250         * culture-info-table.h : regenerated.
2251
2252 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
2253
2254         * threads.c, object-internals.h, verify.c: changed the culture caching
2255         code to use a normal MonoArray for storage so the GC can keep track of
2256         them easily. Fixed bits of the cache logic, too and simplified the
2257         code.
2258
2259 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
2260
2261         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
2262         thread for non-Boehm GCs.
2263
2264 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2265
2266         * domain.c, object.c, domain-internals.h: reduce the amount of memory
2267         needed to keep track of the data for static fields.
2268
2269 2006-03-29  Raja R Harinath  <rharinath@novell.com>
2270
2271         Fix #75172
2272         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
2273         for interface classes.  Use 'num_methods' instead.
2274         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
2275         before using '->vtable_size' field.
2276
2277 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
2278
2279         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
2280         doesn't contain managed pointers, so use a normal hashtable.
2281
2282 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
2283
2284         * reflection.c, class-internals.h, domain.c: fixed handling of types
2285         used as values for objects in custom attributes (bug #77915):
2286
2287 2006-03-24  Martin Baulig  <martin@ximian.com>
2288
2289         * class.c (mono_class_setup_fields): Added support for generic
2290         instances; fixes #77580.
2291
2292 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2293
2294         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
2295
2296 2006-03-24  Dick Porter  <dick@ximian.com>
2297
2298         * file-io.c (get_file_attributes): More stat macro breakage.
2299         Fixes bug 77759.
2300
2301 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
2302
2303         * profiler.c: added the file=filename option in the default profiler
2304         to output the profile data to filename.
2305
2306 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2307
2308         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
2309         bug #77877.
2310
2311 2006-03-22  Martin Baulig  <martin@ximian.com>
2312
2313         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
2314         allocated `MonoClassField *' in `fb->handle'.
2315
2316 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2317
2318         * class.c, image.c, metadata-internals.h: implemented new mechanism to
2319         allocate interface ID to save memory and allow better ID reuse on
2320         appdomain unload. setup_generic_vtable () removal from Martin.
2321
2322 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
2323
2324         * object.h, appdomain.c, domain.c, exception.c, icall.c,
2325         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
2326         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
2327         write barriers for reference stores with managed objects accessed with
2328         C structures in the runtime and in embedding programs.
2329
2330 2006-03-20  Raja R Harinath  <rharinath@novell.com>
2331
2332         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
2333         'interface_id' and 'max_interface_id' fields of MonoClasses
2334         representing open generic types.
2335
2336 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
2337
2338         * object.h, object.c, icall.c: added functions to deal with
2339         storing valuetypes that contain references in managed objects.
2340         * reflection.c, string-icalls.c, threads.c, marshal.c: small
2341         fixes and comments around uses of mono_array_addr ().
2342
2343 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
2344
2345         * object.h, icall.c, monitor.c: object.GetHashCode ()
2346         implementation that supports the moving garbage collector.
2347
2348 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
2349
2350         * icall.c, threads-types.h, threads.c: implemented finalizer for
2351         LocalDataStoreSlot.
2352
2353 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
2354
2355         * metadata.c (mono_type_size): Add a fixme.
2356         (mono_type_stack_size): Ditto.
2357
2358         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
2359         'type_forwarders' field.
2360
2361         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
2362         attribute from net 2.0.
2363
2364         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
2365         from class.c.
2366
2367         * class.c (mono_class_setup_fields): Fix a warning.
2368         
2369         * class.c (mono_class_from_name): Add support for assemblyref entries
2370         in the EXPORTEDTYPE table.
2371
2372         * reflection.c: Add support for handling type forwarders under net 2.0.
2373
2374         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
2375         
2376 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
2377
2378         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
2379         overwriting entries in ModuleBuild->types, also clean up the code
2380         a little. Fixes #77774.
2381
2382 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
2383
2384         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
2385         load friend assembly info when present.
2386
2387 2006-03-14  Raja R Harinath  <rharinath@novell.com>
2388
2389         Fix crasher on gtest-158.cs.
2390         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
2391         the return value if the MonoClass we want is yet in an
2392         inconsistent state.
2393         * class.c (mono_class_create_from_typedef): Add an comment
2394         explaining an order dependency between mono_class_setup_parent and
2395         mono_class_setup_mono_type.
2396
2397 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
2398
2399         * class.c: documentation updates and events bug fix.
2400
2401 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
2402
2403         * class.c: some cleanup, locking fixes.
2404
2405 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
2406
2407         * class.c: fix the generics code to setup nested
2408         type info to the instantiated type (bug #77770).
2409
2410 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2411
2412         * marshal.c: fixed a few type correctness issues.
2413
2414 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2415
2416         * loader.c: the Set/Get/Addrtess array methods should be public.
2417
2418 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
2419
2420         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
2421         
2422         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
2423         info->wrapper.
2424
2425 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
2426
2427         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
2428
2429         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
2430
2431         * mempool.c (mono_mempool_alloc): Speed this up a bit.
2432         (mono_mempool_alloc0): Ditto.
2433
2434 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2435
2436         * socket-io.c:
2437         (create_object_from_sockaddr): it was allocating 4 extra bytes
2438         for the AF_UNIX data. Fixes bug #77747.
2439
2440 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
2441
2442         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
2443
2444 2006-03-09  Dick Porter  <dick@ximian.com>
2445
2446         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
2447         Fixes bug 76966 again.
2448
2449 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
2450
2451         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
2452         names from r57532
2453         * appdomain.c: Bumped corlib version to 48 (due to r57532)
2454
2455 2006-03-07  Martin Baulig  <martin@ximian.com>
2456
2457         * object.c
2458         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
2459
2460 2006-03-07  Martin Baulig  <martin@ximian.com>
2461
2462         * class.c
2463         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
2464         regression introduced in r56970; see gtest-252.cs.
2465
2466         * loader.c (mono_get_method_constrained): Correctly handle generic
2467         methods; see gtest-253.cs.
2468
2469 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
2470
2471         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
2472
2473 2006-03-04  Martin Baulig  <martin@ximian.com>
2474
2475         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
2476         compute the parent type at runtime, just like we're already doing
2477         it for interfaces.
2478
2479         * reflection.c
2480         (mono_reflection_bind_generic_parameters): Don't compute the
2481         parent type anymore.
2482
2483         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
2484
2485 2006-03-04  Martin Baulig  <martin@ximian.com>
2486
2487         * mono-debug-debugger.h
2488         (mono_debugger_create_notification_function): Allocate memory at
2489         runtime and return a pointer to it.
2490
2491 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
2492
2493         * assembly.c: Fix windows build.
2494         
2495         * assembly.c: Fix build.
2496
2497         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
2498
2499         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
2500         
2501 2006-03-03  Dick Porter  <dick@ximian.com>
2502
2503         * process.c
2504         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
2505         Check parameters before dereferencing them.  Fixes Aaron's part of
2506         bug 77393.
2507
2508 2006-03-03  Raja R Harinath  <rharinath@novell.com>
2509
2510         Fix performance regression.
2511         * loader.c (find_method_in_class): Add 'from_class' argument.
2512         Rename 'klass' argument to 'in_class'.  The signature is compared
2513         against the method in 'in_class', and the corresponding method is
2514         returned from 'from_class'.
2515         (find_method): Walk both 'in_class' and 'from_class' in parallel.
2516         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
2517         type definition and generic instantiation in parallel.
2518         (mono_get_method_constrained): Update to changes.
2519
2520 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
2521
2522         * threads.c: make sure the domain is correct, too when doing
2523         mono_thread_attach ().
2524
2525 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
2526
2527         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
2528         windows. Fixes #77683.
2529
2530 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
2531
2532         * object.h, *: introduced specific way to set elements of an array
2533         of references to be used as write barrier. Still need to audit the
2534         uses of mono_array_addr.
2535
2536 2006-03-01  Miguel de Icaza  <miguel@novell.com>
2537
2538         * object-internals.h: New field to cache the assmebly name, patch
2539         from Tambet Ingo (tambet@ximian.com)
2540
2541 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
2542
2543         * decimal.h, class-internals.h, metadata-internals.h,
2544         file-io.h: mark a few function declarations as internal, to
2545         reduce the number of PLT entries.
2546
2547 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2548
2549         * file-io.c: fix typo in warning message.
2550
2551 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
2552
2553         * loader.c: on unix, lookup the "*A" version of a function
2554         if charset is auto as a second option before failing.
2555
2556 2006-02-28  Raja R Harinath  <rharinath@novell.com>
2557
2558         * class.h (mono_class_inflate_generic_method): Revert to two
2559         argument version.
2560         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
2561         (mono_class_inflate_generic_method_full): Add.
2562         * class.c (mono_class_inflate_generic_method_full): Rename from
2563         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
2564         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
2565         * loader.c, reflection.c: Update to changes.
2566
2567 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
2568
2569         * icall.c: const fixes and small improvements.
2570
2571 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2572
2573         * threadpool.c: for asynchronous connect(), enable the same workaround
2574         for BSD 6 as for the Mac. Fixes bug #77637.
2575
2576 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
2577
2578         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
2579         formatted classes. Fixes #77524.
2580
2581 2006-02-24  Raja R Harinath  <rharinath@novell.com>
2582
2583         * class.c (inflate_generic_type): Add a couple more
2584         micro-optimizations.
2585         (inflate_generic_context): Don't use the 'gmethod' from
2586         'inflate_with'.
2587         (mono_class_inflate_generic_method): If the method has generic
2588         parameters, but the passed-in context doesn't have a 'gmethod',
2589         create one.  Use the possibly simplified generic instantiation
2590         from the declaring class instead of the one passed in.
2591
2592 2006-02-24  Raja R Harinath  <harinath@gmail.com>
2593
2594         Make generic method signature and method header handling lazy.
2595         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
2596         (inflate_generic_header): Likewise.
2597         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
2598         parameter to avoid inflating types.
2599         (mono_get_inflated_method): Empty out.
2600         * class.h (mono_class_inflate_generic_method): Update to changes.
2601         * loader.c (mono_get_method_from_token): Don't parse signature for
2602         generic methods, nor methods of generic classes.
2603         (mono_method_signature): Rename from 'mono_method_signature'.
2604         Inflate signature on demand.
2605         (mono_method_get_header): Inflate method header on demand.
2606         * reflection.c: Update to changes.
2607
2608 2006-02-23  Raja R Harinath  <rharinath@novell.com>
2609
2610         * metadata.c (mono_metadata_inflate_generic_inst): If the
2611         instantiation is closed, don't bother expanding it in the new
2612         context.
2613         * class.c (inflate_generic_class): If the generic instantiation
2614         doesn't change after inflation, return the argument itself.
2615         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
2616         Add bounds checks.
2617         (inflate_generic_context): If neither the generic class nor the
2618         generic method instantiations change, return the original context.
2619         * reflection.c (mono_method_get_object): Do
2620         'mono_get_inflated_method' before accessing the ->klass field.
2621         (inflate_mono_method): Don't create a MonoGenericMethod unless
2622         necessary.
2623         (inflate_method): Don't pass a constructed type as the declaring
2624         type of a methodbuilder.
2625
2626 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
2627
2628         * object.c: fix memory overwrite.
2629
2630 2006-02-22  Dick Porter  <dick@ximian.com>
2631
2632         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
2633         it doesn't work any more.
2634         (mono_threads_request_thread_dump): Fix unused variable warnings.
2635
2636 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2637
2638         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
2639         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
2640         the public header file.
2641
2642 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
2643
2644         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
2645
2646 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
2647
2648         * class-internals.h, object.c: reduce the size of MonoVTable
2649         and store the interface_offsets array at negative offsets.
2650
2651 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
2652
2653         * metadata.c: tweak table descriptors data structures to reduce
2654         size and runtime relocations.
2655
2656 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2657
2658         * marshal.c: fix some types and opcodes to be type-safe
2659         in marshaling wrappers.
2660
2661 2006-02-21  Ankit Jain  <jankit@novell.com>
2662
2663         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
2664
2665 2006-02-21  Raja R Harinath  <rharinath@novell.com>
2666
2667         * metadata.c (get_constraints): Relax debugging checks for monodis.
2668
2669 2006-02-21  Ankit Jain  <jankit@novell.com>
2670
2671         * metadata.c (mono_metadata_load_generic_params): Move the code
2672         checking for ambiguous generic params from here to mono/dis/get.c
2673         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
2674
2675 2006-02-21  Raja R Harinath  <harinath@gmail.com>
2676
2677         Fix assertion triggered when compiling nemerle.
2678         * class.c (mono_get_shared_generic_inst): Rename from
2679         get_shared_inst and make non-static.
2680         * loader.c (mono_get_shared_generic_method): New.  Used to create
2681         the MonoGenericContext-equivalent of a MonoGenericContainer.
2682         (mono_get_method_from_token): Initialize the 'context' field of
2683         the created MonoGenericContainer.
2684         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
2685         * metadata.c (get_constraints): Add sanity check.
2686         * class-internals.h: Add new internal methods.
2687
2688         * reflection.c (verify_safe_for_managed_space): New sanity check.
2689         Currently checks that owner-less generic parameters aren't allowed
2690         in managed space.
2691         (mono_type_get_object): Use it.
2692         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
2693         that are now in mono_type_get_object.
2694         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
2695
2696 2006-02-19  Raja R Harinath  <harinath@gmail.com>
2697
2698         * metadata.c (mono_type_create_from_typespec): Rename from
2699         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
2700         argument and caching of types in the generic container.
2701         (unwrap_arrays, find_generic_param): Remove.
2702         * metadata-internals.h: Update.
2703         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
2704
2705 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
2706
2707         * class.c (mono_class_get_exception_for_failure): Fix a warning.
2708
2709         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
2710         return values. Fixes #77581.
2711
2712         * class.c (mono_fnptr_class_get): Switch name and name_space.
2713
2714         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
2715         classes and add support for [In, Out] attributes.
2716         (mono_marshal_free_asany): Ditto. Fixes #77524.
2717
2718 2006-02-18  Raja R Harinath  <harinath@gmail.com>
2719
2720         * class.c (mono_class_from_generic_parameter): Make more robust to
2721         incomplete MonoGenericContainers from monodis.
2722
2723 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2724
2725         * class-internals.h: added some more exception types.
2726         * class.c, metadata.c: added a few checks to handle missing
2727         types.
2728
2729 2006-02-17  Raja R Harinath  <rharinath@novell.com>
2730
2731         Use owner-less generic-params some more.
2732         * class.c (my_mono_class_from_generic_parameter): Remove.
2733         (mono_class_from_generic_parameter): Handle null image,
2734         param->name and param->owner.
2735         (mono_class_from_mono_type): Update.
2736         (mono_class_create_from_typespec): Remove 'container' parameter.
2737         If that parameter is non-null, the result is always inflated by
2738         'mono_class_get_full' anyway.
2739         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
2740         parameter.
2741         (mono_class_get_full): Update.
2742
2743         * class.c (inflate_generic_type) [GENERICINST]: If the generic
2744         instance is not open, don't bother inflating.
2745         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
2746         parse metadata for inflated classes.
2747         (_mono_class_get): Change GenericContext* parameter to
2748         GenericContainer*.
2749         (mono_class_create_from_typespec): Likewise.  Simplify, and
2750         implement trivially.  All the cases are handled in
2751         mono_class_from_mono_type.  Don't inflate returned class.
2752         (mono_class_get_full): Delegate GENERICINST optimization to
2753         inflate_generic_type.
2754         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
2755
2756 2006-02-16  Dick Porter  <dick@ximian.com>
2757
2758         * socket-io.c (create_object_from_sockaddr): Fix typo.
2759         (create_sockaddr_from_object): Check array lengths before
2760         potentially accessing items off the end.
2761         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
2762         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
2763         (ves_icall_System_Net_Sockets_Socket_Send_internal)
2764         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
2765         length checks to avoid wraparound overflows.
2766         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
2767         contents of the array of sockets
2768         (hostent_to_IPHostEntry2)
2769         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
2770         Check return value of inet_ntop ().
2771         (addrinfo_to_IPHostEntry): Fix typo
2772
2773 2006-02-16  Raja R Harinath  <rharinath@novell.com>
2774
2775         Type metadata parsing doesn't use generic-instantiation information.
2776         * metadata.c (mono_metadata_parse_array_full): Change
2777         MonoGenericContext* parameter to MonoGenericContainer*.
2778         (mono_metadata_parse_type_full): Likewise.
2779         (mono_type_create_from_typespec_full): Likewise.
2780         (mono_metadata_parse_mh_full): Likewise.
2781         (mono_metadata_parse_generic_inst): Likewise.
2782         (do_mono_metadata_parse_generic_class): Likewise.
2783         (do_mono_metadata_parse_type): Likewise.
2784         * metadata-internals.h: Update to changes.
2785         * class.c (mono_class_find_enum_basetype): Likewise.
2786         (mono_class_setup_fields): Likewise.
2787         (mono_class_create_from_typespec): Likewise.
2788         * loader.c (method_from_methodspec): Likewise.
2789         (mono_get_method_from_token): Likewise.
2790         (mono_method_get_header): Likewise.
2791
2792 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2793
2794         * marshal.c: handle additional GENERICINST case (patch from
2795         Thong Nguyen <tum@veridicus.com>).
2796         Fix a few cases where LDIND_I/STIND_I was used for references.
2797
2798 2006-02-16  Raja R Harinath  <rharinath@novell.com>
2799
2800         * reflection.c (mono_reflection_get_token): Remove unused variable.
2801
2802 2006-02-16  Martin Baulig  <martin@ximian.com>
2803
2804         * reflection.c (mono_reflection_get_token): Add support for fields
2805         in instantiated generic types.
2806
2807         * icall.c
2808         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
2809
2810 2006-02-15  Martin Baulig  <martin@ximian.com>
2811
2812         * icall.c
2813         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
2814         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
2815         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
2816         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
2817
2818 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
2819
2820         * class.c, metadata.c, metadata.h, object.c, icall.c,
2821         marshal.c: changed mono_type_get_underlying_type () to do
2822         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
2823         Fixed handling of instantiated generic valuetypes (bug #75479).
2824
2825 2006-02-15  Raja R Harinath  <rharinath@novell.com>
2826
2827         * metadata.c (mono_metadata_decode_signed_value): Simplify.
2828         Delegate to mono_metadata_decode_value, and work on the returned value.
2829
2830         * icall.c (ves_icall_MonoType_GetGenericArguments):
2831         Add consistency check here too.
2832         
2833 2006-02-15  Ankit Jain  <jankit@novell.com>
2834
2835         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
2836         char/short etc.
2837
2838 2006-02-15  Ankit Jain  <jankit@novell.com>
2839
2840         * metadata.c (mono_metadata_decode_signed_value): New function to decode
2841         signed values, used only for representing lower bounds of arrays.
2842         (mono_metadata_parse_array_full): Use new
2843         mono_metadata_decode_signed_value to decode lower bounds.
2844
2845 2006-02-14  Martin Baulig  <martin@ximian.com>
2846
2847         * reflection.c
2848         (mono_reflection_get_token): Support "MonoGenericMethod" and
2849         "MonoGenericCMethod" and allow generic instances / methods.
2850
2851 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
2852
2853         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
2854         to obtain the terminal size using an ioctl.
2855
2856         * object.c (mono_nullable_init): Revert this as nullable reference
2857         types are not valid.
2858         (mono_nullable_box): Ditto.
2859
2860 2006-02-09  Dick Porter  <dick@ximian.com>
2861
2862         * threads.c (mono_thread_detach): Drop a reference to the thread
2863         we're detaching.
2864
2865 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
2866
2867         * object.c (mono_nullable_init): Handle nullable reference types.
2868         (mono_nullable_box): Ditto. Fixes #77446.
2869
2870 2006-02-07  Martin Baulig  <martin@ximian.com>
2871
2872         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
2873
2874 2006-02-07  Ankit Jain  <jankit@novell.com>
2875
2876         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
2877         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
2878         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
2879         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
2880         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
2881         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
2882
2883 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
2884
2885         * class.c (mono_class_create_generic): Set type_token as well.
2886
2887         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
2888         compatible with MS.
2889
2890 2006-02-02  Martin Baulig  <martin@ximian.com>
2891
2892         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
2893         has never been used so far.
2894
2895 2006-02-02  Martin Baulig  <martin@ximian.com>
2896
2897         * mono-debug-debugger.h: Changed comment at the top of this file;
2898         the header is not installed, but it's safe to #include it from
2899         within the JIT.
2900
2901         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
2902         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
2903
2904 2006-02-02  Martin Baulig  <martin@ximian.com>
2905
2906         * mono-debug.h
2907         (MonoSymbolTable): Removed the `metadata_info' field.
2908
2909         * mono-debug.c
2910         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
2911
2912         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
2913         (mono_debugger_add_builtin_types): Removed.
2914         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
2915         (mono_debugger_create_notification_function): We now operate on a
2916         pre-allocated area; take a `gpointer' and return `void'.
2917
2918         * mono-debug-debugger.c
2919         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
2920         (mono_debugger_add_builtin_types): Removed.
2921
2922 2006-02-02  Martin Baulig  <martin@ximian.com>
2923
2924         * threads.c (mono_debugger_create_all_threads): New public method.
2925
2926 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2927
2928         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
2929         breaks on several platforms.
2930
2931 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
2932
2933         * assembly.c: the VS.NET build doesn't supply default values for
2934         MONO_ASSEMBLIES and MONO_CFG_DIR.
2935
2936 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
2937
2938         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
2939         helper function.
2940
2941         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
2942
2943         * loader.c (method_from_memberref): Fix a warning.
2944
2945         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
2946
2947         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
2948         with explicit layout. Fixes #77433.
2949
2950 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
2951
2952         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
2953         max_interface_id is initialized before using it. Fixes #77398.
2954         (ves_icall_Type_GetInterfaces): Ditto.
2955
2956 2006-01-30  Raja R Harinath  <rharinath@novell.com>
2957
2958         * metadata.c (mono_metadata_parse_method_signature_full): Don't
2959         allocate memory for parameter attributes when parsing memberref
2960         signatures.
2961         * loader.c (mono_loader_set_error_method_load): Don't warn.
2962         (method_from_memberref): Ensure MissingMethodException gets thrown
2963         if method is not found.  Make warning more informative.
2964
2965 2006-01-29  Raja R Harinath  <harinath@gmail.com>
2966
2967         Fix #77397
2968         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
2969         return true if is byref.
2970         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
2971         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
2972         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
2973
2974 2006-01-27  Raja R Harinath  <rharinath@novell.com>
2975
2976         Fix tests/find-method.2.il
2977         * loader.c (find_method, find_method_in_class): Remove is_inflated
2978         argument.  Revert 2006-01-18 change.
2979         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
2980         is generic, search for method in its generic definition.
2981         * class.c (mono_class_setup_vtable_general): Print generic
2982         arguments of generic types in debugging printf.
2983
2984 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
2985
2986         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
2987
2988         * threads.c (mono_threads_request_thread_dump): New helper function.
2989
2990 2006-01-25  Raja R Harinath  <rharinath@novell.com>
2991
2992         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
2993
2994 2006-01-25  Ankit Jain  <jankit@novell.com>
2995
2996         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
2997         move definition to ..
2998         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
2999         
3000 2006-01-25  Ankit Jain  <jankit@novell.com>
3001             Raja R Harinath  <rharinath@novell.com>
3002
3003         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
3004         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
3005         as necessary.
3006
3007 2006-01-25  Martin Baulig  <martin@ximian.com>
3008
3009         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
3010         `MonoDebuggerThread' into debug-debugger.c.
3011
3012 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
3013
3014         * profiler.c: fix printing of data.
3015
3016 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
3017
3018         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
3019           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
3020
3021 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
3022
3023         * object.c: fix deadlock related to string interning.
3024
3025 2006-01-23  Martin Baulig  <martin@ximian.com>
3026
3027         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3028
3029         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
3030
3031 2006-01-23  Martin Baulig  <martin@ximian.com>
3032
3033         * mono-debug.h: Moved the prototypes of some functions which are
3034         used by the JIT here from mono-debug-debugger.h.
3035
3036 2006-01-21  Martin Baulig  <martin@ximian.com>
3037
3038         * Makefile.am: Don't install mono-debug-debugger.h.
3039
3040 2006-01-21  Martin Baulig  <martin@ximian.com>
3041
3042         * mono-debug-debugger.h: Enforce the private status of this header
3043         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
3044         Moved some stuff from mono-debugger-jit-wrapper.h here.
3045
3046 2006-01-20  Raja R Harinath  <rharinath@novell.com>
3047
3048         * class.c (mono_class_from_typeref): Add a sanity test to help
3049         catch lack of assembly load/search hooks.
3050
3051 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
3052
3053         * marshal.c (emit_struct_conv): Relax the fields with same offset
3054         check even more. Fixes #77230.
3055
3056 2006-01-18  Martin Baulig  <martin@ximian.com>
3057
3058         * loader.c (find_method_in_class): Added `gboolean is_inflated'
3059         argument; if false, we compare the uninstantiated signatures.
3060         (method_from_memberref): Compare the uninstantiated signatures;
3061         fixes #76417.
3062
3063 2006-01-18  Robert Jordan  <robertj@gmx.net>
3064
3065         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
3066         Clear the weak link. Fixes bug #77170.
3067
3068         * gc.c (mono_gchandle_free):
3069         Reflect *-gc.c changes (tiny optimization).
3070
3071 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
3072
3073         * metadata.c (mono_metadata_signature_dup): Applied patch from
3074         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
3075         Fixes #77288.
3076
3077 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
3078
3079         * marshal.c (emit_struct_conv): Allow fields with the same offset when
3080         marshalling from native to managed code. Fixes #77230.
3081
3082 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3083
3084         * threadpool.c: fix problem (Mac only) when more than one asynchronous
3085         connect. Fixes bug #77020.
3086
3087 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
3088
3089         * class.c: fixed id assignement for nested interfaces (bug #77275).
3090         Added also better info for --print-vtable debugging.
3091
3092 2006-01-12  Martin Baulig  <martin@ximian.com>
3093
3094         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
3095         interfaces on-the-fly; fixes #76625.
3096
3097         * class-internals.h
3098         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
3099         don't need that anymore.
3100
3101 2006-01-12  Miguel de Icaza  <miguel@novell.com>
3102
3103         * socket-io.c
3104         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
3105         To avoid initing the nested_classes when not needed I turned the
3106         PeerCredData as a toplevel internal class, as it has to be shared
3107         anyways. 
3108
3109         Fixes the CASA issue.
3110
3111 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
3112
3113         * domain.c: Accessors for MonoJitInfo
3114
3115         * profiler-private.h: Add jitinfo to the end jit hook
3116
3117         * profiler.[ch]: Define new hooks, called after jitting which give
3118         the MonoJitInfo that was compiled
3119
3120 2006-01-10  Martin Baulig  <martin@ximian.com>
3121
3122         * class.c (mono_class_setup_events): Add support for generic
3123         classes; fixes #76440.
3124
3125 2006-01-06  Raja R Harinath  <rharinath@novell.com>
3126
3127         Fix #77160.
3128         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
3129         on passed-in method.
3130
3131 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
3132
3133         * object.c (mono_runtime_invoke_array): Add Nullable support.
3134
3135         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
3136
3137 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
3138
3139         * file-io.c: Don't consider sockets as directory and avoid an endless
3140         loop. Fix bug #76966.
3141
3142 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
3143
3144         * object.c (mono_nullable_init): New helper function.
3145         (mono_nullable_box): Ditto.
3146
3147         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
3148
3149         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
3150
3151         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
3152         
3153 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
3154
3155         * class.c (mono_class_is_assignable_from): Make T assignable to 
3156         Nullable<T>.
3157
3158 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
3159
3160         * appdomain.c: Bump corlib version to 46.
3161         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
3162         serialization purpose) and changed ves_icall_System_Reflection_
3163         Assembly_get_code_base signature to accept a boolean (to escape, or 
3164         not, the assembly code base).
3165
3166 2005-12-23  Dick Porter  <dick@ximian.com>
3167
3168         * icall.c: 
3169         * threads-types.h: 
3170         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
3171         CreateEvent icall now returns "created" boolean parameter.
3172
3173 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
3174
3175         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
3176         #76967.
3177
3178         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
3179         when attr_klass is an interface. Fixes #77045.
3180
3181 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
3182
3183         * marshal.c (emit_struct_conv): Fix previous patch.
3184         
3185         * marshal.c (emit_struct_conv): Add a check for fields with the same
3186         offset.
3187
3188 2005-12-20  Raja R Harinath  <rharinath@novell.com>
3189
3190         Fix regression in Mono.C5.
3191         * class.c (mono_class_create_generic): If 'klass' is an interface
3192         set up the interface offsets.
3193         (mono_class_is_assignable_from): Don't throw away generic arguments.
3194
3195 2005-12-19  Raja R Harinath  <rharinath@novell.com>
3196
3197         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
3198         type parameters.
3199
3200 2005-12-15  Raja R Harinath  <rharinath@novell.com>
3201
3202         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
3203         dead store.
3204         (do_mono_metadata_parse_generic_class): Don't pass the current
3205         generic context when parsing the type being instantiated: it
3206         cannot use it, anyway.
3207
3208         * loader.c (method_from_memberref): Don't inflate a signature if
3209         it doesn't contain any type parameters.
3210
3211 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
3212
3213         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
3214
3215 2005-12-14  Martin Baulig  <martin@ximian.com>
3216
3217         * class.c
3218         (mono_type_get_name_recurse): Don't return null for type
3219         parameters and open generic classes.
3220         (mono_class_setup_methods): Don't exclude generic instances.
3221         (mono_get_unique_iid): Use different IDs for different
3222         instantiations of the same generic type.
3223         (mono_class_setup_vtable): Only use setup_generic_vtable() for
3224         open generic instances; create a normal vtable for closed generic
3225         instances.
3226         (mono_class_setup_vtable_general): We're now also called for
3227         closed generic instances.
3228
3229         * reflection.c
3230         (mono_reflection_bind_generic_parameters): Correctly use
3231         mono_metadata_lookup_generic_inst() everywhere.
3232
3233 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
3234
3235         * object.c (mono_class_create_runtime_vtable): Call 
3236         mono_class_setup_vtable ().
3237
3238         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
3239         function.
3240         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
3241         #76959.
3242
3243         * loader.c (mono_loader_set_error_type_load): Print the type load
3244         warnings to the console so they are more visible to the user.
3245         (mono_loader_set_error_method_load): Ditto.
3246
3247         * reflection.c (ensure_runtime_vtable): Revert the last change as it
3248         is still broken.
3249         
3250         * reflection.c (ensure_runtime_vtable): Fix build.
3251
3252         * reflection.c (ensure_runtime_vtable): Disable an optimization which
3253         doesn't work in all cases.
3254
3255 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
3256
3257         * object.c (mono_array_new_full): Treat a single dimensional array
3258         with 0 lower bounds as an szarray. Fixes #76973.
3259
3260         * reflection.c (custom_attr_visible): Really fix this.
3261
3262 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
3263
3264         * reflection.c (custom_attr_visible): Allow nested public attributes
3265         as well.
3266
3267         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
3268         interface check.
3269
3270 2005-12-12  Raja R Harinath  <harinath@gmail.com>
3271
3272         * class.c (set_generic_param_owner): Delete.
3273         (mono_class_create_from_typedef): Don't set ->owner field of
3274         generic parameters to "param containers" of enclosing classes.
3275         * reflection.c (mono_reflection_initialize_generic_parameter):
3276         Likewise.
3277
3278 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
3279
3280         * reflection.c (custom_attr_visible): Fix build.
3281
3282 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
3283
3284         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
3285         private attributes.
3286         
3287         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
3288         handling of null parameter defaults.
3289
3290 2005-12-09  Raja R Harinath  <rharinath@novell.com>
3291
3292         * class.c (mono_class_from_generic_parameter): Don't set
3293         klass->generic_container.
3294         (my_mono_class_from_generic_parameter): Likewise.
3295
3296 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
3297
3298         * reflection.c (load_public_key): Fix a warning.
3299         (method_encode_code): Fix unaligned accesses.
3300
3301 2005-12-07  Martin Baulig  <martin@ximian.com>
3302
3303         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
3304
3305         * reflection.c
3306         (write_generic_param_entry): Encode our custom attrs.
3307
3308         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
3309
3310 2005-12-07  Martin Baulig  <martin@ximian.com>
3311
3312         * reflection.c (encode_new_constraint): Removed; we don't use the
3313         `NewConstraintAttribute' anymore.
3314
3315 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
3316
3317         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
3318         not fire a TypeResolve event when Assembly.GetType () is called.
3319
3320 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
3321
3322         Beginning of support for nullable types in the runtime. Parts of
3323         this patch are from Martin.
3324
3325         * appdomain.c (MONO_CORLIB_VERSION): Bump
3326
3327         * domain.c (mono_init_internal): get the nullable type
3328
3329         * class.c (mono_class_is_nullable): New method
3330         (mono_class_get_nullable_param): New mehod
3331         (mono_class_create_generic): In types T? set cast_class to T
3332
3333         * class-internals.h (MonoDefaults): new nullable default class
3334         (mono_class_get_nullable_param, mono_class_get_nullable_param):
3335         new methods.
3336
3337 2005-12-05  Raja R Harinath  <rharinath@novell.com>
3338
3339         * metadata.c (select_container): New.  Refactor code to select the
3340         appropriate GenericContainer given the type of generic parameter
3341         we are looking for.
3342         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
3343         not a MonoGenericContext.  Use select_container.  Update parameters.
3344         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
3345         and MONO_TYPE_MVAR.
3346         (unwrap_arrays): Remove duplicate tests.
3347         (find_generic_param): Rename from 'has_same_context'.  Now walks a
3348         generic instantiated class to find any arguments that are generic
3349         parameters.
3350         (mono_type_create_from_typespec_full): Use find_generic_param to
3351         avoid evicting some generic instantiations from the typespec
3352         cache.
3353
3354 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
3355
3356         * reflection.c: fixed writing of doubles on ARM FPA.
3357
3358 2005-12-02  Robert Jordan  <robertj@gmx.net>
3359
3360         * icall.c: Fixed EventInfo.ReflectedType (#76829).
3361
3362 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3363
3364         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
3365         least on SUSE 10 they are not the same (on debian, they are just the
3366         same thing).
3367
3368 2005-12-01  Raja R Harinath  <rharinath@novell.com>
3369
3370         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
3371         DeclaringType for VARs and MVARs.
3372         * class.c (set_generic_param_owner): Fix initialization of owner
3373         fields.
3374
3375 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
3376
3377         * icall.c: fixed Enum.ToObject() to correctly convert the values.
3378
3379 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3380
3381         * threadpool.c: workaround for a bug that shows up on the Mac:
3382         select()+connect() on a blocking socket is not like it should
3383         be, so we proceed to connect() in that case, wasting the I/O
3384         threadpool thread until connect succeedes. Fixes bug #75436.
3385
3386 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3387
3388         * threadpool.c: fix typo when setting file descriptor states.
3389
3390 2005-11-28  Raja R Harinath  <rharinath@novell.com>
3391
3392         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
3393         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3394         create a temporary signature container.
3395         (mono_metadata_parse_generic_param): Update to changes.
3396         (mono_type_create_from_typespec_full): Update to changes.
3397         * loader.c (method_from_memberref): Don't use a
3398         MonoGenericContainer while parsing a memberref signature.
3399         (method_from_methodspec): Remove dead-store of the 'container'
3400         variable.  It's overwritten before use.
3401
3402         * metadata.c (mono_type_create_from_typespec_full): Make debugging
3403         checks tighter.
3404         (mono_metadata_parse_generic_param): Likewise.
3405         * loader.c (find_method_in_class): Does not need a
3406         MonoGenericContainer.  Use 'mono_method_signature' rather than
3407         'mono_method_signature_full'.
3408         (find_method, mono_get_method_constrained, method_from_memberref):
3409         Update to changes.
3410
3411         * metadata.c (mono_type_create_from_typespec_full): Ensure that
3412         owner-less generic-parameters are never evicted from the typespec
3413         cache.
3414
3415         * loader.c (method_from_memberref): Don't use the current context
3416         when parsing signatures.
3417         (method_from_methodspec, mono_get_method_from_token): Update to changes.
3418
3419         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
3420         side-effects in g_assert.
3421         * loader.c (mono_get_method_from_token): Resolve klass earlier so
3422         that we don't potentially lose information.
3423
3424 2005-11-26  Dick Porter  <dick@ximian.com>
3425
3426         * icall.c:
3427         * threads.c: icalls to implement basic (ie, not named)
3428         System.Threading.Semaphore.
3429
3430 2005-11-24  Dick Porter  <dick@ximian.com>
3431
3432         * process.c
3433         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
3434         Use GetProcessId() if it's available.
3435
3436 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
3437
3438         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
3439
3440 2005-11-23  Raja R Harinath  <rharinath@novell.com>
3441             Ankit Jain  <jankit@novell.com>
3442
3443         * loader.c (mono_get_method_from_token): Initialize 'method' field
3444         of all generic parameters before parsing the signature.  Remove
3445         code that "fixed"-up MVAR references.
3446
3447 2005-11-23  Ankit Jain  <jankit@novell.com>
3448
3449         * metadata.c (mono_metadata_has_generic_params):
3450         (mono_metadata_load_generic_param_constraints):
3451         (mono_metadata_load_generic_params): Move duplicate code ...
3452         (mono_metadata_get_generic_param_row): ... here. Returns the
3453         first row-id in GenericParam table for a given owner (token).
3454         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
3455         prototype.
3456
3457 2005-11-23  Raja R Harinath  <rharinath@novell.com>
3458             Ankit Jain  <jankit@novell.com>
3459
3460         * metadata.c (mono_metadata_class_equal): Pass signature_only when
3461         comparing VARs too.
3462         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
3463         type->data.generic_param only if the type is an MVAR.
3464         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
3465         leak owner-less VARs and MVARs into managed space.
3466
3467 2005-11-21  Martin Baulig  <martin@ximian.com>
3468
3469         * class-internals.h
3470         (MonoMethod): Moved the `generic_container' here from
3471         `MonoMethodNormal' since we now also need it for
3472         `MonoMethodPInvoke';
3473         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
3474         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
3475         an union containing both `MonoMethodNormal' and
3476         `MonoMethodPInvoke'.
3477
3478         * loader.c
3479         (mono_get_method_from_token): Allow implementing generic methods
3480         as interncalls.
3481
3482         * threads.c
3483         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
3484         icall.
3485
3486 2005-11-17  Dick Porter  <dick@ximian.com>
3487
3488         * icall.c: 
3489         * process.h: 
3490         * process.c: Split the Process Start_internal icall into
3491         ShellExecuteEx_internal and CreateProcess_internal, which are
3492         called depending on whether UseShellExecute is true.  Fixes bug
3493         76670.
3494
3495         * appdomain.c (MONO_CORLIB_VERSION): Incremented
3496
3497 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
3498
3499         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
3500         'msize' parameters, use the information in 'mspec' instead.
3501         (emit_object_to_ptr_conv): Ditto.
3502
3503         * marshal.c (emit_struct_conv): Handle explicit layout structs with
3504         fields out of order. Fixes #76733.
3505
3506 2005-11-17  Ankit Jain  <jankit@novell.com>
3507
3508         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
3509
3510 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
3511
3512         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
3513           bug #76575.
3514
3515 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
3516
3517         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
3518         for types with non-auto layout. Fixes #76717.
3519
3520 2005-11-16  Ankit Jain  <jankit@novell.com>
3521
3522         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
3523         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
3524         if generic_context is null.
3525           (mono_metadata_generic_param_equal): param->owner can be null.
3526           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
3527         null.
3528
3529 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
3530
3531         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
3532         the correct value.
3533
3534 2005-11-15  Martin Baulig  <martin@ximian.com>
3535
3536         * object.c (set_value): Use mono_class_from_mono_type() instead of
3537         the hack for generic instances; fixes #76136.
3538
3539 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
3540
3541         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
3542         fields.
3543
3544         * image.c (load_metadata_ptrs): Initialize the new fields.
3545
3546         * reflection.c (create_dynamic_mono_image): Ditto.
3547
3548         * reflection.c (build_compressed_metadata): Use the new fields.
3549
3550         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
3551         icall.
3552
3553         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
3554         icall.
3555         
3556 2005-11-15  Ankit Jain  <jankit@novell.com>
3557             Raja R Harinath  <harinath@gmail.com>
3558
3559         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
3560         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
3561         new per-generic_container cache if the cached MonoType's context matches
3562         the current context.
3563           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
3564         to the expected context.
3565           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
3566
3567 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3568
3569         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
3570         we changed the signature of an icall.
3571         * icall.c: Modify to mono_double_ParseImpl return true/false 
3572         depending on the success, instead of throwing the exception. This will
3573         help us in Double.TryParse methods.
3574         
3575 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
3576
3577         * marshal.c (emit_marshal_object): Throw an exception when
3578         marshalling 'object' instead of crashing. Fixes #76696.
3579
3580 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
3581
3582         * class-internals.h: Add prototype for mono_type_get_full_name ().
3583
3584 2005-11-11  Dick Porter  <dick@ximian.com>
3585
3586         * threads.c (mono_thread_manage): Make sure the main thread has
3587         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
3588
3589 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
3590
3591         * loader.c (mono_loader_set_error_type_load): Log a warning to the
3592         console about the missing type.
3593         (mono_loader_set_error_method_load): Ditto.
3594
3595 2005-11-09  Miguel de Icaza  <miguel@novell.com>
3596
3597         * mono-config.c (mono_get_config_dir): Set the system defaults if
3598         none is specified.
3599
3600         * assembly.c (mono_set_dirs): New API entry point to set the
3601         assembly and the config directory in one call
3602
3603 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
3604
3605         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
3606         the ftnptr was created from a delegate in a domain other than the
3607         current domain. Fixes #75377.
3608
3609         * exception.h exception.c: Add mono_get_exception_not_supported ().
3610
3611 2005-11-08  Martin Baulig  <martin@ximian.com>
3612
3613         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
3614
3615 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
3616
3617         * security-manager.h: Added definitions to deal with strongname key 
3618         pairs bigger (and smaller) than 1024 bits.
3619         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
3620         adjust wrt the public key length being used.
3621
3622 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
3623
3624         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
3625           Windows build (r51396-51397).
3626
3627 2005-11-03  Martin Baulig  <martin@ximian.com>
3628
3629         * class.c (mono_class_setup_vtable_general): Also add generic
3630         methods to the vtable; fixes #76581.
3631
3632 2005-11-01  Miguel de Icaza  <miguel@novell.com>
3633
3634         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
3635         sure that we lookup GetString method from the System.Text.Encoding
3636         class, not the derived class or we get an empty method.
3637
3638         Fixed class #76612.
3639
3640 2005-10-25  Miguel de Icaza  <miguel@novell.com>
3641
3642         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
3643         if it has been previously set (embedders). 
3644
3645         Make mono_set_rootdir available also on Unix.
3646
3647 005-10-24  Robert Jordan  <robertj@gmx.net>
3648
3649         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
3650
3651 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
3652
3653         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
3654         only calls which are made to native code use this flag.
3655
3656         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
3657
3658 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
3659
3660         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
3661         Add support for FieldBuilders.
3662
3663 2005-10-29  Martin Baulig  <martin@ximian.com>
3664
3665         * mono-debug.c
3666         (mono_debug_using_mono_debugger): New public method; returns
3667         whether we're running inside the debugger.
3668
3669 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
3670
3671         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
3672         for Method/Constructor/FieldBuilders.
3673
3674 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
3675
3676         * reflection.c (module_add_cattrs): Save custom attributes for global methods
3677         and fields as well.
3678
3679 2005-10-26  Martin Baulig  <martin@ximian.com>
3680
3681         * mono-debug-debugger.c
3682         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
3683
3684 2005-10-24  Raja R Harinath  <harinath@gmail.com>
3685
3686         * icall.c (base64_to_byte_array): Don't pass an out-of-range
3687         integer to isspace.
3688
3689 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
3690
3691         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
3692         when passing valuetypes byref. Fixes #76502.
3693
3694 2005-10-19  Jackson Harper  <jackson@ximian.com>
3695
3696         * profiler.c: Don't put a . in front of types that are not in a
3697         namespace.
3698
3699 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
3700
3701         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
3702
3703 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
3704
3705         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
3706         #76436.
3707         (mono_marshal_get_ldflda_wrapper): Fix a warning.
3708
3709 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3710
3711         * assembly.c metadata-internals.h icall.c: Define an additional
3712         parameter for mono_assembly_name_parse_full, so we can avoid creating
3713         S.R.AssemblyName.Version when no version info wasn't passed.
3714         
3715 2005-10-09  Miguel de Icaza  <miguel@novell.com>
3716
3717         * class.c (mono_type_get_full_name): Reimplement method that was
3718         removed. 
3719
3720         * image.c: Some docs
3721
3722 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
3723
3724         * profiler.c (output_newobj_profile): Fix printing of Total memory
3725         on x86.
3726
3727 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
3728
3729         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
3730
3731 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
3732
3733         * threads.c: remove debug output.
3734
3735 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
3736
3737         * threads.c (mono_thread_manage): Fix crashes if more than 64
3738         threads need to be aborted. Hopefully fixes #75899.
3739
3740         * assembly.c (mono_stringify_assembly_name): New helper function.
3741
3742         * class.c: Use mono_stringify_assembly_name instead of the similar
3743         static function.
3744
3745         * assembly.h assembly.c: Add support for calling a postload search 
3746         hook if an assembly cannot be loaded.
3747
3748         * appdomain.c: Register new search hooks which call the AssemblyResolve
3749         events in AppDomain. Fixes #75231
3750
3751 2005-10-07  Martin Baulig  <martin@ximian.com>
3752
3753         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
3754         methods without debug info.
3755
3756 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
3757
3758         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
3759         wrappers.
3760
3761 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3762
3763         * file-io.c: now that we return symlinks, use lstat and, when the file
3764         is a symbolic link, stat, to get the file attributes. Also avoid the
3765         conversion to/from utf16/external.
3766
3767 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
3768
3769         * class.c (mono_class_layout_fields): Compute klass->has_references
3770         correctly if an embedded valuetype is not yet initialized. Fixes
3771         #76331.
3772
3773 2005-10-04  Martin Baulig  <martin@ximian.com>
3774
3775         * metadata.c
3776         (mono_metadata_load_generic_param_constraints): New public
3777         function; splitted the constraints loading out from
3778         mono_metadata_load_generic_params().
3779
3780         * class.c (mono_class_create_from_typedef): Call
3781         mono_metadata_load_generic_param_constraints() after setting up
3782         the type and creating our parent; fixes #75329.
3783
3784 2005-10-04  Martin Baulig  <martin@ximian.com>
3785
3786         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
3787         non-dynamic parent classes.
3788
3789 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
3790
3791         * file-io.c : win32 build fix (ETXTBSY seems not found).
3792
3793 2005-10-04  Martin Baulig  <martin@ximian.com>
3794
3795         * reflection.c
3796         (mono_image_get_methodspec_token): Make the cache actually work;
3797         fixes #75974.
3798
3799 2005-10-04  Martin Baulig  <martin@ximian.com>
3800
3801         * class.c (mono_class_name_from_token): Removed the unneccessary
3802         `MonoGenericContext *' argument.
3803
3804 2005-10-04  Martin Baulig  <martin@ximian.com>
3805
3806         * loader.c
3807         (method_from_methodspec): Make the caching work again; fixes the
3808         performance regression from #76262.
3809
3810 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3811
3812         * file-io.c:
3813         * file-io.h:
3814         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
3815         GetFileSystemEntries that performs the same work but without going
3816         into io-layer, locking, etc.
3817
3818 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
3819
3820         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
3821         ThreadState_Stopped as well. Fixes #76047.
3822
3823 2005-09-29  Martin Baulig  <martin@ximian.com>
3824
3825         * class.c
3826         (inflate_generic_context): If the new context has a `gmethod', set
3827         its `container' that that gmethod's `container'.
3828
3829         * metadata.c
3830         (mono_metadata_parse_generic_param): Simplify things;
3831         `generic_container = generic_context->container;' is just fine.
3832
3833         * loader.c (method_from_methodspec): Code cleanups.
3834
3835 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
3836
3837         * decimal.c: fix warning (and let gcc generate correct
3838         code on ARM with optimizations).
3839
3840 2005-09-28  Martin Baulig  <martin@ximian.com>
3841
3842         * loader.c
3843         (method_from_memberref): Added `MonoGenericContext *class_context'
3844         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
3845         (method_from_methodspec): If we're a memberref, use the enclosing
3846         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
3847
3848 2005-09-28  Martin Baulig  <martin@ximian.com>
3849
3850         * object.c (mono_runtime_invoke_array): Added support for
3851         MONO_TYPE_GENERICINST; fixes #75917.
3852
3853 2005-09-27  Martin Baulig  <martin@ximian.com>
3854
3855         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
3856         `k->byval_arg.type' to determine the actual type.
3857
3858         * loader.c (method_from_methodspec): Removed some hacks.
3859
3860 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
3861
3862         * class-internals.h (mono_field_is_deleted): Do the test for
3863         rtspecialname before we check the actual name of the field. This
3864         prevents us from dereferencing a pointer into the string table,
3865         saving us from accessing a few pages
3866
3867         * *.c: Replace the use of {Enter,Leave}CriticalSection with
3868         macros. This will allow a deadlock debugger to easily be plugged
3869         in.
3870
3871 2005-09-27  Martin Baulig  <martin@ximian.com>
3872
3873         * loader.c (method_from_methodspec): Create a "signature"
3874         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
3875
3876 2005-09-27  Martin Baulig  <martin@ximian.com>
3877
3878         * class.c
3879         (inflate_generic_class): Correctly set the new context's
3880         container.
3881
3882         * loader.c
3883         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
3884         instead of a `MonoGenericContext *'.
3885         (mono_method_signature_full): Take a `MonoGenericContainer *'
3886         instead of a `MonoGenericContext *'.
3887
3888         * metadata.c
3889         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
3890         instead of a `MonoGenericContext *'.
3891         (mono_metadata_parse_method_signature_full): Likewise.
3892
3893 2005-09-26  Martin Baulig  <martin@ximian.com>
3894
3895         * class.c
3896         (mono_class_from_generic_parameter): Set `klass->generic_container'
3897         (mono_class_from_generic_parameter): Likewise.
3898         (mono_bounded_array_class_get): We inherit the generic container
3899         from the element class.
3900
3901         * loader.c
3902         (find_method, find_method_in_class): Take a `MonoGenericContext *'
3903         argument rather than computing it here.
3904         (method_from_memberref): Correctly set the generic context before
3905         parsing the signature.  Fixes #75681.
3906
3907 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
3908
3909         * object.c (mono_class_has_special_static_fields): Fix warnings.
3910
3911 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3912
3913         * assembly.c: Add parse_public_key function, to
3914         par the public keys. Also added mono_assembly_name_parse_full,
3915         to define it the parsed key should be freed or not.
3916         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
3917         to parse a long format assembly name.
3918         * metadata-internals.h: Keep mono_assembly_name_parse_full as
3919         private, since calling it to preserve the key requires
3920         freeing it manually.
3921         
3922 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
3923
3924         * locales.c : removed HAVE_ICU part.
3925
3926 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
3927
3928         * object.c (mono_class_create_runtime_vtable): Avoid calling 
3929         field_is_special_static if the klass has no special static fields.
3930
3931         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
3932         (MonoCachedClassInfo): Likewise.
3933
3934         * object.c (mono_class_has_special_static_fields): New helper function.
3935
3936 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
3937
3938         * class.c (mono_class_create_from_typedef): Don't call 
3939         interfaces_from_typedef_full for enums.
3940         (mono_class_create_from_typedef): Compute the base types of enums directly
3941         without calling mono_class_setup_fields ().
3942         (mono_class_find_enum_basetype): New helper function.
3943
3944         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
3945         one place inside the string heap.
3946         
3947 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
3948
3949         * class.c: locking fixes, code cleanups, some docs added.
3950         Allocate some data structures in the image mempool.
3951
3952 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
3953
3954         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
3955         the example code.
3956         
3957 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
3958
3959         * class-internals.h, class.c, reflection.c: reduce memory taken by
3960         MonoClass.
3961
3962 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
3963
3964         * metadata.c, metadata.h, loader.h: documentation updates, code and
3965         API cleanups.
3966
3967 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
3968
3969         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
3970         the example code.
3971
3972         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
3973         page faults caused by the runtime while reading metadata.
3974
3975 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3976
3977         * socket-io.c: the field names were changed 3 months ago and no one
3978         realized until bug #76077 got filed!
3979
3980 2005-09-20  Martin Baulig  <martin@ximian.com>
3981
3982         * icall.c (assembly_icalls): Removed some unused debugger icalls.
3983
3984 2005-09-20  Martin Baulig  <martin@ximian.com>
3985
3986         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
3987         write the rank into the class entry.
3988
3989 2005-09-20  Martin Baulig  <martin@ximian.com>
3990
3991         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
3992
3993 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
3994
3995         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3996
3997         * icall.c (custom_attrs_defined_internal): New icall.
3998
3999         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
4000         function.
4001         (mono_custom_attrs_construct_by_type): New helper function.
4002
4003 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
4004
4005         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
4006         terminate the resulting string. Fixes #76123.
4007
4008 2005-09-16  Martin Baulig  <martin@ximian.com>
4009
4010         * mono-debug.c
4011         (mono_debug_add_method): Ignore inflated methods for the moment.
4012
4013 2005-09-14  Martin Baulig  <martin@ximian.com>
4014
4015         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
4016
4017 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
4018
4019         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
4020         return a success/failure indication.
4021         (mono_metadata_interfaces_from_typedef_full): Ditto.
4022         (get_constraints): Ditto.
4023
4024 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
4025
4026         * marshal.c (emit_marshal_array): Fix handling of null arrays.
4027         
4028         * marshal.c (emit_marshal_array): Add support for returning string
4029         arrays from delegates. Fixes #76063.
4030
4031         * marshal.c: Use the emit_ldloc/stloc macros where possible.
4032
4033 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
4034
4035         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
4036         icall.
4037
4038 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
4039
4040         * reflection.c icall.c: Fix after mono_get_exception_type_load
4041         signature change.
4042
4043         * assembly.c (mono_assembly_get_assemblyref): New helper function.
4044         (mono_assembly_load_reference): Use the new helper.
4045
4046         * class-internals.h (MonoLoaderError): New structure containing 
4047         information about type loading errors.
4048
4049         * class-internals.h loader.c: Add APIs to store per-thread loader
4050         error information.
4051
4052         * loader.c class.c: Set the loader error if needed.
4053
4054         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
4055
4056 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
4057
4058         * decimal.c: fixed to handle the broken ARM fp format.
4059
4060 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
4061
4062         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
4063         broken.
4064
4065 2005-09-06  Martin Baulig  <martin@ximian.com>
4066
4067         * domain.c (supported_runtimes): Added v2.0.50727.
4068
4069 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
4070
4071         * culture-info.h: reduce the size of some structures.
4072
4073 2005-09-05  Martin Baulig  <martin@ximian.com>
4074
4075         Reflect latest API changes in the August CTP.
4076
4077         * icall.c
4078         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
4079         ("MonoType.HasGenericArguments"): Removed.
4080         ("MonoMethod.BindGenericParameters"): Renamed to
4081         "MakeGenericMethod".
4082         ("MethodBuilder.BindGenericParameters"): Renamed to
4083         "MakeGenericMethod".    
4084
4085 2005-09-05  Martin Baulig  <martin@ximian.com>
4086
4087         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
4088
4089 2005-09-05  Martin Baulig  <martin@ximian.com>
4090
4091         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4092
4093         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
4094         generic_container is non-NULL.
4095
4096 2005-09-05  Martin Baulig  <martin@ximian.com>
4097
4098         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4099
4100         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
4101
4102 2005-08-29  Michal Moskal  <malekith@nemerle.org>
4103
4104         * reflection.c (encode_locals,
4105         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
4106         for large generic types.
4107
4108 2005-09-05  Martin Baulig  <martin@ximian.com>
4109
4110         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4111
4112         * class.c (mono_dup_array_type): New public method.
4113         (mono_metadata_signature_deep_dup): New public method.
4114         (dup_type): Correctly duplicate array and function types.
4115
4116 2005-09-05  Martin Baulig  <martin@ximian.com>
4117
4118         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4119
4120         * reflection.c (get_default_param_value_blobs): Handle generic types
4121         and generic methods.
4122
4123 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4124
4125         * class.c: Fixed error reporting (method/class were inversed) for 
4126         inheritance demands.
4127         * security-manager.c|h: Added the AppDomain when calling the managed
4128         System.Security.SecurityManager.InheritanceDemand method.
4129
4130 2005-09-01  Raja R Harinath  <rharinath@novell.com>
4131
4132         * reflection.c (encode_marshal_blob): 'marshaltype' and
4133         'marshaltyperef' are alternate sources for the custom marshaler
4134         name.
4135
4136 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
4137
4138         * class.c: fix creation of array classes with rank == 1
4139         (patch by Ankit Jain <jankit@novell.com>).
4140
4141 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
4142
4143         * object.c: fix check for creating the bound data for arrays vs
4144         szarrays.
4145
4146 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4147
4148         * object.c: configuration file name is now based on the executable name,
4149         not the image name. Fixes bug #75931.
4150
4151 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
4152
4153         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
4154         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
4155
4156 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
4157
4158         * rand.c: Use wincrypt.h instead of WinCrypt.h.
4159
4160 2005-08-24  Ankit Jain  <jankit@novell.com>
4161             Raja R Harinath  <rharinath@novell.com>
4162
4163         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
4164           called by it recursively.
4165           (mono_class_init): Remove special case in pending_init handling, since it's
4166           superseded by the fix to mono_class_from_typeref.
4167
4168 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
4169
4170         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
4171         BROKEN_THREAD_START stuff.
4172
4173 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
4174
4175         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
4176         trampoline.
4177
4178         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
4179         
4180         * object.c (mono_delegate_ctor): Replace the original function address with
4181         a delegate trampoline.
4182
4183 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
4184
4185         * icall.c: add boolean argument to base64_to_byte_array and 
4186         InternalFromBase64String to control whether a whitespace-only string
4187         is allowed (or should casue a FormatException to be thrown). We need
4188         this as the behavior has changed between MS.NET 1.x and 2.0, and we
4189         to match the MS behaviour in both profiles.
4190         * appdomain.c: Bump corlib version.
4191
4192 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4193
4194         This patch implements a big portion of publisher policy
4195         support, used to bind assembly versions and redirect
4196         one assembly from version A to version B.
4197
4198         * assembly.c:
4199         New GSList loaded_assembly_bindings, for storing the cached
4200         assembly bindings.
4201         (assembly_binding_maps_name): New static function for checking if a 
4202         assembly binding information maps an assembly name.
4203         (mono_assembly_binding_info_free): New function for freeing
4204         assembly binding information resources.
4205         (get_publisher_policy_info): New static function for retrieving 
4206         assembly binding information from a MonoImage.
4207         (compare_versions): New static function for comparing an assembly
4208         binding information data and the version of an assembly name.
4209         (check_policy_versions): New static function for checking if an
4210         assembly binding info mapping an assembly name is valid for it.
4211         (mono_assembly_load_publisher_policy): New static function for
4212         loading the 'policy.major.minor.MyAssembly' image for an assembly
4213         with an assembly name 'aname'.
4214         (mono_assembly_bind_version): New static function for updating
4215         assembly redirection.
4216         (mono_assembly_apply_binding): New static function for applying
4217         assembly binding.
4218         (search_binding_loaded): New static function for searching 
4219         loaded assembly binding infos in the cache domain.
4220         (mono_assembly_load_full): Don't apply assembly binding for
4221         reflection only assemblies.
4222
4223         * metadata-internals.h: Add MonoAssemblyBindingInfo,
4224         which contains information about assembly binding. Also
4225         declare signature for mono_config_parse_publisher_policy ()
4226         function, used to retrieve pub policy info.
4227         
4228         * mono-config.c:
4229         (publisher_policy_start): New static function used to parse publisher 
4230         policy config files.
4231         (publisher_policy_parser): New static MonoParseHandler containing 
4232         the functions used when parsing config files.
4233         (mono_config_parse_publisher_policy): New function for parsing
4234         publisher policy files.
4235         
4236 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
4237
4238         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
4239
4240         * marshal.c (mono_delegate_free_ftnptr): Ditto.
4241
4242         * object.c (mono_get_addr_from_ftnptr): New helper function.
4243
4244         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
4245
4246         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4247
4248 2005-08-19  Dick Porter  <dick@ximian.com>
4249
4250         * threads.c, threads.h, appdomain.c, appdomain.h,
4251         profiler-private.h, monitor.c, object.c, object-internals.h,
4252         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
4253         store the thread ID, so it can hold a 64 bit value if needed.
4254
4255 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
4256
4257         * reflection.c (mono_reflection_create_dynamic_method): Store the
4258         handle class into the method references as well so ldtoken works in
4259         dynamic methods.
4260
4261         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
4262         types.
4263
4264 2005-08-19  Ankit Jain <jankit@novell.com>
4265
4266         Fix #75847.
4267         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
4268           here rather than using the method signature of a arbitrary function
4269           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
4270           two arguments.
4271           Hack done with Harinath.
4272
4273 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4274
4275         * threadpool.c: disable printing stack traces when we get a exception
4276         in a threadpool thread. I need to do more testing to figure out which
4277         cases actually print this. Fixes bug #75828.
4278
4279 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4280
4281         * icall.c: there might be ignored whitespace after the last '='. This
4282         fixes length computation and bug #75840.
4283
4284 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
4285
4286         * assembly.c (mono_assembly_load_full): Consider .exe extension as
4287         well. Fixes #75809.
4288
4289         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
4290         #75784.
4291         
4292         * reflection.c (create_custom_attr_data): Ditto.
4293
4294 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
4295
4296         * locales.c, culture-info.h : removed RegionLCIDMap.
4297         * culture-info-tables.h : regenerated.
4298
4299 2005-08-16  Martin Baulig  <martin@ximian.com>
4300
4301         * class.c (mono_type_get_name_recurse): Small fix.
4302
4303 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
4304
4305         * locales.c : indentation fixie.
4306
4307 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
4308
4309         * object-internals.h,
4310           locales.h,
4311           locales.c,
4312           culture-info.h,
4313           icall.c : added RegionInfo table support.
4314         * culture-info-table.h : regenerated for region support.
4315
4316 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
4317
4318         * reflection.c (resolve_object): handle all kinds of MonoMethod
4319         including generic ones
4320
4321 2005-08-12  Ankit Jain <jankit@novell.com>
4322
4323         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
4324           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
4325
4326 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
4327
4328         * process.c: Don't close a thread handle when it's NULL. This is a
4329         workaround for bug #75733.
4330
4331 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
4332
4333         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
4334
4335 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
4336
4337         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
4338
4339 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4340
4341         * threadpool.c: if a work item in the thread pool has a callback that
4342         catches a exception, don't propagate it after invoking the callback.
4343         Fixes bug #75336.
4344
4345 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
4346
4347         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
4348
4349         * class-internals.h (MonoCachedClassInfo): Add some new fields.
4350
4351         * class.c (mono_class_init): Load field info lazily in the AOT case.    
4352
4353         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
4354
4355 2005-08-03  Ankit Jain  <jankit@novell.com>
4356
4357         Fix #75683.
4358         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
4359           PInvoke calling convention is 0.
4360
4361 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
4362
4363         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
4364         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
4365
4366 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
4367
4368         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
4369         to handle threads not started by the GC (patch by Michael Meeks
4370         <michael.meeks@novell.com>).
4371
4372 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
4373
4374         * reflection.c: Make buffer used in emitting types larger for some
4375         big generic types (patch by Michal Moskal).
4376
4377 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
4378
4379         * mono-debug.c: Fix some (not all) alignment problems.
4380
4381 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4382
4383         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
4384         Invoke mono_image_load_from_data_full passing the refonly
4385         parameter.
4386
4387         * assembly.c
4388         (mono_assembly_open_from_bundle): Add the refonly argument, 
4389         in order to pass it to other methods it calls to.
4390         (do_mono_assembly_open): Add the refonly argument, in order 
4391         to pass it to other methods it calls to.
4392         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
4393         the refonly parameter to it.
4394
4395         * image.c: Add loaded_images_refonly_hash and
4396         loaded_images_refonly_guid_hash to cache the reflection
4397         only loaded images.
4398         (mono_images_init): Initialize the hash tables used for
4399         caching the reflection only images.
4400         (load_modules): Invoke mono_image_open_full passing the refonly
4401         parameter to load the modules the correct way.
4402         (build_guid_table): Add the refonly argument, to re-build the 
4403         correct hash table.
4404         (do_mono_image_open): Added the refonly argument, in order to
4405         define it for the loaded image.
4406         (mono_image_loaded_full): New function, which receives an
4407         additional parameter to look for the image in the refonly or
4408         non-refonly section.
4409         (mono_image_loaded): Updated, using mono_image_loaded_full.
4410         (mono_image_loaded_by_guid_full): The same case that happens
4411         with mono_image_loaded_full.
4412         (mono_image_loaded_by_guid): Likewise.
4413         (register_image): Use the ref_only variable inside MonoImage
4414         to decide in which hash table store the current image.
4415         (mono_image_open_from_data_full): Rename
4416         mono_image_open_from_data to mono_image_open_from_data_full,
4417         adding the refonly argument, to define the ref_only variable 
4418         inside MonoImage.
4419         (mono_image_open_from_data): Return 
4420         mono_image_open_from_data_full.
4421         (mono_image_open_full): Rename mono_image_open to
4422         mono_image_open_full, receiving the new refonly argument,
4423         to pass it to inner methods.
4424         (mono_pe_file_open): Update this function, to open
4425         a MonoImage as a non-refonly image.
4426         (mono_image_close): Use the refonly variable inside
4427         MonoImage to remove the image from the correct caches.
4428
4429         * image.h: Add the signatures of mono_image_open_full,
4430         mono_image_open_from_data_full, mono_image_loaded_full,
4431         mono_image_loaded_by_guid_full.
4432
4433         * metadata-internals.h: Add the ref_only field to 
4434         MonoImage.
4435         
4436 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4437
4438         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
4439         Fix the last behavior, which used to load the assemblies and
4440         extract MonoReflectionAssemblyName information, instead of
4441         extract it from the metadata tables. Needed for Reflection
4442         Only assemblies.
4443         
4444 2005-07-29  Martin Baulig  <martin@ximian.com>
4445
4446         * mono-debug-debugger.c
4447         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
4448         not initialized.
4449
4450         * mono-debug.c
4451         (mono_debug_address_from_il_offset): Check whether we have
4452         debugging support before attempting to take the lock.
4453         (mono_debug_source_location_from_address): Likewise.
4454         (mono_debug_source_location_from_il_offset): Likewise.
4455         (mono_debug_il_offset_from_address): Likewise.
4456         (mono_debug_address_from_il_offset): Likewise.
4457
4458 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
4459
4460         * class.c (mono_class_from_name_case): Add support for dynamic images.
4461         Fixes #75650.
4462
4463         * object.c (mono_class_compute_gc_descriptor): Add a workaround
4464         for #75479.
4465
4466 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
4467         
4468         * reflection.c (mono_method_get_object): Fix warning.
4469
4470 2005-07-28  Martin Baulig  <martin@ximian.com>
4471
4472         * mono-debug.c
4473         (mono_debug_add_wrapper): Also write the wrapper type.
4474
4475 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
4476
4477         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
4478         
4479         * class.c (mono_class_init): Avoid reading nested classes if the AOT
4480         data indicates the class has none.
4481
4482 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
4483
4484         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
4485         loader lock with the debugger lock. Prevents deadlocks for beagle.
4486
4487         Beagle can now run on an smp box for a weekend without any
4488         issues. Woohoo!
4489
4490 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
4491
4492         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
4493         in a module. Fixes #75629.
4494
4495 2005-07-26  Martin Baulig  <martin@ximian.com>
4496
4497         * mono-debug.c (mono_debug_add_wrapper): New static method.
4498         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
4499         interncall or a wrapper.
4500
4501         * mono-debug.h (MonoDebugWrapperData): New public typedef.
4502         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
4503         (MONO_DEBUGGER_VERSION): Bump to 51.
4504
4505         * mono-debug-debugger.c
4506         (mono_debugger_add_type): Removed this empty function.
4507         (mono_debugger_add_method): Likewise.
4508
4509 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
4510
4511         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
4512         before accessing method->slot.
4513
4514 2005-07-21  Jb Evain  <jbevain@gmail.com>
4515
4516         * reflection.c (method_encode_clauses/class): Handle filters clauses.
4517         Fixes #75010.
4518
4519 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
4520
4521         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
4522         #75587.
4523
4524 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
4525
4526         * image.h image.c: Add mono_image_get_guid () API function.
4527
4528 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
4529
4530         There were issues when multiple threads tried to load
4531         assemblies. A deadlock was created between assemblies_mutex and
4532         mono_domain_assemblies_lock. This fixes the issue by making the
4533         assembly ref counting be lock free. See bug 75586.
4534         
4535         * image.c (mono_image_close): The add ref function here was using
4536         Interlocked operations while the unref was using a mutex and a
4537         --. I don't think this was ever a bug that would be exposed in a
4538         non-pendantic way (ie, by an embedder doing a ref on one thread
4539         and an unref on another), but for the sake of correctness, this is
4540         now Interlocked.
4541
4542         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
4543         (mono_assembly_load_reference): Call mono_assembly_addref rather
4544         than touching the refcount ourselves.
4545         (mono_assembly_close): Use InterlockedDecrement to unref the
4546         assembly. Don't acquire the lock unless it is actually needed.
4547
4548 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
4549
4550         * class.c (mono_class_layout_fields): Fix calculation of has_references
4551         for generic types.
4552
4553 2005-07-12  Martin Baulig  <martin@ximian.com>
4554
4555         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4556
4557         * metadata.c
4558         (mono_type_hash): Provide better hashing for generic instances.
4559         (mono_generic_inst_hash): Improve hashing.
4560         (mono_generic_class_hash): Likewise.
4561
4562         * reflection.c (mymono_metadata_type_hash): Improve hashing for
4563         generic instances.
4564
4565 2005-07-12  Martin Baulig  <martin@ximian.com>
4566
4567         * reflection.c (mono_reflection_create_runtime_class): Remove the
4568         hack for generic type definitions and non-`Run' assemblies.
4569         (mono_reflection_bind_generic_parameters): Also use
4570         `klass->wastypebuilder' to check for TypeBuilders.
4571
4572 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
4573
4574         * class.c (mono_class_layout_fields): Fix calculation of has_references
4575         for generic types.
4576
4577         * class.c (inflate_generic_class): Fix a leak.
4578         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
4579         for generic types.
4580
4581 2005-07-11  Martin Baulig  <martin@ximian.com>
4582
4583         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
4584         on error.
4585
4586 2005-07-11  Martin Baulig  <martin@ximian.com>
4587
4588         * loader.c (find_method): Also lookup in
4589         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
4590
4591 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4592
4593         * appdomain.c (mono_domain_unload): Don't free the error message
4594         before passing it to mono_get_exception_...
4595
4596         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
4597         
4598 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
4599
4600         * threads.c: try to better guess an available RT signal (bug #75387).
4601
4602 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4603
4604         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
4605         and CACHE_OBJECT.
4606
4607 2005-07-07  Martin Baulig  <martin@ximian.com>
4608
4609         * class.c (mono_type_get_name_full): Return NULL for
4610         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
4611         fixes #75408.
4612
4613 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4614
4615         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
4616         exit the appdomain as well being aborted.
4617
4618         * threadpool.c: Create all threadpool threads inside the root appdomain, and
4619         change back to the root domain after calling managed code. This enables
4620         appdomains using threadpools to be unloaded.
4621
4622 2005-07-07  Martin Baulig  <martin@ximian.com>
4623
4624         * class-internals.h
4625         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
4626         into `MonoDynamicGenericClass' since we only need it for dynamic
4627         types.
4628
4629         * reflection.c (mono_class_bind_generic_parameters): We don't need
4630         to compute the `parent' here.
4631
4632 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
4633
4634         * culture-info-table.h : regenerated.
4635
4636 2005-07-06  Martin Baulig  <martin@ximian.com>
4637
4638         * icall.c
4639         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
4640
4641         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
4642
4643 2005-07-06  Martin Baulig  <martin@ximian.com>
4644
4645         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
4646         we're doing a signature-only comparision; fixes #74945.
4647
4648 2005-07-06  Martin Baulig  <martin@ximian.com>
4649
4650         * class-internals.h (MonoGenericClass): Moved some things out into
4651         a new `MonoInflatedGenericClass' type.  
4652         (MonoInflatedGenericClass): New type; the `klass' of a
4653         `MonoGenericClass' is now computed lazyly in
4654         mono_get_inflated_generic_class().      
4655
4656         * class.c (mono_get_inflated_generic_class): New public function.
4657         (mono_class_inflate_generic_method): Removed the unused
4658         `MonoClass *' argument.
4659         (setup_generic_vtable): Don't call mono_get_inflated_method() on
4660         all the methods.
4661         (mono_class_create_generic): Make this static and merge it with
4662         mono_class_create_generic_2(); we're now called automatically from
4663         mono_get_inflated_generic_class().
4664
4665         * loader.c (mono_method_signature): Call
4666         mono_get_inflated_method() here.
4667
4668 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
4669
4670         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
4671         type of fields with RVA.
4672
4673         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
4674         for this pseudo class.
4675         (my_mono_class_from_generic_parameter): Likewise.
4676         (mono_class_init): Allow interfaces to have cctors.
4677
4678 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
4679
4680         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
4681         lazily for AOT methods.
4682
4683 2005-07-05  Martin Baulig  <martin@ximian.com>
4684
4685         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
4686         returns FALSE for a successful match, not TRUE.
4687
4688 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
4689
4690         * loader.c (mono_method_get_index): Optimize this a bit.
4691
4692 2005-07-04  Martin Baulig  <martin@ximian.com>
4693
4694         * class.c
4695         (class_compute_field_layout): Move the check for generic type
4696         definitions into mono_class_layout_fields().  Fixes #74684.
4697         (mono_class_from_generic_parameter): Correctly compute
4698         `klass->parent'; fixes #75457.
4699
4700         * reflection.c (register_assembly, register_module): Make sure
4701         `domain->rejobject_hash' is already created.
4702
4703 2005-07-02  Martin Baulig  <martin@ximian.com>
4704
4705         * class-internals.h
4706         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
4707         `MonoDynamicGenericClass'.      
4708
4709 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
4710
4711         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
4712         returned by a field getter is null, since null is a valid value.
4713
4714 2005-07-01  Martin Baulig  <martin@ximian.com>
4715
4716         * reflection.c (mono_reflection_generic_class_initialize): Update
4717         the `dgclass->fields [i].parent' to the correct class.
4718         (mono_image_get_fieldref_token): Use the declaring type, not the
4719         reflected type.
4720
4721 2005-07-01  Martin Baulig  <martin@ximian.com>
4722
4723         * loader.c (find_method): Also look in the interfaces; fixes #75429.
4724
4725 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
4726
4727         * threads.c (thread_cleanup): assert that thread != NULL
4728         (wait_for_tids_or_state_change): We were using the wrong variable
4729         when accessing wait->threads. `i' was always out of the bounds of
4730         the array.
4731
4732 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4733
4734         * loader.c: map user32 and kernel32 to libMonoSupportW
4735
4736 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
4737
4738         * appdomain.c (unload_thread_main): Mark this as WINAPI.
4739
4740 2005-06-28  Martin Baulig  <martin@ximian.com>
4741
4742         * loader.c (method_from_methodspec): Fix #75334.
4743
4744 2005-06-28  Martin Baulig  <martin@ximian.com>
4745
4746         Fix #74953 - Arrays now implement the generic IList<T> interface
4747         on the 2.0 platform.
4748
4749         * class-internals.h (MonoDefaults): Added `generic_array_class'.
4750
4751         * reflection.c (mono_class_bind_generic_parameters): New public
4752         function; similar to mono_reflection_bind_generic_parameters(),
4753         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
4754
4755         * domain.c (mono_init_internal): Try to initialize.
4756         `mono_defaults.generic_array_class' here; this'll only succeed if
4757         we're using the 2.0 corlib.
4758
4759         * icall.c
4760         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
4761         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
4762         (mono_lookup_internal_call): Added support for nested classes.
4763
4764         * loader.c
4765         (mono_get_method_from_token): Set `result->signature->pinvoke' if
4766         we're an interncall and have generic arguments.
4767
4768         * class.c
4769         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
4770         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
4771         instance of System.Array.InternalArray<T> for arrays, so they
4772         implement the generic IList<T> interface.
4773
4774 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
4775
4776         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
4777         (chastamar@yahoo.com). Fixes #75374.    
4778
4779 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
4780
4781         * culture-info-table.h: regenerated.
4782
4783 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4784
4785         * icall.c: handle spaces correctly for base64 strings.
4786
4787 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
4788
4789         * *.c: Kill some warnings.
4790
4791 2005-06-23  Duncan Mak  <duncan@novell.com>
4792
4793         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
4794         that this builds on Solaris 10 (x86).
4795
4796 2005-06-23  Martin Baulig  <martin@ximian.com>
4797
4798         * class.c
4799         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
4800         generic type definitions.
4801
4802 2005-06-23  Martin Baulig  <martin@ximian.com>
4803
4804         Fix #75331.
4805
4806         * metadata.c (mono_class_get_overrides): Renamed to
4807         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
4808         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
4809         pass it to mono_get_method_full().
4810
4811 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
4812
4813         * reflection.c (mono_reflection_create_runtime_class): take the
4814         mono_domain_lock in this method. Prevents deadlocks
4815
4816 2005-06-22  Martin Baulig  <martin@ximian.com>
4817
4818         * loader.c (method_from_methodspec): Fix #75330.
4819
4820 2005-06-22  Martin Baulig  <martin@ximian.com>
4821
4822         * reflection.c (type_get_qualified_name): Use
4823         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
4824         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
4825         argument; use it if we don't have an assembly name.
4826
4827 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
4828
4829         * object.c: In mono_message_init, set "copy out" flag for in
4830         parameters with the [Out] flag.
4831
4832 2005-06-21  Martin Baulig  <martin@ximian.com>
4833
4834         * class.c
4835         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
4836         and MONO_TYPE_PTR.
4837
4838 2005-06-21  Martin Baulig  <martin@ximian.com>
4839
4840         * class.c (mono_class_init): Don't initialize `class->fields' for
4841         generic instances since they're initialized again in
4842         compute_field_layout(). 
4843         (compute_field_layout): Set the field's `generic_info' here; fix
4844         #75320. 
4845
4846 2005-06-21  Martin Baulig  <martin@ximian.com>
4847
4848         * class-internals.h
4849         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
4850
4851         * metadata.c (mono_metadata_generic_method_equal): Also
4852         distinguish the `generic_class'; fixes #75334.
4853
4854 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4855
4856         * domain.c:
4857         * appdomain.c:
4858         * domain-internals.h:
4859         * reflection.c: 'domain_assemblies' field is now protected by its own
4860         lock. Don't call into managed code to run the AssemblyLoad event if we
4861         now there are no registered delegates for it.
4862
4863 2005-06-20  Martin Baulig  <martin@ximian.com>
4864
4865         * class.c (mono_class_is_assignable_from): Use a custom version of
4866         mono_class_has_parent() to make things work for generic instances;
4867         fix #75300.
4868
4869 2005-06-20  Martin Baulig  <martin@ximian.com>
4870
4871         * loader.c (method_from_methodspec): Apply a patch from
4872         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
4873
4874 2005-06-20  Martin Baulig  <martin@ximian.com>
4875
4876         * class.c (mono_class_init): Reverted Zoltan's last change; it
4877         breaks generics.
4878
4879 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
4880
4881         * threads.c (wait_for_tids_or_state_change): Add missing locking.
4882
4883 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4884
4885         * socket-io.c: fix the index in the socket array for writable/error
4886         sockets. Fixes bug #75306.
4887
4888 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
4889
4890         * class.c (mono_class_init): Allow interfaces to have static ctors.
4891
4892 2005-06-17  Martin Baulig  <martin@ximian.com>
4893
4894         * loader.c (method_from_methodspec): Use `context->container' when
4895         parsing the `gmethod->inst'.
4896
4897 2005-06-17  Martin Baulig  <martin@ximian.com>
4898
4899         * class.c (mono_type_get_name_recurse): Don't add the assembly
4900         name for type arguments.
4901
4902 2005-06-15  Martin Baulig  <martin@ximian.com>
4903
4904         * reflection.c (mono_image_get_inflated_method_token): Encode
4905         correct klass; fixes #75260.
4906
4907 2005-06-13 Michal Moskal <malekith@nemerle.org>
4908
4909         * icall.c: Make GetCorrespondingMethod/Constructor take
4910         MonoReflectionMethod method not MonoMethod. Removed
4911         MonoType.GetCorrespondingField, and make
4912         MonoGenericType.GetCorrespondingField take name not
4913         MonoClassField.
4914
4915 2005-06-13  Michal Moskal <malekith@nemerle.org>
4916
4917         * reflection.c (field_encode_signature, encode_locals):
4918          Make sizes of buffers for types larger (for big generic types).
4919          (create_generic_typespec,
4920          mono_reflection_sighelper_get_signature_local,
4921          mono_reflection_sighelper_get_signature_field):
4922          Add asserts for too small buffers.
4923
4924 2005-06-15  Martin Baulig  <martin@ximian.com>
4925
4926         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
4927         if our parent is not a dynamic type.
4928
4929 2005-06-15  Martin Baulig  <martin@ximian.com>
4930
4931         * class-internals.h (MonoTypeNameFormat): New enum.
4932
4933         * class.c
4934         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
4935         (mono_type_get_full_name): Removed.
4936         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
4937         argument instead of the boolean's.
4938
4939         * icall.c (ves_icall_System_MonoType_getFullName):
4940         Added `gboolean assembly_qualified'.    
4941
4942         * reflection.h
4943         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
4944
4945         * reflection.c (mono_reflection_parse_type): Parse the new type
4946         name format.
4947
4948 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4949
4950         * icall.c: no need to convert from utf16 to utf8 and then back again
4951         after the call to GetLogicalDrives.
4952
4953 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4954
4955         * icall.c: frombase64. Fix problems exposed by new tests.
4956
4957 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4958
4959         * icall.c: added internal calls for converting char [] and strings in
4960         base64 into byte [].
4961
4962 2005-06-10  Martin Baulig  <martin@ximian.com>
4963
4964         * class.c (mono_class_create_generic_2): Read the nested classes
4965         from the metadata rather than from `gklass->nested_classes' since
4966         `gklass' might not be initialized yet.
4967
4968 2005-06-09  Duncan Mak  <duncan@novell.com>
4969
4970         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
4971         all public headers. Fixes #74919.
4972
4973 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
4974
4975         * domain.c: The key for proxy_vtable_hash is now a pointer
4976         array. Added new GHashFunc and GCompareFunc functions for this.
4977
4978         * class.h: The list of interfaces in MonoRemoteClass is known in
4979         advance and can't grow (we create a new MonoRemoteClass if needed),
4980         so now the interface array can be allocated together with
4981         MonoRemoteClass.
4982         
4983         * object.c: Added a new method create_remote_class_key.
4984         Fixed mono_remote_class so it does not depend on
4985         mono_upgrade_remote_class.
4986         Removed extend_interface_array.
4987         Added new method clone_remote_class(), which makes a copy of a remote
4988         class and adds a new interface or class to it.
4989         mono_upgrade_remote_class() now creates a new remote class (or gets
4990         it from the cache) if an vtable upgrade is needed. In this way
4991         we make sure that other objects sharing the same remote class
4992         don't get the new vtable with unwanted interfaces.
4993         
4994         * object-internals.h:
4995         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
4996         
4997         * marshal.c: Track changes in mono_upgrade_remote_class().
4998
4999 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
5000         * icall.c: Add runtime methods for obtaining members of inflated
5001         class, which were created from supplied non-inflated members. It
5002         is used in internal Get{Method,Constructor,Field} methods in
5003         System.Type
5004
5005 2005-06-09  Martin Baulig  <martin@ximian.com>
5006
5007         * reflection.c
5008         (mono_reflection_bind_generic_method_parameters): Fix #75169.
5009
5010 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5011         * reflection.c (mono_image_basic_init): Define
5012         Version in MonoDynamicAssembly. 
5013         
5014 2005-06-08  Martin Baulig  <martin@ximian.com>
5015
5016         Fix #75136.
5017
5018         * loader.c
5019         (mono_method_signature_full): New public method; takes a
5020         `MonoGenericContext *'.
5021         (find_method): Use mono_method_signature_full() and pass the
5022         klass'es context to it.
5023
5024         * class.c (mono_class_is_inflated_method): Use
5025         mono_method_signature_full() and pass the context to it.
5026
5027 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
5028
5029         * object.c: add proper locking in mono_remote_class_vtable(),
5030         fixes possible memory corruption.
5031
5032 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
5033
5034         * marshal.c (mono_remoting_marshal_init): set
5035         initialized after initialization.
5036
5037 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
5038
5039         * locales.c : hush.
5040
5041 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
5042
5043         * object.c (extend_interface_array): fix really silly
5044         memory corrupting / comparison bug.
5045
5046 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5047
5048         * reflection.c: Functions added to support the creation
5049         of CustomAttributeData, which includes Attribute data
5050         used by ReflectionOnly methods.
5051
5052         * reflection.h:  mono_reflection_get_custom_attrs_data and
5053          mono_custom_attrs_data_construct added (functions exposed).
5054
5055          * icall.c: Added mono_reflection_get_custom_attrs_data
5056          as icall.
5057         
5058 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
5059
5060         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
5061         lupus's request.
5062
5063 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
5064
5065         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
5066
5067         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
5068         dynamic DllImportAttribute.
5069
5070         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
5071         dynamic DllImportAttribute.
5072
5073         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
5074         Fixes #75162.
5075
5076 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5077
5078         * threads.c: avoid segfault when an unstarted thread is aborted.
5079
5080 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
5081
5082         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
5083         Returns the name and version of the runtime for reporting.
5084
5085 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5086
5087         * appdomain.c: bump corlib version.
5088         * object-internals.h: new field in MonoReflectionAssembly.
5089
5090 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5091
5092         * object-internals.h: Carlos forgot to add this field.
5093
5094 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5095
5096         * icall.c: Added create_version to create instances
5097         of Version of MonoReflectionAssemblyName. This change helps
5098         the AssemblyName tests to keep running fine.
5099         
5100 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
5101   
5102         * object.c (mono_method_return_message_restore): A somehow less
5103         intrusive fix for #75138.
5104
5105 2005-06-03  Raja R Harinath  <rharinath@novell.com>
5106
5107         * object.c (mono_method_return_message_restore): Fix computation
5108         of expected number of out args.
5109
5110 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
5111
5112         * reflection.c (mono_image_get_method_info): Fix the case when the
5113         charset is empty.
5114
5115 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
5116
5117         * object.c: Added missing null check in
5118           mono_method_return_message_restore.
5119
5120 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
5121
5122         * reflection.c (mono_image_get_method_info): Handle the case when
5123         dllentry is empty.
5124
5125 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
5126
5127         * object.c: When creating the vtable for a proxy, take into account
5128         all inherited interfaces, not only the ones registered in
5129         iclass->interfaces. This fixs bug #74996.
5130         Also, in mono_method_return_message_restore, verify that the array
5131         of out args has the expected lengh.
5132
5133 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5134
5135         * socket-io.c: update the timeout in Poll when the call is interrupte.
5136
5137 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5138
5139         * socket-io.c: support abort/suspend in Select_internal after last
5140         change.
5141
5142 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5143
5144         * threadpool.c: remove warning.
5145
5146 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5147
5148         * icall.c:
5149         * socket-io.[ch]: Select_internal uses poll() now when available, thus
5150         removing the 1024 limit from select(). Runtime part of the fix for
5151         bug #71203.
5152
5153 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5154
5155         * socket-io.c: when resolving the addresses for the same
5156         host returned by gethostname(), get the local IPs from the interface
5157         list. Loopback addresses are discarded if the are interfaces up with
5158         non-loopback ones. Fixes bug #63265.
5159
5160 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
5161
5162         * appdomain.c, verify.c, object-internals.h, reflection.c:
5163         bumped corlib number to 36, and added new extra_flags field
5164         to ReflectionMethodBuilder and friends.  Fixes #75060.
5165
5166 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
5167
5168         * gc.c: register a new weak link only if the object is non-null
5169         (fixes bug#75047).
5170
5171 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5172
5173         * culture-info.h : short time pattern too.
5174
5175 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5176
5177         * culture-info.h : expand long time pattern string length.
5178
5179 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5180
5181         * culture-info-table.h : update (more French date format; #72788).
5182
5183 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
5184
5185         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
5186         the method is static. Fixes #75029.
5187
5188 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
5189
5190         * reflection.c: Update the table_idx field of method builders after
5191         saving the module, since it can change. This is a workaround for
5192         bug #74914. 
5193
5194 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5195
5196         * culture-info-table.h : update (additional French date format).
5197
5198 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
5199
5200         * icall.c (ves_icall_type_Equals): Revert last change.
5201         
5202         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
5203
5204         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
5205
5206 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
5207
5208         * class-internals.h: Added executioncontext_class field to 
5209         MonoDefaults structure.
5210         * domain.c: Cache System.Threading.ExecutionContext class in 
5211         mono_defaults.
5212         * object.c: Capture the ExecutionContext for asynchroneous calls in
5213          mono_async_result_new.
5214         * object-internals.h: Added execution_context and original_context 
5215         fields to MonoAsyncResult. Added execution_context to MonoThread.
5216         * security-manager.c|.h: Added mono_get_context_capture_method to 
5217         return the capture method (if required by the security manager or by
5218         the framework version used).
5219         * threadpool.c: Apply capture (if present) ExecutionContext in 
5220         mono_async_invoke and revert to original context after it completes.
5221
5222 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
5223
5224         * culture-info-table.h : updated (real hacky solution for zh-CHT).
5225
5226 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
5227
5228         * culture-info-table.h : zh-CHT related workaround.
5229
5230 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
5231
5232         * marshal.c (emit_marshal_custom): Add some error checking and call the
5233         methods in the ICustomMarshaler interface. Fixes #74875.
5234         
5235         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
5236         native->managed wrappers.
5237
5238 2005-05-12  Martin Baulig  <martin@ximian.com>
5239
5240         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
5241         here and use the loader lock.
5242
5243         * mono-debug.c: Properly lock when the debugger is not attached.
5244         (mono_debug_init): Release the initial lock if we're not running
5245         in the debugger.
5246
5247 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
5248
5249         * marshal.c (emit_marshal_custom): Pass through NULL values without
5250         calling the custom marshalling routines.
5251
5252         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
5253         conversion in structures. Fixes #74882.
5254
5255 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
5256
5257         * culture-info-table.h : zh-* cultures were missing.
5258
5259 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
5260
5261         * threads.c: Added a new event background_change_event which is signaled
5262         when a thread changes its background mode.
5263         Moved here several checks previously done in managed code. The checks
5264         require the thread lock, and using the thread lock in managed code
5265         can result in deadlocks.
5266         Merged Start_internal and Thread_internal into a single method. Now 
5267         Thread_internal does all work of creating and starting a thread.
5268         Added icalls for setting and getting the state of the object. Moved from
5269         managed code to avoid locking there.
5270         Added wait_for_tids_or_state_change() which is called instad of
5271         wait_for_tids when waiting for non-backround threads to end. This method
5272         will return if one of the threads ends or the background_change_event
5273         is signaled.
5274         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
5275         the background mode. This method signals the background_change_event
5276         event.
5277         * icall.c:
5278         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
5279         removed Start_internal.
5280         
5281 2005-05-11  Martin Baulig  <martin@ximian.com>
5282
5283         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
5284         to order of some fields to get proper alignment on 64-bit machines.
5285
5286 2005-05-11  Martin Baulig  <martin@ximian.com>
5287
5288         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
5289         changes as they're broken and completely fuck up the debugger.
5290
5291         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
5292
5293 2005-05-10  Martin Baulig  <martin@ximian.com>
5294
5295         * reflection.c (mono_reflection_generic_class_initialize): Don't
5296         call mono_class_setup_parent() here.
5297
5298 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5299
5300         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
5301         send/receive timeout use an integer in milliseconds. We were using a
5302         struct timeval.
5303
5304 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5305
5306         * locales.c:
5307         (internal_get_cultures): reserve the first slot of the array for the
5308         InvariantCulture, which will be filled in managed code.
5309
5310 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
5311
5312         * reflection.c (mono_image_fill_module_table): Initialize the
5313         GENERATION field as well.
5314
5315 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5316
5317         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
5318         Monitor.Enter on the object.
5319
5320 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
5321
5322         * threads.c: Enable the wait for running threads when exiting.
5323         * icall.c: Suspend all threads before exiting.
5324
5325 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
5326
5327         * assembly.c (mono_assembly_load_reference): Fix warning.
5328
5329 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5330
5331         * threadpool.c: changed the default number of threads per cpu. From now
5332         on, the default will be 20 + (5 * number of cpus) instead of 50.
5333
5334 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
5335
5336         * loader.c (mono_method_get_signature_full): Add locking here.
5337
5338 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
5339
5340         * appdomain.c: Moved methods for parsing and freeing assembly
5341         names to assembly.c.
5342         * assembly.c, domain-internals.h: Created public methods for parsing
5343         assembly names. Fixed mono_assembly_load_with_partial_name:
5344         it now finds the best match, taking into account the version,
5345         token and culture specified in the partial name. Also return
5346         the latest version if no version information is specified.
5347
5348 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
5349
5350         * threadpool.c: replace check for SocketAsyncCall class.
5351
5352 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5353
5354         * threadpool-internals.h:
5355         * Makefile.am: added threadpool-internals.h
5356
5357         * threadpool.c: call mono_unhandled_exception on exceptions not handled
5358         that happen in threadpool threads (tested on MS).
5359         (mono_thread_pool_remove_socket): new function that dispatch any pending
5360         AIO call on a socket that is closing. By now only epoll really needs it,
5361         as select/poll wake up when the socket closes.
5362
5363
5364         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
5365
5366 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
5367
5368         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
5369
5370 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
5371
5372         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
5373
5374 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
5375
5376         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
5377         has an abort request, convert it into a suspend request.
5378
5379 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
5380
5381         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
5382         warning for the usage of `UnmanagedFunctionPointerAttribute' which
5383         is not supported yet.
5384
5385 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5386
5387         * image.c: register assemblies loaded from data (bundles) in the loaded
5388         assemblies hash. Fixes bug #74772.
5389
5390 2005-04-29  Martin Baulig  <martin@ximian.com>
5391
5392         * class.c (mono_type_get_name_recurse): Update to the new naming
5393         schema from the latest .NET 2.x beta2.
5394         (mono_class_setup_vtable_general): If we're a generic instance,
5395         copy the vtable from our generic type definition and inflate all
5396         the methods in it.
5397
5398         * loader.c (find_method): Update to the new naming schema from the
5399         latest .NET 2.x beta2.
5400
5401 2005-04-29  Raja R Harinath  <harinath@gmail.com>
5402
5403         * class.c (mono_class_init): Add a mono_loader_unlock to the
5404         #74734 fix.
5405
5406 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
5407
5408         * icall.c (ves_icall_System_Environment_Exit): Remove the 
5409         suspend_all_other_threads () call for the time being, since it can hang.
5410
5411         * threads.c (mono_thread_manage): Similarly, disable the waiting for
5412         the background threads to exit, since it can also hang.
5413
5414         * class.c (mono_class_init): Applied patch from Ankit Jain 
5415         (radical@gmail.com). Avoid pending init errors when a field refers
5416         to a nested class using a typeref. Fixes #74734.
5417
5418         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
5419         this for dynamic modules.
5420
5421 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5422
5423         * threads.c: don't wait for threads that are in the process of aborting
5424         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
5425         and waiting for background threads to finish. This makes xsp and
5426         mod-mono-server exit without random length delays and/or hangs.
5427
5428 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5429
5430         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
5431
5432 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
5433
5434         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
5435         dynamic types to prevent infinite loops. Fixes #74727.
5436
5437         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
5438         ..._is_assignable_to.
5439
5440 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
5441
5442         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
5443
5444 2005-04-25  Martin Baulig  <martin@ximian.com>
5445
5446         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
5447
5448         * domain.c
5449         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
5450
5451         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
5452
5453         * reflection.c (build_compressed_metadata): Set metadata header
5454         version to 2.0.
5455
5456 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
5457
5458         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
5459         number into an integral and a decimal part. Fixes #70473.
5460
5461         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
5462
5463 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
5464
5465         * culture-info-table.h : reflected the latest locale-builder output.
5466
5467 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5468
5469         * threadpool.c: check for SuspendRequested too when deciding if
5470         mono_thread_interruption_checkpoint should be called.
5471
5472 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5473
5474         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
5475         * threads.c: remove interruption_mutex and use Interlocked instead. When
5476         suspending all the threads, wait for all the suspended events at once.
5477         If we're shutting down and get an APC that is going to be queued,
5478         call mono_thread_execute_interruption immediately, as the thread might
5479         be sleeping on a pthread condition or mutex.
5480
5481         * icall.c: call mono_runtime_set_shutting_down before suspending the
5482         threads.
5483
5484         Fixes bug #74693. And now xsp is happier when exiting.
5485
5486 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
5487
5488         * loader.c (mono_stack_walk): Fix #74690.
5489
5490 2005-04-22  Martin Baulig  <martin@ximian.com>
5491
5492         * mono-debug.h (MonoDebugMethodJitInfo): Added
5493         `MonoDebugMethodJitInfo *jit'.
5494
5495         * mono-debug.c (mono_debug_read_method): Cache the
5496         MonoDebugMethodJitInfo in `address->jit'.
5497         (mono_debug_free_method_jit_info): New public method.
5498
5499 2005-04-22  Martin Baulig  <martin@ximian.com>
5500
5501         * class.c (mono_class_is_assignable_from): Disallow
5502         type parameter -> interface.
5503
5504 2005-04-21  Dick Porter  <dick@ximian.com>
5505
5506         * threads.c (mono_thread_create): Turn an assertion into an error.
5507
5508 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
5509
5510         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
5511         
5512         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
5513         Fix some gcc 4.0 warnings.
5514
5515 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
5516
5517         * file-io.c: fix alt dir separator char on unix systems
5518         and cleanup (fixes bug #71214).
5519
5520 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
5521
5522         * marshal.c: Use CALLVIRT instead of CALL when dispatching
5523         a call to a remote domain, since the method may be an
5524         interface method in the client domain. This fixes bug #74192.
5525
5526 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5527
5528         * threadpool.c: recv/send are now performed before going back to managed
5529         code to save one transition.
5530
5531 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5532
5533         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
5534
5535         * metadata/threadpool.c: removed hack to workaround the bug above.
5536
5537         Fixes bug #74618.
5538
5539 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
5540
5541         * reflection.c reflection.h: Fix handling of parameter defaults in
5542         dynamic methods. Also fixes handling of parameter attributes.
5543         Fixes #74609.
5544
5545         * mono-debug.c (mono_debug_close_image): Fix warning.
5546
5547 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5548
5549         * socket-io.h: replaced old unused field with new 'blocking'.
5550         * threadpool.c: restore socket blocking state on windows(tm).
5551
5552 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
5553
5554         * icall.c: don't return the codebase in the AssemblyName[] returned by
5555         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
5556         * object-internals.h: Removed FIXME (fields were presents) and fixed
5557         versioncompat declaration.
5558
5559 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5560
5561         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
5562         not closed, so don't cleanup when it happens.
5563
5564 2005-04-13  Chris Toshok  <toshok@ximian.com>
5565
5566         * mono-debug-debugger.h: change prototype for
5567         mono_debugger_lookup_type.
5568
5569         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
5570         this function, although it should probably be named
5571         mono_debugger_init_type.
5572
5573 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5574
5575         * threadpool.c: fix non-AIO case.
5576
5577 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
5578
5579         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
5580         the built-in profiler to measure just JIT compilation times.
5581
5582 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5583
5584         * threadpool.c: the epollfd might be closed by another thread at
5585         any time, so ignore EBADF at treat it as a "we're closing" sign.
5586
5587 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5588
5589         * threadpool.c: release the semaphores with a count equals to the number
5590         of working threads in both IO and regular pools. Fixed typo that messed
5591         up the count of IO pool threads. Don't initialize the pipe handles if
5592         we're using epoll.
5593
5594 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5595
5596         * threadpool.c: some systems don't like a NULL when deleting the socket
5597         from epoll.
5598
5599 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5600
5601         * threadpool.c: fix semaphore allocation.
5602
5603 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5604
5605         * threadpool.c: added epoll() based implementation for asynchronous IO
5606         that is used instead of the default poll() when available.
5607         It can be disabled by setting MONO_DISABLE_AIO.
5608
5609 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5610
5611         * threadpool.c: windows needs 'closesocket' and instead of returning
5612         0 when the stream is closed while in select, it returns -1. Fixes bug
5613         #74573.
5614
5615 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
5616
5617         * class.c (class_compute_field_layout): Fix the regression caused by
5618         the previous try.
5619
5620 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5621
5622         * threadpool.c: separate pool for socket async. IO.
5623         * threadpool.h: mono_max_worker_threads is not a global any more.
5624
5625 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
5626
5627         * class.c (class_compute_field_layout): Fix #74549.
5628
5629 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5630
5631         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
5632         use 2 connected sockets instead.
5633
5634 2005-04-08  Miguel de Icaza  <miguel@novell.com>
5635
5636         * mono-config.c: Add new entry point for mkbundle
5637         mono_config_parse_memory. 
5638
5639 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5640
5641         * threadpool.c: removed another unused function.
5642
5643 2005-04-08  Ankit Jain  <radical@corewars.org>
5644
5645         * reflection.c (get_default_param_value_blobs): Add 'types'
5646         parameter to get the types encoded in the constant table.
5647         (mono_param_get_objects): Use the type from the constant table,
5648         not the type of the parameter, when creating default values.
5649         Handle null default values correctly.
5650
5651 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5652
5653         * file-io.c:
5654         * file-io.h:
5655         * threadpool.c:
5656         * threadpool.h:
5657         * icall.c:
5658         * socket-io.c: removed dead code for async IO.
5659
5660 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5661
5662         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
5663
5664         * threadpool.c: intercept socket async. calls and pass them to a thread
5665         that is polling and dispatching the job items to the threadpool as
5666         socket become ready. Fixes bugs #71217, #71933.
5667
5668         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
5669         between char and short/ushort arrays.
5670
5671         * socket-io.c: remove dead code.
5672
5673 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
5674
5675         * locales.c,
5676           icall.c : removed InternalToUpper_Comp() and
5677           InternalToLower_Comp().
5678
5679 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
5680
5681         * char-conversions.h : The tables were incorrectly generated. Should
5682           be generated against invariant culture.
5683
5684 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
5685
5686         * object.c (mono_runtime_invoke_array): Fix return value when 
5687         passing pre-created valuetype objects to ctors.
5688
5689         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
5690         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
5691         Fixes #74338.
5692
5693 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
5694
5695         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
5696         only used with --security and hides the wrong corlib version error.
5697
5698 2005-03-30  Joshua Tauberer  <tauberer@for.net>
5699
5700         * class.c: Changed mono_class_name_from_token so that types
5701         outside of a namespace don't have an initial period.  Improved
5702         the g_warning message used in _mono_class_get when loading
5703         fails.
5704         * assembly.c: In mono_assembly_load_reference, when an assembly
5705         can't be found, "No such file or directory" is misleading and
5706         unhelpful because a few paths were checked for the presence of
5707         the assembly.  When that happens (ENOENT), display a nicer
5708         message indicating the directories that were searched.  In all
5709         cases, the warning is made easier to read for non-hackers.
5710
5711 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
5712
5713         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
5714         project/solution.
5715         * appdomain.h|domain.c: Removed inline from functions.
5716         * appdomain.c: Reduced warnings when compiling on windows.
5717         * icall.c: Fixed output_debug declaration to gunichar2*.
5718         * mono-config.c: Reduced warnings when compiling on windows.
5719         * rand.c: Added missing "windows.h". Added missing return value.
5720         * rawbuffer.c: Added missing winsock2.h for windows.
5721         * sysmath.h: Added mono-compiler.h header to allow/ease 
5722         compilation with non-GCC compilers.
5723         * threads.c: Fixed declarations to compile with VS.NET C compiler.
5724         Removed cast warnings.
5725
5726         Adapted from the work of J Lothian (for VC6).
5727
5728 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
5729
5730         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
5731         from default_path.
5732
5733 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
5734
5735         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
5736         the 2.0 profile.
5737
5738 2005-03-27  Raja R Harinath  <harinath@gmail.com>
5739
5740         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
5741         has to be in $(exec_prefix).  $(prefix) is for arch-independent
5742         stuff, and it would probably use $(prefix)/share rather than
5743         $(prefix)/lib.
5744
5745 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5746
5747         * console-io.c: added 2 includes that might be missing.
5748
5749 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
5750
5751         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
5752         profile.
5753
5754         * reflection.c (create_custom_attr): Allocate the params array using
5755         alloca so it gets GC tracking.
5756
5757 2005-03-23  Chris Toshok  <toshok@ximian.com>
5758
5759         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
5760         out some spew.
5761
5762 2005-03-24  Raja R Harinath  <rharinath@novell.com>
5763
5764         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
5765         changes to pick up any changes in prefix, etc.
5766
5767 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
5768
5769         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
5770         
5771         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
5772         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
5773
5774 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
5775
5776         * class-internals.h object-internals.h class.c reflection.c: Extend the
5777         mono_lookup_dynamic_token () function to return the class of the
5778         token as well. 
5779
5780         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
5781         well. Fixes #73848.
5782
5783 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
5784
5785         * security-manager.c: Skip inheritance checks for intra-corlib
5786         class inheritance and method overrides. This skips a lot of checks
5787         and (anyway) permissions cannot work until corlib is loaded.
5788
5789 2005-03-23  Martin Baulig  <martin@ximian.com>
5790
5791         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
5792         MONO_TYPE_GENERICINST.  
5793
5794 2005-03-23  Martin Baulig  <martin@ximian.com>
5795
5796         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
5797
5798 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
5799
5800         * class.c: added locking comments to some functions.
5801         Cache the interface offsets arrays (saves about 20 KB
5802         of runtime memory in a typical app).
5803         Reduce the time overhead in mono_class_setup_supertypes ().
5804
5805 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
5806
5807         * icall.c: speedup and fix leaks in GetMethodsByName and
5808         GetPropertiesByName.
5809
5810 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
5811
5812         * reflection.c: some locking fixes.
5813
5814 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
5815
5816         * metadata.c: added missing break in case statement.
5817
5818 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
5819
5820         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
5821         typedbyref return values. Fixes #73941.
5822
5823 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
5824
5825         * security-manager.c|h: Added demandunmanaged method and 
5826         suppressunmanagedcodesecurity class to MonoSecurityManager.
5827         Renamed aptc class to allowpartiallytrustedcallers.
5828
5829 2005-03-17  Martin Baulig  <martin@ximian.com>
5830
5831         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
5832
5833 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5834
5835         * file-io.c: disabled file async. IO using aio_*. It uses the
5836         threadpool now. Workaround for bug #73718.
5837
5838 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
5839
5840         * assembly.h, mono-config.c: added code to deal with bundled configs
5841         for bundled assemblies.
5842
5843 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
5844
5845         * *.c, private.h: cleanup, removing old private.h header file.
5846
5847 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
5848
5849         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
5850         and throw_on_unmappable_char attributes.
5851
5852 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
5853
5854         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
5855         _ProcessName_internal.
5856
5857 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
5858
5859         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
5860         #73631.
5861
5862         * icall.c threads.c threads-types.h: Remove slothash icalls as they
5863         are no longer used.
5864
5865 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
5866
5867         * object.c (compute_class_bitmap): Add support for generics. Fixes
5868         #73527.
5869
5870 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
5871
5872         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
5873
5874 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5875
5876         * filewatcher.c: commented out the code for windows watcher, as we don't
5877         use it (we use the managed implementation instead).
5878
5879 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
5880
5881         * object-internals.h (MonoThread): Remove 'unused1' field.
5882
5883         * appdomain.c: Bump corlib version.
5884
5885         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
5886
5887         * reflection.c (mono_reflection_create_runtime_class): Remove the
5888         AssemblyBuilder.Save optimization since it causes too many problems.
5889
5890 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
5891
5892         * exception.c|h: Added mono_get_exception_reflection_type_load to
5893         create a ReflectionTypeLoadException object.
5894         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
5895         to return NULL is a InheritanceDemand fails during reflection. Updated
5896         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
5897         ReflectionTypeLoadException if an InheritanceDemand fails during 
5898         reflection. Added icall mapping for GetLinkDemandSecurity.
5899         * security-manager.c|h: Added ves_icall_System_Security_
5900         SecurityManager_GetLinkDemandSecurity internal call to return the
5901         class and methods permissions set for a LinkDemand. Removed unused
5902         fields in MonoSecurityManager.
5903
5904 2005-03-10  Martin Baulig  <martin@ximian.com>
5905
5906         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
5907         it's a generic instance.
5908
5909 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
5910
5911         * reflection.c (mono_get_object_from_blob): Applied patch from
5912         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
5913
5914         * class.c (mono_class_is_assignable_from): Another try at fixing 
5915         #73469 without breaking anything.
5916
5917 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
5918
5919         * class.c: (mono_class_is_assignable_from): Revert the last changes
5920         since they don't work with generics.
5921         
5922         * class.c (mono_class_is_assignable_from): Fix build bustage.
5923
5924         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
5925         the managed IsAssignableFrom method. Fixes #73469.
5926
5927         * reflection.c (mono_reflection_call_is_assignable_from): New helper
5928         function.
5929
5930 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
5931
5932         * object.c (mono_load_remote_field_new): Fix returning uninitialized
5933         memory when the remoting callback does not sets the out arguments.
5934         Fixes #73007.
5935
5936         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
5937         by mistake.
5938
5939         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
5940
5941         * object-internals.h (MonoStackFrame): Sync with managed object layout.
5942
5943         * appdomain.c: Bump corlib version.
5944
5945 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
5946
5947         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
5948         function.
5949
5950         * threads.c (mono_thread_attach): Detect threads which are not started
5951         by the GC pthread wrappers.
5952
5953 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
5954
5955         * icall.c: Added new icall for RNG.
5956         * rand.c|h: Added new icall to open the RNG. This allows to share a 
5957         single handle on Linux to access /dev/urandom and fix #73183.
5958
5959 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
5960
5961         * object.c: setting the new vtable in a transparent proxy object must
5962         not change the GC descriptor.
5963
5964 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
5965
5966         * object.c: fixed compilation without GCJ support.
5967         * reflection.c: for runtime-created types ensure klass->has_references
5968         is correct (bug #73215).
5969
5970 2005-03-02  Martin Baulig  <martin@ximian.com>
5971
5972         * class.c (mono_class_is_assignable_from): Make this work if
5973         `oklass' is a generic instance; fixes #72831.
5974
5975 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
5976
5977         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
5978         with hasthis set.
5979         
5980         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
5981
5982         * marshal.c: Reorganize native->managed marshalling code to also use
5983         the emit_marshal_... functions.
5984
5985 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
5986
5987         * object.c: typed allocs have issues with bitmap sizes > 30,
5988         so check for max_set >= 30.
5989
5990 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
5991
5992         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
5993         managed code. Fixes #73012.
5994
5995         * metadata.h (MonoMarshalSpec): Add elem_mult field.
5996
5997         * metadata.c reflection.c: Load/Emit elem_mult as well.
5998         
5999         * metadata.h (MonoMarshalSpec): Add comment.
6000
6001         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
6002
6003         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
6004         num_elem to -1 if not given.
6005
6006         * object-internals.h (MonoReflectionMarshal): Add has_size field.
6007
6008         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
6009         given values.
6010
6011 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
6012
6013         * null-gc.c (mono_gc_free_fixed): Was not compilable.
6014
6015 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
6016
6017         * reflection.c (encode_marshal_blob): Encode param_num field as well.
6018
6019         * object-internals.h (MonoReflectionMarshal): Add param_num field.
6020
6021 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6022
6023         * object.c: generalized the reference bitmap creation
6024         and added hooks for the new GC.
6025         * class-internals.c: removed the gc_bitmap field from MonoClass.
6026
6027 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6028
6029         * domain.c: help the compiler to produce better code
6030         in mono_jit_info_table_find ().
6031
6032 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6033
6034         * object.c: make all allocations look typed.
6035
6036 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6037
6038         * socket-io.c: load Mono.Posix if it's not loaded already
6039         (fixes bug#73033).
6040
6041 2005-02-24  Martin Baulig  <martin@ximian.com>
6042
6043         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
6044         * reflection.c (dup_type): Likewise.
6045
6046 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
6047
6048         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
6049         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
6050
6051 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6052
6053         * domain.c, threads.c, object-internals.h: make the critical thread
6054         local vars use the fast access mode (even when we're compiled in
6055         a lib). Provide accessors to be used by the jit during codegen.
6056
6057 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6058
6059         * appdomain.c: Changed hook functios behavior to include
6060         support for the reflection only assemblies. Some icalls were changed
6061         to support the mentioned assemblies too. Signatures of static methods
6062         try_assembly_resolve and real_load now have an additional parameter:
6063         refonly.
6064
6065         * assembly.c: General changes to mono_assembly_ methods to support
6066         reflection only api. Functions mono_assembly_open, mono_assembly_load,
6067         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
6068         suffix, to support an additional gbool parameter to specify whether
6069         the assembli is reflection only or not. Created some new hook functions 
6070         to add support for reflection only assemblies. Signatures of static 
6071         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
6072         have now an additional parameter: refonly.
6073
6074         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
6075         indicating whether the assembly is reflection only or not.
6076
6077         * exception.c: Add mono_get_exception_invalid_operation.
6078
6079         * icall.c: Throw an InvalidOperationException when trying to invoke
6080         a property/method/event, or trying to set/get the value of a field.
6081         Also add an icall to retrieve the ref_only flag to the
6082         MonoReflectionAssembly.
6083
6084 2005-02-23  Chris Toshok  <toshok@ximian.com>
6085
6086         Part of fix for #72827.
6087         * mono-debug.c (mono_debug_add_method): add lexical block data to
6088         the info we write.  Kind of a hack at the moment - we copy the
6089         lexical block info from the MonoDebugMethodInfo to the
6090         MonoDebugMethodJitInfo here, before writing it.
6091         (mono_debug_read_method): read the lexical block info.
6092
6093         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
6094
6095         * debug-mono-symfile.h: add lexical block support.
6096
6097         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
6098         support.
6099
6100 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
6101
6102         * loader.c (mono_lookup_pinvoke_call): Fix warning.
6103
6104         * object.c (mono_runtime_free_method): Call mono_free_method () and
6105         put the TODOs there.
6106
6107         * loader.c (mono_free_method): Free up most memory allocated for 
6108         dynamic methods.
6109
6110 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
6111
6112         * reflection.c: properly flag a Type argument to a
6113         named custom attr value (bug #72248).
6114
6115 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6116
6117         * reflection.c: reduce code duplication in named custom
6118         attribute encoding.
6119
6120 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
6121
6122         * reflection.c: properly encode custom attrs of type object
6123         (bug #72649).
6124
6125 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
6126
6127         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
6128
6129 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
6130
6131         * socket-io.c: load System.dll if it's not loaded already
6132         (bug #72850 and #70477).
6133
6134 2005-02-21  Martin Baulig  <martin@ximian.com>
6135
6136         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
6137         generic instances.
6138
6139 2005-02-21  Martin Baulig  <martin@ximian.com>
6140
6141         * reflection.c (mono_image_build_metadata): We also need to
6142         "fixup" the MethodImpl table after we computed the final method
6143         indices.  Call fixup_methodimpl() to do that.
6144         (fixup_methodimpl): New private method.
6145
6146 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6147
6148         * assembly.c: special case mscorlib.dll (bug#72536),
6149         patch from Carlos Alberto Cortez.
6150
6151 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
6152
6153         * threads-types.h threads.c: Fix build bustage.
6154
6155         * threads.c: Use a union for long<->double conversions.
6156
6157         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
6158         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
6159
6160         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
6161         containing the checkpoint call with NOT_TAKEN.
6162         
6163         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
6164         checkpoint before pushing the arguments, so they won't have to be
6165         spilled to stack.
6166
6167 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6168
6169         * domain.c, assembly.c, domain-internals.h: make some data
6170         const and relocation-free.
6171
6172 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
6173
6174         * object.c, appdomain.c, class-internals.h: introduce the
6175         MonoClassRuntimeInfo structure to hold the info needed to
6176         use a class at runtime. Made mono_class_vtable() lock-free
6177         for all the appdomains.
6178
6179 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
6180
6181         * metadata-internals.h, image.c: introduce a per-image mempool to
6182         be used for memory that has the same lifetime as the image.
6183
6184 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
6185
6186         * domain.c: In mono_init_internal(), instead of selecting the first
6187         runtime version supported by an executable, get a list of all
6188         supported versions and select the one for which an mscorlib exists
6189         (since even if the runtime supports a given version, it doesn't mean
6190         that the framework for that version is installed).
6191         Modified get_runtimes_from_exe to support this behavior.
6192         In supported_runtimes, added information about additional system
6193         assembly versions.
6194         
6195         * assembly.c: Added support for more than one system assembly version
6196         per runtime version. Updated the assembly list.
6197         In mono_assembly_remap_version, removed the initial version check,
6198         since we don't know to which version we need to compare until we
6199         get the version set on which the assembly is based.
6200         Moved the code for loading corlib into the new method
6201         mono_assembly_load_corlib(), so it can be used by the initialization
6202         code.
6203         
6204         * domain-internals.h: Updated data structures and added declaration
6205         for mono_assembly_load_corlib.
6206
6207 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
6208
6209         * reflection.c (resolve_object): Fix the creation of the signature in 
6210         the SignatureHelper case.
6211
6212         * assembly.c (mono_assembly_remap_version): Fix binary search.
6213         
6214 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
6215  
6216         * class.c: Added inheritance check when a method is overloaded (from a
6217         virtual method or when implementing an interface) and when a class is
6218         inherited. Added functions to set a failure for a class and to 
6219         retreive the exception from a failure.
6220         * class-internals.h: Added fields to MonoClass to keep the exception
6221         information status for inheritance (or other exceptions) to be thrown
6222         later (i.e. not at load time).
6223         * object.c: Throw the inheritance SecurityException when a type is to 
6224         be created with either class or method inheritance violations.
6225         * reflection.c|h: Fix when getting declsec from a class. Removed 
6226         unrequired code for class. Improved sanity in parameter naming.
6227         * security-manager.c|h: Added functions to check for class and method
6228         inheritance.
6229
6230 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
6231
6232         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
6233         and has_finalize in dynamic types as well.
6234
6235 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
6236
6237         * culture-info-table.h : fixed currency format for en-GB (and so on).
6238
6239 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
6240
6241         * gc.c: ensure the GC handles never have 0 as a value.
6242
6243 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
6244
6245         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
6246         a pointer to a struct to unmanaged code. Fixes #72625.
6247
6248 2005-02-16  Martin Baulig  <martin@ximian.com>
6249
6250         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
6251
6252 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
6253
6254         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
6255
6256 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
6257
6258         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
6259
6260         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
6261         UnmanagedFunctionPointerAttribute, use it for determining calling convention
6262         etc. Fixes #71471.
6263
6264         * reflection.c (mono_custom_attrs_get_attr): New helper function.
6265
6266         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
6267
6268 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
6269
6270         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
6271         changes to make the current context a field in MonoThread.
6272
6273 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
6274
6275         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
6276         the last change.
6277         
6278         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
6279         extracted from mono_marshal_get_native_wrapper.
6280
6281         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
6282         to create wrappers around native functions.
6283
6284         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
6285         delegates for arbitrary function pointers. Fixes #71472.
6286
6287 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
6288
6289         * threads.c: cleaned up the code a little.
6290
6291 2005-02-15  Martin Baulig  <martin@ximian.com>
6292
6293         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
6294         the data table.
6295
6296         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
6297         allocate larger chunks if needed.
6298
6299 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
6300
6301         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
6302         in by mistake.
6303
6304 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
6305
6306         * domain.c: keep the domains in an array and ensure the domain ids
6307         are kept small, so they can be used as indexes to domain-specific data
6308         with a small memory overhead.
6309
6310 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
6311
6312         * icall.c: Handle byref types in Type icalls. Fixes #72544.
6313
6314 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
6315
6316         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
6317
6318 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
6319
6320         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
6321
6322         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
6323         values.
6324
6325         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
6326         
6327 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
6328
6329         * domain-internals.h: add the hashtable here.
6330
6331         * class-internals.h: Remove `info' from MonoMethod
6332
6333         * domain.c: Add a new hashtable, jit_trampoline_hash
6334
6335 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
6336
6337         * object.c: don't set the value of static fields
6338         (fixes bug#72494).
6339
6340 2005-02-11  Martin Baulig  <martin@ximian.com>
6341
6342         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
6343         (mono_debug_add_method): Silently ignore the method if it's too big.
6344         (mono_debug_add_type): Likewise.
6345
6346 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
6347
6348         * threads.c, appdomain.c: remove #ifdefs from the code.
6349
6350 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
6351
6352         * metadata-internals.h: Added flags to MonoAssembly to cache the most
6353         common security informations. This allows us to stay in unmanaged code
6354         when doing LinkDemand and it's special cases (except for the first 
6355         time for initialization). The flags a very much used with --security.
6356         * reflection.c|h: Added code to get declarative security attributes 
6357         for LinkDemand and InheritanceDemand. This required to refactor the
6358         existing code for Demand.
6359         * security-manager.c|h: Added new method fields for the special cases
6360         of LinkDemand.
6361
6362 2005-02-10  Martin Baulig  <martin@ximian.com>
6363
6364         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
6365         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
6366
6367 2005-02-10  Martin Baulig  <martin@ximian.com>
6368
6369         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
6370         debugging code; this is almost a complete rewrite.
6371
6372         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
6373
6374 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6375
6376         * domain.c, object.h: expose mono_string_equal () and 
6377         mono_string_hash ().
6378         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
6379         it's implemented in managed code.
6380
6381 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6382
6383         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
6384         lo leak objects between appdomains.
6385
6386 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6387
6388         * assembly.c: old compilers compilation fix from 
6389         robertj@gmx.net (Robert Jordan).
6390
6391 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
6392
6393         * class-internals.h: Little reminder for the future.
6394
6395         * debug-helpers.c: Fix up wrapper_type_names
6396
6397 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6398
6399         * image.c, metadata-internals.h: when loading an image from a file,
6400         mmap all of it and use the same codepaths as when using a
6401         in-memory image: the code is simpler and we use less memory
6402         (both writable and readonly).
6403
6404 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
6405
6406         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
6407         API to alloc runtime data structures that need to be tracked by the
6408         GC and contain pointers.
6409         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
6410         make the code more readable and eventually use a different GC.
6411
6412 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
6413
6414         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
6415         for out arguments.
6416         
6417 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
6418
6419         * object.c: In release_type_locks(), don't release the cctor lock
6420         if it has already been released. This fixes a crash in the
6421         thread5 test.
6422
6423 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6424
6425         * gc.c, marshal.c, icall.c: register a delegate for finalization
6426         only when the native function pointer has been allocated for it.
6427
6428 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6429
6430         * object.c: cleaned up some code, allocate objects that are
6431         pointer free with the atomic malloc variant. Allocate memory
6432         for static data from the mempool if it's pointer-free.
6433         Allocate the bounds array at the end of the array data, when needed.
6434         * object-internals.h, object.h: move a private function in a private
6435         header.
6436         * class.c: handle missing case in tracking references in fields.
6437
6438 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
6439
6440         * class.c, class-internals.h: keep track if a type has
6441         reference fields in either the instance or static fields.
6442
6443 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
6444
6445         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
6446         and renamed to MonoRuntimeInfo. Added fields to store the expected
6447         framework assembly version. Changed mono_get_framework_version and
6448         mono_get_runtime_version for a single mono_get_runtime_info method.
6449         
6450         * assembly.c: Added method to remap system assembly versions to the
6451         current executing runtime version. Removed old mapping code.
6452         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
6453         
6454         * icall.c, reflection.c: Track api changes.
6455
6456 2005-02-06  Miguel de Icaza  <miguel@novell.com>
6457
6458         * loader.c (method_from_memberref): Improve error reporting,
6459         produce the class name instead of the typeref/typedef index. 
6460
6461 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
6462
6463         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
6464
6465 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6466
6467         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
6468         stdcall and charset name mangling.  Reorganize the code and add
6469         some tracing stuff.
6470
6471 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
6472
6473         * monodiet.c: More iters!
6474
6475         * marshal.c: Iter usage.
6476
6477         * icall.c: Iter usage.
6478
6479         * object.c: Use iters.
6480
6481         * debug-helpers.c: More iters
6482
6483 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6484
6485         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
6486         under win32.
6487
6488 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
6489
6490         * mono-debug-debugger.c: use iters
6491
6492         * class.c, class-internals.h: mono_class_setup_events is static
6493         now
6494
6495         * All callers: use iters
6496
6497 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6498
6499         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
6500         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
6501
6502 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
6503
6504         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
6505
6506         * marshal.h: Add prototypes for ldfld/stfld_remote.
6507
6508         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
6509         this is called during startup.
6510         
6511 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
6512
6513         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
6514         MonoThreadsSync struct private in monitor.c. Changed the way
6515         MonoThreadsSync is allocated so it's faster and there is no
6516         need to keep track of it with a finalizer and it uses less memory.
6517         This also finally allows us to allocate mono objects as ptrfree when
6518         there are no reference fields.
6519
6520 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
6521
6522         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
6523         disappearing link to the GC interface and use them to simplify
6524         the gchandles code.
6525
6526 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
6527
6528         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
6529         stfld_remote which call mono_load/store_field_new. This allows methods
6530         calling ldfld/stfld wrappers to be AOTed.
6531
6532         * console-io.c: Include sys/filio.h under solaris.
6533         
6534         * console-io.c: Include curses.h if needed correctly.
6535
6536 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
6537         
6538         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
6539         method->klass as well.
6540
6541         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
6542
6543         * class.c (mono_class_init): Switch on lazy initialization of 
6544         methods.
6545
6546         * class.c (mono_class_get_finalizer): Handle the case when the 
6547         finalizer is inherited.
6548
6549 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6550
6551         * console-io.c: <curses.h> is needed by term.h on solaris.
6552
6553 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
6554
6555         * icall.c, class-internals.h, monodiet.c, class.c: Remove
6556         mono_class_setup_properties where possible. Remove this ftn from
6557         the header file, and make it static.
6558
6559 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
6560
6561         * loader.c: Add missing setup_... call.
6562
6563         * class.c: Add missing setup_... calls.
6564
6565         * class.c (mono_class_init): Switch on lazy initialization of 
6566         the generic vtable.
6567         
6568         * class.c (mono_class_init): Fix generics broken by the recent changes.
6569
6570         * monodiet.c (handle_type): Add missing setup_... calls.
6571
6572         * class.c: Back out garbage in previous patch.
6573         
6574         * class.c: Add missing setup_... calls.
6575
6576         * class.c (mono_class_get_method_from_name_flags): Avoid calling
6577         mono_class_setup_methods () if possible.
6578
6579         * class-internals.h (MonoClass): Add 'has_cctor' flag.
6580
6581         * class-internals.h (MonoCachedClassInfo): New structure.
6582
6583         * class.c: Initialize properties and events fields of MonoClass lazily.
6584
6585         * class.c: Add infrastructure for lazily initializing the methods and
6586         vtable fields of MonoClass. Not yet used.
6587
6588         * class.c (mono_class_get_finalizer): New helper function.
6589
6590         * class.c: Add infrastructure for loading some class related data from
6591         an AOT file.
6592
6593         * object.c: Add infrastructure for initializing the vtable from data
6594         in the AOT file.
6595
6596         * gc.c (run_finalize): Use mono_class_get_finalizer ().
6597
6598         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
6599         appropriate initialization function before accessing parts of the
6600         MonoClass structure.
6601
6602         * marshal.c: Fix warnings.
6603         
6604         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
6605
6606         * mono-debug-debugger.c (get_exception_message): Use 
6607         mono_class_get_method_from_name_flags ().
6608
6609 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
6610
6611         * reflection.c, appdomain.c: Replace a few manual searches that
6612         Zoltan missed. (Paolo approved this part of my initial patch).
6613
6614 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
6615
6616         * profiler.c: disable recording statistical events at report time.
6617
6618 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6619
6620         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
6621         to byteswap arrays of enum values, too (bug #72080).
6622
6623 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
6624
6625         * appdomain.c (set_domain_search_path): Allow this to be called if
6626         domain->setup is not yet set.
6627
6628         * loader.c (mono_method_get_index): New helper function.
6629
6630         * loader.c reflection.c: Use mono_method_get_index ().
6631
6632         * class.c (mono_class_get_method_from_name_flags): New helper method.
6633
6634         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
6635         this.
6636
6637         * class.c (mono_class_get_cctor): New helper method.
6638
6639         * string-icalls.c object.c class.c marshal.c reflection.c: Use
6640         mono_class_get_method () to look up methods.
6641
6642 2005-02-01  Miguel de Icaza  <miguel@novell.com>
6643
6644         * console-io.c: Fix the build, this should work on Windows.
6645
6646 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
6647
6648         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
6649         be set to null to keep things valid
6650
6651 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6652
6653         * icall.c: added Console 2.0 icalls.
6654         * Makefile.am: added console-io.[ch]
6655         * console-io.[ch]: internal calls for Console 2.0 API.
6656
6657 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6658
6659         * class.c: make sure we consider all the interfaces
6660         when calculating max_interface_id (bug found by
6661         Jeroen Frijters running ikvm).
6662
6663 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
6664
6665         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
6666         valuetype fields to null.
6667
6668         * object.c (set_value): Ditto. Fixes #71669.    
6669
6670 2005-01-31  Martin Baulig  <martin@ximian.com>
6671
6672         * metadata.c (mono_metadata_has_generic_params): New public
6673         function; checks whether something is a generic method.
6674
6675 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
6676
6677         * appdomain.c: fix infinite recursion when adding assemblies.
6678
6679 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
6680
6681         * object.c: Fix small typo to return all items for Environment.
6682         GetCommandLineArgs.
6683
6684 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6685
6686         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
6687         reflection.c: more domain and assembly-unload related fixes
6688         and memory leaks plugs.
6689
6690 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
6691
6692         * 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.
6693
6694 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
6695
6696         * loader.c (mono_method_signature): Make this method lazy
6697         (mono_get_method_from_token): Don't computate the signature here.
6698
6699         Doing this saves quite a bit of memory. I got 90 kb on starting up
6700         monodoc. It should also save some disk reads on startup.
6701
6702         * *: MonoMethod->signature might be NULL now. You *MUST* use
6703         mono_method_signature.
6704
6705 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
6706
6707         * object.c (mono_runtime_get_main_args): Return an array from the
6708         current domain here. Fixes #71938.
6709
6710 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
6711
6712         * monitor.c: formatting changes to comply with the
6713         mono coding style and remove #ifdefs from the code.
6714
6715 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6716
6717         * metadata.c, private.h: remove some unneeded data
6718         and use a more compact representation for table schemas.
6719
6720 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
6721
6722         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
6723         to get a better distribution in hash tables.
6724         * *.c: use mono_aligned_addr_hash() where appropriate.
6725         * assembly.c: make var static.
6726
6727 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
6728
6729         * domain-internals.h: Put MonoJitInfo on a diet.
6730
6731         * domain.c: Fix a warning.
6732
6733 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6734
6735         * gc.c: rework the gc handles code to reuse handles
6736         when freed.
6737
6738 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
6739
6740         * domain.c: fixed long standing bug in mono_string_equal() which
6741         was brought to light with the ldstr changes.
6742
6743 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
6744
6745         * reflection.c: Remove warning by adding missing include for marshal.h
6746
6747 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6748
6749         * domain.c, object.c: change the ldstr_table to hold
6750         MonoString* as keys: makes the runtime isinterned lookup
6751         faster and simplifies memory management.
6752
6753 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
6754  
6755         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
6756         possible to add imperative security checks before calling the icall.
6757         * reflection.c: Return security attributes on the original MonoMethod
6758         (and not the wrapped one). This fix permissions on icalls.
6759
6760 2005-01-25  Dick Porter  <dick@ximian.com>
6761
6762         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
6763         the check for mktime() support actually test the mktime() return
6764         value.  "Fixes" bug 71682, though the output is still different to
6765         MS.
6766
6767 2005-01-25  Martin Baulig  <martin@ximian.com>
6768
6769         * class.c (mono_class_is_assignable_from): Make this work for
6770         generic instances.
6771
6772 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
6773
6774         * marshal.c (mono_string_utf8_to_builder)
6775         (mono_string_builder_to_utf16): We might not have ownership of the
6776         string. In thise case, we need to create a new buffer.
6777
6778         * object-internals.h (mono_stringbuilder_capacity): sb->str might
6779         be null, in which case, use the default capacity.
6780
6781 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6782
6783         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
6784         GC events to the profiler.
6785
6786 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6787
6788         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
6789         if you don't want the GC to run.
6790
6791 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
6792
6793         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
6794         start providing a GC API and keeping different implementations in
6795         their own file.
6796         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
6797
6798 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
6799
6800         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
6801         mmap rather than allocating a huge buffer.
6802         (mono_debug_close_mono_symbol_file): Free the buffer allocated
6803         above.
6804
6805 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
6806
6807         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
6808         and CheckExecutionRights.
6809         * reflection.c|h: Keep the index of the declarative security to be 
6810         used, instead of the pointer, when AOT compiler is used. Also add 
6811         class initialization when requesting demands.
6812         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
6813         CheckExecutionRights. Both properties are now FALSE by default, and
6814         unmodifiable, unless the --security option is used.
6815
6816 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6817
6818         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
6819         reflection.c: properly refcount images and assemblies, many leaks fixed.
6820
6821 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6822
6823         * threadpool.c: increase the timeout for threads in the thread pool to
6824         10s.  Fixes bug #67159.
6825
6826 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
6827
6828         * class-internals.h: Sun's compiler insists on explicit
6829         signed on bit fields to handle then correctly.
6830
6831 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
6832
6833         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
6834         Make the size of the array fit only the number of invalid path
6835         chars that we have.
6836
6837         * class.c (_mono_class_get): Improve the error reporting when a
6838         class referenced is not found, to assist debugging. 
6839
6840 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
6841
6842         * threads.c: fix off-by-one error.
6843         * domain.c: free data allocated in the domain.
6844
6845 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
6846
6847         * reflection.c (mono_method_body_get_object): Fill out exception info
6848         as well.
6849
6850         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
6851         structure.
6852         
6853 2005-01-19  Martin Baulig  <martin@ximian.com>
6854
6855         * loader.c (mono_get_method_constrained): Make this work again.
6856
6857 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
6858
6859         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
6860         guint16 to match the managed side.
6861
6862         * reflection.c (mono_reflection_body_get_object): Fill out local
6863         variables array.
6864
6865         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
6866         as well.
6867
6868         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
6869         'local_var_sig_token'.
6870
6871 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
6872
6873         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
6874         System.Drawing.
6875
6876         * reflection.c (mono_method_body_get_object): Handle abstract and
6877         runtime methods.
6878
6879 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
6880
6881         * marshal.c, loader.c, class-internals.h, reflection.c:
6882         store the emthod data for a wrapper in an array instead of a list.
6883
6884 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
6885
6886         * marshal.c: change the code to allocate memory more
6887         conservatively for method wrappers.
6888
6889 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
6890
6891         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
6892         fields from MonoClass to the marshal info structure where they belong.
6893
6894 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6895
6896         * class.c, object.c, class-internals.h, marshal.c: rearrange
6897         some fields and tweak some types to lower memory usage.
6898
6899 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
6900
6901         * threads.c (signal_thread_state_change): Handle the case when the
6902         target thread is the current thread.
6903
6904         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
6905
6906         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
6907         emit_ptr_to_object_conv. 
6908
6909         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
6910         marshalling. Fixes #71352.
6911
6912 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
6913
6914         * metadata.h, blob.h: move table enum to blob.h so it can be included
6915         in any header.
6916         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
6917         cut the size of MonoImage/MonoDynamicImage.
6918
6919 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
6920
6921         * profiler.c (mono_profiler_install_simple): Fix default arguments.
6922
6923 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
6924
6925         * reflection.c, reflection.h, icall.c: add a function to check
6926         if an attribute type is defined for a metadata object.
6927
6928 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
6929
6930         * object-internals.h: Added some needed fields from StringBuilder class.
6931         * marshal.c: Set the maxCapacity when creating a StringBuilder.
6932
6933 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
6934
6935         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
6936         threads before shutting down the runtime.
6937
6938         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
6939
6940 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6941
6942         * object-internal.h, threads.c: implement stacksize and 
6943         parameterized thread start functionality (requires
6944         matching corlib). Marked broken code for later removal.
6945
6946 2005-01-12  Martin Baulig  <martin@ximian.com>
6947
6948         * class-internals.h (MonoGenericClass): Moved the `initialized'
6949         flag to MonoDynamicGenericClass, removed `init_pending'.
6950         (MonoGenericInst): Added `is_reference' flag.
6951
6952 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
6953
6954         * reflection.c (mono_image_create_pefile): Only set the pe_offset
6955         inside the MSDOS header. Fixes #71201.
6956
6957         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
6958         gc thread.
6959         (mono_domain_finalize): Ditto.
6960
6961 2005-01-12  Martin Baulig  <martin@ximian.com>
6962
6963         * class.c (mono_get_shared_generic_class): Use the cache for
6964         non-dynamic generic classes.
6965
6966         * class-internals.h (mono_class_create_generic_2): Removed
6967         function prototype, this function is now static inside class.c.
6968
6969         * class.c (mono_class_create_generic_2): Made this static, only
6970         call it from mono_class_init() and mono_class_setup_parent().
6971         (collect_implemented_interfaces_aux): Call mono_class_init() on
6972         the interfaces we collect.
6973         (mono_class_setup_vtable): Call mono_class_init (class->parent).
6974
6975 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
6976
6977         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
6978         it a real thread handle.
6979
6980         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
6981         MonoJitExceptionInfo, since each catch clause needs its own variable.
6982         
6983 2005-01-11  Dick Porter  <dick@ximian.com>
6984
6985         * image.c (mono_pe_file_open): New variant on mono_image_open()
6986         that does not set up the CLI metadata; used for FileVersionInfo so
6987         it can get the data for windows binaries too.
6988         
6989         * process.c (process_read_string_block): Don't read off the end of
6990         the StringTable block.
6991
6992         These both fix bug 70766.
6993
6994 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
6995
6996         * gc.c: set some fields to NULL at GC cleanup time.
6997         * threads.c: if we quit the main thread, call exit ().
6998
6999 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7000
7001         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
7002
7003 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
7004
7005         * threads.h, threads.c, object.c: added accessor and settor for
7006         main_thread. Handle it specially when exiting from it: wait
7007         for other foreground threads to exit.
7008
7009 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
7010
7011         * process.c, verify.c: remove some bloat.
7012
7013 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
7014
7015         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
7016         the calling convention to cdecl under win32.
7017
7018 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
7019
7020         * object.c (mono_object_get_size): New function to get the size of
7021         an object instance.
7022
7023         * profiler.c (simple_allocation): Use above.
7024
7025 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
7026
7027         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
7028         ves_icall_System_AppDomain_getRootDomain (as it's not required to
7029         get an appdomain by it's id and we can't assume the root's id is 0).
7030         * domain-internals.h: Change the function prototype to match.
7031         * icall.c: Change the icall table for AppDomain.
7032
7033 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
7034
7035         * locales.c (string_invariant_compare_char): Only compute
7036         GUnicodeTypes in the case where we need them.  Test for ordinality
7037         first and return if so.
7038
7039         From the commit:
7040
7041                 /*
7042                  * FIXME: here we must use the information from c1type and c2type
7043                  * to find out the proper collation, even on the InvariantCulture, the
7044                  * sorting is not done by computing the unicode values, but their
7045                  * actual sort order.
7046                  */
7047
7048 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7049
7050         * loader.c: for P/Invoke methods, allow the "Internal" shared
7051         library name to refer to the calling process symbol namespace.
7052
7053 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
7054
7055         * Makefile.am: Add the security manager to the build.
7056         * security-manager.c|h: New. Initialization of the security manager.
7057
7058 2005-01-07  Dick Porter  <dick@ximian.com>
7059
7060         * threads.c: 
7061         * monitor.c: Update thread state during Monitor and WaitHandle
7062         waits.  Fixes bug 71031.
7063
7064 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
7065
7066         * reflection.c (property_encode_signature): Correctly handle when the
7067         property has no methods.
7068
7069 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
7070
7071         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
7072         
7073         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
7074         fields from mb, not rmb. Fixes #71017.
7075
7076         * marshal.c (emit_ptr_to_str_conv): Add support for 
7077         ByValTStr -> string conversion. Fixes #71015.
7078
7079         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
7080
7081         * mempool.c (mono_mempool_contains_addr): New helper function.
7082
7083 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
7084
7085         * metadata.c (mono_metadata_compute_size): Fix size calculation of
7086         HasSematics encoded fields.
7087         
7088         * metadata.c (mono_type_to_unmanaged): Improve error message for 
7089         invalid string marshalling.
7090
7091         * metadata.c: Fix warnings.
7092         
7093 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7094
7095         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
7096         profiler support.
7097
7098 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
7099
7100         * domain.c object.c domain-internals.h: Revert part of r38077 since the
7101         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
7102         tests.
7103
7104 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
7105
7106         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
7107         so methods containing these can be AOTed.
7108
7109 2005-01-03  Martin Baulig  <martin@ximian.com>
7110
7111         * loader.c (find_method): Removed the hack for generic instances.
7112         (method_from_memberref): If our parent is a generic instance, pass
7113         its generic type definition to find_method() and then inflate the
7114         method.
7115         (mono_get_method_constrained): Pass the generic type definition to
7116         find_method() and inflate the method later.
7117
7118         * class-internals.h (MonoStats): Added `generic_class_count'.
7119
7120         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
7121         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
7122
7123         * reflection.c (mono_custom_attrs_from_params): Don't ignore
7124         generic type definitions.
7125
7126 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
7127
7128         * loader.c icall.c: Fix warnings.
7129
7130 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
7131
7132         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
7133         blittable types. Fixes #70864.
7134
7135 2004-12-29  Martin Baulig  <martin@ximian.com>
7136
7137         * icall.c
7138         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
7139
7140         * reflection.c (mono_method_get_object): Create a
7141         "System.Reflection.MonoGenericMethod" for inflated methods; don't
7142         call mono_get_inflated_method().
7143
7144         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
7145
7146 2004-12-27  Martin Baulig  <martin@ximian.com>
7147
7148         * class-internals.h (MonoMethod): Added `is_inflated' flag.
7149         (MonoMethodInflated): Added `inflated' field.
7150
7151         * class.c (mono_class_inflate_generic_method): Don't really
7152         inflate the method here; just set the `is_inflated' flag in the
7153         MonoMethod.
7154         (mono_class_get_inflated_method): Actually inflate the method here
7155         if it's not already inflated; we use the MonoMethodInflated's new
7156         `inflated' field as a cache.
7157
7158 2004-12-26  Martin Baulig  <martin@ximian.com>
7159
7160         * class.c
7161         (inflate_generic_class): Moved some code out of inflate_generic_type().
7162         (mono_class_inflate_generic_method): If we're already inflated,
7163         inflate the context and use the declaring method; ie. make sure
7164         the declaring method of an inflated method is always the generic
7165         method definition.
7166         (mono_class_create_from_typedef): Create
7167         `class->generic_container->context->gclass'.
7168
7169 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
7170
7171         * metadata-internals.h, marshal.c, reflection.c: More
7172         MonoGHashTable->GHashTable.
7173
7174         * domain-internals.h, class.c: Change MonoGHashTable's into
7175         GHashTables for some cases where no gc stuff is used
7176
7177         All users: update apis
7178
7179 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
7180
7181         * metadata.c (builtin_types): Make this `const'. Makes this get
7182         put into the shareable section.
7183         (mono_metadata_init): Casts to make gcc happy.
7184
7185 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
7186
7187         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
7188
7189 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
7190
7191         * icall.c: Added an internal call to retrieve the position and length
7192         of assembly-level declarative security attributes (RequestMinimum, 
7193         RequestOptional and RequestRefuse). This is used by the Assembly class
7194         to re-create the corresponding permission sets.
7195
7196 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
7197
7198         * marshal.c: fix the stelemref wrapper to be type correct
7199         (and faster).
7200
7201 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
7202
7203         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
7204         to do key & 0x7fffffff. Hashtable already does this. It just
7205         results in longer code.
7206
7207 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
7208
7209         * appdomain.c: Bump corlib version.
7210         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
7211         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
7212         * reflection.c|h: Add functions to get declarative security infos
7213         (blob position and length) for assemblies, classes and methods.
7214
7215 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
7216
7217         * reflection.c: sort the constant table (bug #70693).
7218
7219 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
7220
7221         * object-internals.h, threads.c, domain.c: add accessors for
7222         the MonoThread and MonoDomain tls keys.
7223
7224 2004-12-18  Martin Baulig  <martin@ximian.com>
7225
7226         * class.c (inflate_generic_type): If we're inflating a generic
7227         instance, set `ngclass->context->container = context->container';
7228         ie. the container we inflated into.
7229
7230         * metadata.c (mono_metadata_parse_generic_param): Reflect above
7231         inflate_generic_type() changes.
7232
7233 2004-12-17  Martin Baulig  <martin@ximian.com>
7234
7235         * class-internals.h
7236         (MonoGenericClass): Replaced `MonoType *generic_type' with
7237         `MonoClass *generic_class'.  Removed `dynamic_info'; if
7238         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
7239         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
7240
7241 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
7242
7243         * exception.c (mono_exception_from_token): New helper function.
7244
7245 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
7246
7247         * assembly.c (mono_assembly_load_with_partial_name): Call 
7248         mono_assembly_loaded before invoking the preload hooks. Fixes
7249         #70564.
7250
7251         * object-internals.h (MonoThread): Change culture_info and 
7252         ui_culture_info into an array.
7253
7254         * threads.c: Cache culture info objects from more than one appdomain.
7255
7256         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
7257         current UI culture.
7258
7259 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
7260
7261         * threads.h threads.c appdomain.c: Clear the culture_info field of
7262         all threads during unloading if they point to an object in the dying
7263         appdomain.
7264
7265 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
7266
7267         * culture-info.h (TextInfoEntry): New struct
7268         * object-internals.h: sync with managed
7269         * locales.c: fill the `text_info_data' field
7270         * culture-info-tables.h: update
7271
7272 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
7273
7274         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
7275         collector.
7276
7277 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
7278
7279         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
7280         (ves_icall_ModuleBuilder_getMethodToken): Ditto
7281
7282 2004-12-12  Martin Baulig  <martin@ximian.com>
7283
7284         * mono-debug-debugger.c (write_type): If we're an enum and the
7285         builtin types have already been initialized, call mono_class_init().
7286
7287 2004-12-11  Martin Baulig  <martin@ximian.com>
7288
7289         * metadata.c (mono_metadata_load_generic_params): Added
7290         `MonoGenericContainer *parent_container' argument; automatically
7291         compute `container->is_method'; pass the correct owner to
7292         get_constraints().      
7293
7294         * reflection.c (compare_genericparam): Sort the GenericParam table
7295         according to increasing owners. 
7296
7297 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
7298
7299         * profiler.c: allow disabling the default profiler.
7300
7301 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
7302
7303         * decimal.c, icall.c: allow disabling System.Decimal support.
7304
7305 2004-12-09  Marek Safar <marek.safar@seznam.cz>
7306
7307         * reflection.c: Add support for null attribute arguments.
7308
7309 2004-12-09  Martin Baulig  <martin@ximian.com>
7310
7311         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
7312         names to get rid of compiler warnings.
7313
7314 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7315
7316         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
7317         mono_marshal_load_type_info (). Fixes #69625.
7318         (mono_marshal_get_ptr_to_struct): Likewise.
7319
7320 2004-12-08  Martin Baulig  <martin@ximian.com>
7321
7322         * mono-debug.h: Bumped version number to 47.
7323
7324         * mono-debug-debugger.c
7325         (mono_debugger_event_handler, mono_debugger_event): Take two
7326         guint64 arguments insteed of a gpointer and a guint32.  
7327
7328 2004-12-08  Martin Baulig  <martin@ximian.com>
7329
7330         * debug-mono-symfile.h
7331         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
7332         `address' to `native_offset'.
7333
7334 2004-12-08  Martin Baulig  <martin@ximian.com>
7335
7336         * class.c (mono_class_create_from_typespec): Only inflate if we
7337         either have `context->gclass' or `context->gmethod'.
7338
7339 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7340
7341         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
7342
7343         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
7344
7345         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
7346
7347         * reflection.c (mono_assembly_get_object): Remove the workaround put
7348         in for the release.
7349         
7350         * appdomain.c: Use the corlib_internal field from MonoAssembly.
7351
7352         * appdomain.c: Bump corlib version.
7353
7354         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
7355         be visible in other appdomains.
7356
7357 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
7358
7359         * threads.c: Interlocked inc and dec for longs were messed up,
7360         use a KISS based impl for this. Fixes 70234
7361
7362 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
7363
7364         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
7365
7366 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
7367
7368         * icall.c: fix to follow policy not to allow struct
7369         arguments in icalls.
7370
7371 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7372
7373         * process.c: make the patch that handles spaces in file paths work
7374         on mono/windows too.
7375
7376 2004-12-06  Martin Baulig  <martin@ximian.com>
7377
7378         * class.c (mono_class_create_generic): Call
7379         mono_class_setup_supertypes() if we're dynamic.
7380         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
7381
7382 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
7383
7384         * object-internals.h: Add new fields to MonoThread.
7385
7386         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7387
7388         * icall.c threads-types.h threads.c: Add new icalls.
7389
7390         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
7391
7392         * object-internals.h (MonoReflectionAssembly): Sync object layout with
7393         managed side.
7394
7395         * appdomain.c: Bump corlib version.
7396
7397         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
7398         internal assemblies. Fixes #69181.
7399
7400 2004-12-05  Martin Baulig  <martin@ximian.com>
7401
7402         * class.c (mono_class_inflate_generic_signature): Make this a
7403         no-op if `context' is NULL or we don't have any type parameters;
7404         also copy `sentinelpos'.        
7405
7406 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
7407
7408         * image.c: Add unbox_wrapper_cache.
7409
7410         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
7411
7412         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
7413         function generator.
7414         
7415         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
7416         Fixes #70173.
7417
7418         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
7419         
7420 2004-12-04  Martin Baulig  <martin@ximian.com>
7421
7422         * loader.c (mono_method_get_signature_full): New public function;
7423         like mono_method_get_signature(), but with an additional
7424         `MonoGenericContext *' argument.
7425
7426         * class.c (mono_class_inflate_generic_signature): Formerly known
7427         as inflate_generic_signature(); make this public.
7428
7429 2004-12-04  Martin Baulig  <martin@ximian.com>
7430
7431         * metadata.c
7432         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
7433         instead of a `MonoGenericContainer *'.  
7434         (mono_metadata_parse_array_full): Likewise.
7435         (mono_metadata_parse_signature_full): Likewise.
7436         (mono_metadata_parse_method_signature_full): Likewise.
7437         (mono_metadata_parse_generic_inst): Likewise.
7438         (mono_metadata_parse_generic_param): Likewise.
7439         (mono_metadata_parse_mh_full): Likewise.
7440         (mono_type_create_from_typespec_full): Likewise.
7441
7442 2004-12-03  Martin Baulig  <martin@ximian.com>
7443
7444         * class-internals.h (MonoGenericContainer): Replaced the
7445         `MonoGenericContext * pointer with a `MonoGenericContext'
7446         structure and made it the first element.
7447
7448 2004-12-03  Martin Baulig  <martin@ximian.com>
7449
7450         * class.c
7451         (inflate_generic_type): Set the `context->container' when creating
7452         a new MonoGenericContext.
7453         (mono_class_inflate_generic_method): Likewise.
7454         (mono_class_create_from_typespec): Just use `context->container'
7455         to get the container.
7456
7457         * loader.c (method_from_methodspec): Set `context->parent' from
7458         `context->container' - and if that's a method container, use its
7459         parent.  Also set the `context->container' when creating a new
7460         MonoGenericContext.
7461         (mono_get_method_from_token): Use just `context->container' to get
7462         the container.
7463
7464         * metadata.c (do_mono_metadata_parse_generic_class): Also set
7465         `gclass->context->container'.
7466
7467         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
7468         the `context->container' when creating a new MonoGenericContext.
7469
7470 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
7471
7472         * reflection.c (compare_genericparam): Sort params with identical
7473         owner by their number. Fixes gen-111 on sparc.
7474
7475 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
7476
7477         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
7478         around the domain changes.
7479
7480         * appdomain.c (mono_domain_unload): Handle the case when the thread
7481         calling Unload is itself being aborted during unloading. Fixes #70022.
7482
7483         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
7484
7485         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
7486         checkpoint_func as an icall so it gets a wrapper.
7487         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
7488         in the cross-appdomain wrappers too.
7489
7490         * threads.c (mono_thread_has_appdomain_ref): Make this public.
7491
7492         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
7493
7494         * reflection.c: Fix some memory leaks.
7495         
7496 2004-12-02  Martin Baulig  <martin@ximian.com>
7497
7498         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
7499
7500         * metadata.c (generic_class_cache): New static hashtable.
7501         (mono_metadata_lookup_generic_class): New public method.
7502
7503 2004-12-02  Martin Baulig  <martin@ximian.com>
7504
7505         * class.c (mono_class_create_from_typedef): Call
7506         mono_class_setup_parent() and mono_class_create_mono_type() before
7507         parsing the interfaces.
7508
7509 2004-12-02  Martin Baulig  <martin@ximian.com>
7510
7511         * metadata.c (generic_inst_cache): New static hashtable.
7512         (mono_metadata_lookup_generic_inst): New public function.
7513         (mono_metadata_inflate_generic_inst): New public function.
7514         (mono_metadata_parse_generic_inst): New public function.
7515         (do_mono_metadata_parse_generic_class): Use the new
7516         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
7517         since this'll also use the cache.
7518
7519         * reflection.c (mono_reflection_bind_generic_method_parameters):
7520         Use mono_metadata_lookup_generic_inst() to use the new cache.
7521
7522         * class.c (inflate_mono_type): Use
7523         mono_metadata_inflate_generic_inst() to inflate a generic
7524         instance; this'll also use the new cache.
7525
7526         * loader.c (method_from_methodspec): Use
7527         mono_metadata_parse_generic_inst() and
7528         mono_metadata_inflate_generic_inst() rather than parsing it
7529         manually, so we can use the new cache.
7530
7531 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
7532
7533         * threads.c (wait_for_tids): Do not incorrectly free threads when 
7534         the wait times out.
7535
7536 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7537
7538         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
7539         iter->args based on whether parameters are passed in registers (i.e.
7540         MONO_ARCH_REGPARMS is defined)
7541
7542 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
7543
7544         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
7545         the exception message. Fixes #70070.
7546         (method_from_methodspec): Fix warnings.
7547
7548 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7549
7550         * process.c: (complete_path) return the path quoted
7551
7552 2004-12-01  Martin Baulig  <martin@ximian.com>
7553
7554         * class-internals.h (MonoGenericInst): New structure.
7555         (MonoGenericClass): Replaced `type_argc', `type_argv' and
7556         `is_open' with `MonoGenericInst *inst'.
7557         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
7558         `is_open' with `MonoGenericInst *inst'.
7559
7560 2004-11-30  Martin Baulig  <martin@ximian.com>
7561
7562         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
7563
7564         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
7565         to `generic_class_cache'.
7566
7567         * metadata.c
7568         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
7569         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
7570         (mono_generic_inst_is_valuetype): Renamed to
7571         mono_generic_class_is_valuetype().
7572
7573         * class-internals.h
7574         (MonoGenericInst): Renamed to MonoGenericClass.
7575         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
7576         (MonoClass): Renamed `generic_inst' to `generic_class'.
7577         (MonoGenericContext): Renamed `ginst' to `gclass'.
7578
7579         * object-internals.h
7580         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
7581
7582         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
7583         mono_reflection_generic_class_initialize().
7584
7585         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
7586         now known as "System.Reflection.MonoGenericClass".
7587         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
7588
7589 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
7590
7591         * class-internals.h: Added a flag field to MonoClass to cache the
7592         declarative security attributes actions associated with the class.
7593         * domain-internals.h: Added booleans to MonoJitInfo to cache the
7594         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
7595         applicable to the JITted method.
7596         * reflection.c|h: Added functions to extract (as flags) which security
7597         actions are available (declaratively) for a method, class or assembly.
7598         * metadata.c|h: Added functions to search the declarative security
7599         table in the metadata.
7600         
7601 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
7602
7603         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
7604         EXPORTEDTYPES are already in the class name cache, so there is no
7605         need to add extra code here to look at them. Just removes a bit of
7606         cruft.
7607
7608         (ves_icall_System_Environment_get_TickCount): No need for #if
7609         WINDOWS. We already have the code in io-layer.
7610
7611 2004-11-28  Martin Baulig  <martin@ximian.com>
7612
7613         * loader.c
7614         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
7615         Fixes gen-112.cs.
7616
7617 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
7618
7619         * assembly.c (do_mono_assembly_open): Instead of having a
7620         conditional WITH_BUNDLE, incorporate support for bundles here, by
7621         having a global `bundles' variable holding a pointer to the actual
7622         bundles. 
7623
7624         (mono_register_bundled_assemblies): New API call used by the
7625         bundle code. 
7626
7627         See mkbundle.1 for details.
7628         
7629 2004-11-27  Martin Baulig  <martin@ximian.com>
7630
7631         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
7632         the vtable for generic methods.
7633
7634 2004-11-26  Martin Baulig  <martin@ximian.com>
7635
7636         * metadata.c
7637         (mono_metadata_generic_method_hash): New public function.
7638         (mono_metadata_generic_method_equal): Likewise.
7639
7640         * class-internals.h
7641         (MonoGenericContainer): Added `GHashTable *method_hash'.
7642
7643         * reflection.c (ReflectionMethodBuilder): Added
7644         `MonoGenericContainer *generic_container'.
7645         (reflection_methodbuilder_to_mono_method): Don't create a new
7646         MonoGenericContainer each time we're called.
7647         (mono_reflection_bind_generic_method_parameters): Use
7648         `container->method_hash' to cache the results so we don't create a
7649         different method if we're called several times with the same
7650         arguments.
7651
7652         * loader.c (method_from_methodspec): Use the new
7653         `container->method_hash' here, too.
7654
7655 2004-11-26  Martin Baulig  <martin@ximian.com>
7656
7657         * class.c (inflate_generic_signature): Correctly compute
7658         `res->has_type_parameters'.
7659         (mono_class_vtable): Use the `has_type_parameters' flag to
7660         determine whether we're a generic method.
7661
7662         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
7663
7664 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
7665
7666         * object.c (mono_runtime_run_main): Fix a small memory leak.
7667
7668 2004-11-25  Martin Baulig  <martin@ximian.com>
7669
7670         * class.c (set_generic_param_owner): Fixed the loop.
7671
7672 2004-11-25  Martin Baulig  <martin@ximian.com>
7673
7674         * object.c (mono_class_vtable): Don't create any JIT wrappers for
7675         generic methods.
7676
7677 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
7678
7679         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
7680         names. Fixes #69787.
7681
7682 2004-11-24  Martin Baulig  <martin@ximian.com>
7683
7684         * class.c (mono_class_create_generic_2): If we don't have a
7685         `ginst->parent', inflate `gklass->parent' to get our parent.
7686
7687 2004-11-24  Martin Baulig  <martin@ximian.com>
7688
7689         * reflection.c (compare_genericparam): Correctly sort the
7690         GenericParam table; fixes #69779.
7691
7692 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
7693
7694         * reflection.c: When writing a PE file, don't create a huge
7695         buffer in memory. Just write the arrays we have to the file.
7696         This reduces memory usage.
7697
7698         * metadata-internals.h: MonoDynamicStream pefile is no longer used
7699         globally.
7700
7701 2004-11-17  Martin Baulig  <martin@ximian.com>
7702
7703         * class.c (mono_class_init): Don't setup `class->parent' for
7704         dynamic instances; moved this to mono_class_generic_2().
7705         (mono_class_create_generic): Also set `klass->inited' for dynamic
7706         generic instances.
7707         (mono_class_create_generic_2): Don't do anything for dynamic
7708         generic instances.  Set `klass->parent' here and also call
7709         mono_class_setup_parent() here. 
7710
7711         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
7712         `MonoType *parent' argument; set `ginst->parent' before calling
7713         mono_class_create_generic_2(), so we set the correct parent.
7714
7715 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
7716
7717         * reflection.c: allow getting attributes from ModuleBuilder
7718         (used by ikvm).
7719
7720 2004-11-17  Martin Baulig  <martin@ximian.com>
7721
7722         * class.c (mono_class_create_from_typedef): If a type parameter is
7723         inherited from an outer class, set its owner to that class.
7724
7725 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
7726
7727         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
7728           for (int*) written size. This fixes bug #69592.
7729
7730 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
7731
7732         * icall.c: Added IsAuthenticodePresnet internal call.
7733         * image.c|h: New function that check a MonoImage for an Authenticode
7734         signature in the certificate PE data directory.
7735         * security.c|h: New internal call to ask the runtime if an 
7736         Authenticode signature seems referenced in the PE header.
7737
7738 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
7739
7740         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
7741
7742         * reflection.c (mono_image_create_pefile): Free the assembly streams
7743         after writing out the assembly file.
7744
7745         * object.c (mono_runtime_run_main): Fix small memory leak.
7746
7747         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
7748         property access modifiers. Fixes #69389.
7749
7750 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
7751
7752         * domain.c, object.c, object-internals.h, domain-internals.h,
7753         object.h, marshal.c: keep dynamic code info per domain.
7754
7755 2004-11-15  Martin Baulig  <martin@ximian.com>
7756
7757         * class.c (mono_type_get_name_recurse): Put type arguments in
7758         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
7759         see bug #68387.
7760
7761 2004-11-15  Martin Baulig  <martin@ximian.com>
7762
7763         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
7764         (mono_class_setup_vtable): When computing `the_cname' for a
7765         generic instance, don't include the namespace since we'd otherwise
7766         add it twice.
7767
7768 2004-11-15  Martin Baulig  <martin@ximian.com>
7769
7770         * class.c (mono_class_create_generic): Changed return type to void.
7771         (mono_class_create_generic_2): New public function; setup
7772         `class->method', `class->field' and `class->interfaces' here
7773         instead of in mono_class_init().
7774
7775         * class.h (mono_class_create_generic): Moved to class-internals.h.
7776
7777 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
7778
7779         * reflection.c (mono_image_create_pefile): take a file HANDLE.
7780         rather than writing to memory, write to this file. Right now,
7781         we are just writting into a buffer, and copying that. However
7782         we can avoid the buffer later.
7783
7784         (mono_dynamic_stream_reset): new function
7785
7786         * icall.c, object-internals.h: update for the above.
7787
7788 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
7789
7790         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
7791         have been using gc'd memory. First it is slower, unlikely
7792         the comment in the source code said, secondly, it increases
7793         our footprint to do it in the gc.
7794
7795         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
7796         the method so that it does not have to copy to managed code.
7797
7798 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
7799
7800         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
7801
7802 2004-11-12  Martin Baulig  <martin@localhost>
7803
7804         * reflection.c (mono_image_create_token): Allow generic method
7805         definitions here, since they may appear in an `.override'; see
7806         gen-98/gen-99 for an example.
7807
7808 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
7809
7810         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
7811         #69365.
7812
7813         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
7814         descriptive.
7815
7816 2004-11-11  Martin Baulig  <martin@ximian.com>
7817
7818         * class.c (mono_class_setup_vtable): In an explicit interface
7819         implementation, the method name now includes the arity.
7820
7821 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
7822
7823         * object.c (mono_array_full_copy): Fix warning.
7824
7825 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
7826
7827         * appdomain.c: Removed look_for_method_by_name(). Use the new method
7828         mono_class_get_method_from_name() instead.
7829         
7830         * class-internals.h: Added two new types of wrappers. 
7831         Added MonoRemotingTarget enum. Added new trampoline function type, which
7832         takes an additional MonoRemotingTarget value as parameter, so it is
7833         possible to request a trampoline for a specific target.
7834         
7835         * class.c: Added new mono_class_get_method_from_name() method.
7836         
7837         * class.h: In MonoRemoteClass, we can have now to vtables, one for
7838         general remoting sinks and one specific for cross domain calls.
7839         
7840         * debug-helpers.c: Added new wrapper names.
7841         
7842         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
7843         of a remote class.
7844         
7845         * image.c: Porperly delete value objects form the remoting invoke hashtable.
7846         
7847         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
7848         with several other methods (mono_marshal_get_xappdomain_dispatch,
7849         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
7850         and others) can generate a fast remoting wrapper for cross domain calls.
7851         More information can be found in docs/remoting.
7852         Other changes: Removed mono_find_method_by_name, and used
7853         mono_class_get_method_from_name instead.
7854         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
7855         is stored in the remoting invoke hashtable.
7856         
7857         * marshal.h: published the new method for getting the xdomain wrapper,
7858         and also added a method for getting the adequate wrapper for a given
7859         method and target.
7860         
7861         * object-internals.h, object.c: Added a couple of methods for capying and
7862         cloning arrays.
7863         Modified mono_install_remoting_trampoline, which takes the new remoting
7864         trampoline that has a remoting target as parameter.
7865         mono_class_proxy_vtable now also takes a remoting target as parameter, and
7866         will return the most suitable vtable for the target.
7867         Added mono_remote_class_vtable, which returns the vtable of a remote class
7868         (which can be the normal remoting vtable or the xdomain vtable).
7869         
7870         * threads.c: the xdomain invoke and dispatch wrappers must also be
7871         protected against interruptions.
7872
7873 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7874
7875         * icall.c: use memmove in BlockCopyInternal when the source and
7876         destination arrays are the same.
7877
7878 2004-11-09  Martin Baulig  <martin@ximian.com>
7879
7880         * class-internals.h (MonoGenericContainer): Removed `method' and
7881         `signature', replaced them with `is_method' and `is_signature'
7882         flags.  Added `context'.
7883
7884         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
7885         instead of a `MonoGenericContainer *'.
7886
7887         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
7888         for dynamic type parameters.
7889         (mono_metadata_load_generic_params): Setup `container->context'.
7890
7891         * reflection.c (mono_reflection_setup_generic_class): Setup
7892         `tb->generic_container->context'.
7893         (do_mono_reflection_bind_generic_parameters): Use
7894         mono_class_inflate_generic_type() to correctly inflate types,
7895         rather than using our own hack just for MONO_TYPE_VAR.
7896
7897 2004-11-09  Martin Baulig  <martin@ximian.com>
7898
7899         * class.c (mono_class_inflate_generic_method): Small fix; don't
7900         crash here.
7901
7902         * icall.c
7903         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
7904         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
7905         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
7906         (ves_icall_Type_BindGenericParameters): Likewise.
7907         (ves_icall_Type_get_IsGenericInstance): Likewise.
7908         (ves_icall_Type_GetGenericParameterPosition): Likewise.
7909         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
7910         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
7911         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
7912
7913 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
7914
7915         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
7916         assembly versions and public key tokens. Fixes #69113.
7917
7918 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
7919
7920         * metadata.c: fix bug introduced with the type cache changes
7921         on 2004-11-06.
7922
7923 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
7924
7925         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
7926         the MonoClass pointer instead of the token in exception clauses.
7927         * reflection.c: updates for the above and make the code not depend
7928         on the structure of MonoExceptionClause.
7929
7930 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
7931
7932         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
7933         Add support for dynamic assemblies. Fixes #69114.
7934
7935         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
7936
7937 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
7938
7939         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
7940         since most only those methods use it. the code member of
7941         MonoMethodPInvoke was dead, so that can be removed too. Also,
7942         remove inline_count (again, not used), and move slot so that it
7943         can share bits with some other flags. This saves 8 bytes in the
7944         structure and gives us about 50 kb back for mcs helloworld.cs
7945
7946         * *.[ch]: Do naming changes for the above.
7947
7948         * loader.c (mono_method_get_header): Lazily init the header
7949         on first access.
7950         (mono_get_method_from_token): don't init the header here
7951         (mono_free_method): the header may never be allocated
7952
7953         Overall, this saves 150 kb of unmanaged allocations
7954         for mcs helloworld.cs. That accounts for 10% of the unmanaged
7955         memory at runtime.
7956         
7957         * loader.c, loader.h (mono_method_get_header): new accessor.
7958
7959         * *.[ch]: use the above method. Prepares us to lazily load
7960         the header.
7961
7962         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
7963         three warnings, which are actual bugs (see 69206).
7964
7965         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
7966         unused. Saves a cool 4 bytes / method.
7967
7968 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
7969
7970         * metadata.c (builtin_types): Add types for System.Object here.
7971         (mono_metadata_parse_type_full): Cache MonoType*'s that are
7972         for a class or valuetype from klass->this_arg or klass->byval_arg.
7973
7974         On mcs for a hello world, this gets us down from 21836 MonoType's
7975         to 14560.
7976
7977         (mono_metadata_free_type): Account for the above change.
7978
7979 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
7980
7981         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
7982         exception instead of asserting if name is null.
7983         (ves_icall_System_AppDomain_GetData): Ditto.
7984
7985 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
7986
7987         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
7988         EnumBuilder.
7989
7990         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
7991         Return NULL when the domain does not have entry_assembly set.
7992
7993         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
7994         Add a 'resource_modules' argument.
7995         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
7996
7997         * reflection.c (mono_reflection_create_runtime_class): Move setting
7998         of wastypebuilder here, so mono_get_type_object () returns a MonoType
7999         for enums too.
8000
8001         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
8002         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
8003         Throw an ArgumentNullException if 'ptr' is null.
8004
8005         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
8006         assemblies here. Fixes #69020.
8007
8008 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
8009
8010         * reflection.c (build_compressed_metadata): Fix the previous patch for
8011         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
8012         the stack.
8013
8014 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
8015
8016         * assembly.c (mono_assembly_names_equal): Allow a match if one of
8017         the cultures is false. Fixes #69090.
8018
8019         * reflection.c (build_compressed_metadata): Fix invalid memory read 
8020         detected by valgrind.
8021         
8022         * reflection.c (mono_reflection_get_type): Avoid triggering a 
8023         TypeResolve multiple times for the same type. Fixes #65577.
8024
8025 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
8026
8027         * marshal.c: Avoid using ldftn to call managed functions. It is
8028         much slower than just a call.
8029
8030         * reflection.c (mono_module_get_object): free the basename we
8031         allocate here from glib.
8032         
8033         * reflection.c (ensure_runtime_vtable): make sure to free
8034         overrides.  Also, we were allocating an array of MonoMethod not an
8035         array of MonoMethod*.
8036
8037         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
8038
8039         * image.c (mono_image_close): free image->guid here.
8040
8041 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
8042
8043         * reflection.c: Fix some spec conformance issues with the PE file
8044         structures so mcs compiled apps run on the Net 2.0 beta.
8045
8046 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
8047
8048         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
8049         Implement this. Fixes #67264.
8050
8051         * debug-helpers.h debug-helpers.c marshal.c: Move 
8052         mono_find_method_by_name to debug-helpers.c.
8053
8054 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
8055
8056         * object.c (mono_release_type_locks): type_initialization_hash is
8057         a GHashTable.
8058
8059         * reflection.c object.c object-internals.h: Fix warnings.
8060
8061         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
8062         without accessors. Fixes #61561.
8063
8064         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
8065         application base from the root domain if not set. Fixes #65641.
8066         (mono_runtime_init): Fix warning.
8067
8068 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8069
8070         * appdomain.c: call mono_thread_pool_init.
8071         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
8072         of worker threads based on the number of CPUs and the environment
8073         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
8074         for non-windows (windows) systems.
8075
8076 2004-10-27  Chris Toshok  <toshok@ximian.com>
8077
8078         * mono-debug-debugger.c (write_class): don't call mono_class_init
8079         here, as even with the check for (!klass->init_pending), we get
8080         into a situation where we're hitting cycles in class
8081         initialization.  Fixes #68816.
8082
8083 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
8084
8085         * image.c: Avoid overwriting values in the loaded_images_hash when an
8086         assembly is loaded multiple times. Fixes #61152.
8087
8088         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
8089         so multiple satellite assemblies for the same name can be loaded.
8090         Fixes #68259.
8091
8092         * mono_domain_assembly_preload: Actually return the loaded assembly, 
8093         not NULL.
8094
8095         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
8096         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
8097
8098         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
8099         pending finalizers are not invoked after the appdomain has been 
8100         unloaded. Fixes #67862.
8101
8102 2004-10-22  Martin Baulig  <martin@ximian.com>
8103
8104         * mono-debug-debugger.c
8105         (mono_debugger_runtime_invoke): Don't box valuetypes.
8106
8107 2004-10-22  Chris Toshok  <toshok@ximian.com>
8108
8109         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
8110         don't hide private methods.
8111
8112 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
8113
8114         * icall.c: Allows the runtime to "share" (when known) the public key
8115         token of an assembly. This avoid the need to recalculate the token 
8116         (from the public key) in managed code.
8117
8118 2004-10-21  Chris Toshok  <toshok@ximian.com>
8119
8120         * debug-helpers.c (append_class_name): argh, revert last patch.
8121         
8122 2004-10-21  Chris Toshok  <toshok@ximian.com>
8123
8124         * debug-helpers.c (append_class_name): use '+' as the delimiter,
8125         not '/', so that it matches what the debugger uses to look up
8126         methods.
8127
8128 2004-10-21  Martin Baulig  <martin@ximian.com>
8129
8130         * mono-debug-debugger.c (mono_debugger_throw_exception): New
8131         public method; this is called each time an exception is thrown and
8132         allows the debugger to use exception catch points.
8133
8134 2004-10-21  Martin Baulig  <martin@ximian.com>
8135
8136         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
8137         the stack pointer and the exception object in some struct and pass
8138         that to the debugger.
8139
8140 2004-10-21  Chris Toshok  <toshok@ximian.com>
8141
8142         * mono-debug-debugger.c (do_write_class): add instance/static
8143         event support.  We don't expose "raise" or "other" yet.
8144         (event_is_static): new method.
8145
8146 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
8147
8148         * mono-debug-debugger.c
8149         (mono_debugger_handle_exception): Remove
8150         bogus return value for fussy compilers.
8151
8152 2004-10-20  Martin Baulig  <martin@ximian.com>
8153
8154         * mono-debug-debugger.c
8155         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
8156         (mono_debugger_handled_exception): Likewise.
8157
8158 2004-10-20  Martin Baulig  <martin@ximian.com>
8159
8160         * mono-debug-debugger.h (MonoDebuggerEvent): Added
8161         MONO_DEBUGGER_EVENT_EXCEPTION.
8162
8163         * mono-debug-debugger.c (mono_debugger_handle_exception): New
8164         public function to send the debugger a notification for an
8165         exception and inform it about a catch/finally clause.
8166
8167 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
8168
8169         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
8170         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
8171         fix 2.95 build. 
8172
8173         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
8174
8175 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
8176
8177         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
8178         marshalled as [In,Out]. Fixes #58325.
8179
8180 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
8181
8182         * reflection.c (mono_method_body_get_object): Implement some fields.
8183
8184 2004-10-12  Martin Baulig  <martin@ximian.com>
8185
8186         * reflection.c (mono_reflection_bind_generic_parameters): Small
8187         fix, correctly retrieve our parent from a generic instance.
8188
8189 2004-10-12  Martin Baulig  <martin@ximian.com>
8190
8191         * metadata.c (mono_metadata_generic_param_equal): We always have
8192         an owner.
8193
8194         * class.c
8195         (mono_class_from_generic_parameter): We need to have an owner.
8196         (my_mono_class_from_generic_parameter): Likewise.
8197
8198         * reflection.c (mono_reflection_setup_generic_class): Renamed to
8199         mono_reflection_create_generic_class() and added a new
8200         mono_reflection_setup_generic_class().  
8201         (mono_reflection_initialize_generic_param): If we're a nested
8202         generic type and inherited from the containing class, set our
8203         owner to the outer class.
8204
8205 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
8206
8207         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
8208
8209         * reflection.c (mono_method_body_get_object): New function to create
8210         a MethodBody object.
8211
8212         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
8213
8214 2004-10-11  Martin Baulig  <martin@ximian.com>
8215
8216         * metadata.c (_mono_metadata_type_equal): Renamed to
8217         do_mono_metadata_type_equal() and made static.
8218
8219 2004-10-11  Martin Baulig  <martin@ximian.com>
8220
8221         * appdomain.c: Bump corlib version number to 28.
8222
8223 2004-10-10  Martin Baulig  <martin@ximian.com>
8224
8225         * class-internals.h
8226         (MonoGenericInst): Added `MonoGenericContainer *container'.
8227         (MonoGenericMethod): Likewise.
8228         (MonoGenericContext): Likewise.
8229         (MonoGenericParam): Added `MonoGenericContainer *owner'.
8230
8231         * metadata.c
8232         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
8233         (do_mono_metadata_parse_generic_inst): Likewise.
8234         (mono_metadata_parse_type_full): New public method.  This is the actual
8235         mono_metadata_parse_type() implementation - with an additional
8236         `MonoGenericContainer *' argument.
8237         (mono_metadata_parse_array_full): Likewise.
8238         (mono_metadata_parse_signature_full): Likewise.
8239         (mono_metadata_parse_method_signature_full): Likewise.
8240         (mono_metadata_parse_mh_full): Likewise.
8241         (mono_type_create_from_typespec): Likewise.
8242         (mono_metadata_interfaces_from_typedef_full): New public method;
8243         this is similar to the other _full() methods, but we take a
8244         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
8245         (mono_metadata_parse_generic_param): Take an additional
8246         `MonoGenericContainer *' argument and lookup the MonoGenericParam
8247         from that container.
8248         (mono_metadata_generic_param_equal): New static method to compare
8249         two type parameters.
8250         (_mono_metadata_type_equal): New static method; takes an
8251         additional `gboolean signature_only' argument - if true, we don't
8252         compare the owners of generic parameters.
8253         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
8254         with a TRUE argument - do a signature-only comparision.
8255
8256         * loader.c: Use the new _full() methods and pass the
8257         MonoGenericContainer to them.
8258
8259         * object-internals.h (MonoReflectionTypeBuilder): Added
8260         `MonoGenericContainer *generic_container' field.
8261         (MonoReflectionMethodBuilder): Likewise.
8262
8263 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
8264
8265         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
8266         case initial images of dynamic assemblies.
8267
8268         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
8269
8270         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
8271
8272         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
8273         length of event->other array.
8274         (typebuilder_setup_events): Ditto.
8275
8276         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
8277         'assembly_by_name' and add an 'assemblies' list.
8278
8279         * assembly.h assembly.c: Add a new search hook for determining whenever
8280         an assembly is already loaded. Use this instead of searching in the
8281         loaded_assemblies list.
8282
8283         * domain.c appdomain.c: Implement the new search hook so loaded 
8284         assemblies are now scoped by appdomain. Fixes #67727.
8285
8286 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
8287
8288         * threads.c (mono_thread_attach): Initialize synch_lock field so
8289         mono_thread_detach works again.
8290
8291         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
8292         'lib' too. Fixes #63130.
8293
8294 2004-10-06  Jackson Harper  <jackson@ximian.com>
8295
8296         * culture-info-tables.h: regenerated.
8297
8298 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
8299
8300         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
8301         implemented by other interfaces in the result. Fixes #65764.
8302         
8303         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8304         Handle unloadable modules without crashing.
8305
8306         * image.c (load_modules): Revert the previous patch since modules must
8307         have a fixed index inside the array.
8308         
8309         * image.c (load_modules): Don't include native modules in the modules
8310         array.
8311
8312 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
8313
8314         * reflection.h: Add param_defaults field.
8315
8316         * reflection.c: Add support for parameter defaults in dynamic methods.
8317         Fixes #64595.
8318
8319         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
8320         an empty string when a type has no namespace. Fixes #64230.
8321
8322 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
8323
8324         * tabledefs.h: Added "internal" security actions to support non-CAS
8325         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
8326         Note: they do not seems to be used anymore in 2.0 (new metadata format)
8327
8328 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
8329
8330         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
8331         constructor of abstract class. Fixes #61689.
8332
8333 2004-10-04  Martin Baulig  <martin@ximian.com>
8334
8335         * class-internals.h (MonoGenericContainer): New type.
8336         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
8337         `MonoGenericContainer *generic_container'.
8338         (MonoClass): Replaced `gen_params' and `num_gen_params' with
8339         `MonoGenericContainer *generic_container'.
8340
8341         * metadata.c (mono_metadata_load_generic_params): Return a
8342         `MonoGenericContainer *' instead of a `MonoGenericParam *';
8343         removed the `num' argument.
8344
8345 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
8346
8347         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
8348         for dynamic images.
8349
8350         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
8351         machine fields.
8352
8353         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
8354
8355         * reflection.c: Save pe_kind and machine values into the generated
8356         image file.
8357
8358         * appdomain.c: Bump corlib version number.
8359
8360         * object-internals.h: Reorganize layout of LocalBuilder.
8361
8362         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
8363         New helper function.
8364
8365         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
8366         created MonoType for dynamic types. Fixes #66180.
8367
8368 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
8369
8370         * threadpool.c: the ares hashtable needs a critical section around it.
8371         this prevents some nasty segfaults
8372
8373 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
8374
8375         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
8376         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
8377         bug 67324).
8378         
8379 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
8380
8381         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
8382         
8383 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
8384
8385         * image.c: Always canonicalize image file names, to avoid loading
8386         the same assembly twice when referenced using a relative path.
8387
8388 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
8389
8390         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
8391
8392         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
8393
8394         * marshal.c: Fix warnings.
8395
8396 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
8397
8398         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
8399         attempting to marshal the delegate_trampoline as the method_addr.
8400         This patch has a static hashtable of marshalled delegates so that 
8401         we can map delegate_trampoline addresses back to delegates.  This
8402         allows a delegate passed to managed code to be passed back into native
8403         code.  Fixes #67039
8404
8405 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
8406
8407         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
8408
8409         * reflection.c (method_encode_code): Align method headers properly.
8410         Fixes #66025.
8411
8412 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
8413
8414         * marshal.c: In the runtime invoke wrapper, reset the abort
8415         exception if it is cached. This avoids the automatic rethrowal of 
8416         the exception after the catch of the wrapper. Also check for pending
8417         interruptions before calling the managed method. This is done using
8418         the new method emit_thread_force_interrupt_checkpoint, since the
8419         normal checkpoint method is ignored when running the invoke wrapper.
8420         * object.c: If the abort exception is rethrown, set the abort_exc
8421         field of the thread, so it will be rethrown aftere every catch.
8422         * threadpool.c: Only run an interruption checkpoint if what has been
8423         requested is a stop of the thread (aborts will be ignored).
8424         * threads.c: By default, a thread will now never be interrumped while
8425         running the runtime invoke wrapper (this ensures that runtime_invoke
8426         will always return to the caller if an exception pointer is provided).
8427         There is a new special method mono_thread_force_interruption_checkpoint()
8428         to force an interruption checkpoint even if running a protected
8429         wrapper, which is used by the same runtime invoke wrapper to do a check
8430         at a safe point.
8431
8432 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
8433
8434         * object.c, object-internals.h: Implemented mono_release_type_locks,
8435         which releases the cctor locks held by a thread.
8436         * threads.c, threads.h: In thread_cleanup, release cctor locks held
8437         by a thread. Added mono_thread_exit() method to be used to safely stop
8438         a thread.
8439
8440 2004-09-28  Raja R Harinath  <rharinath@novell.com>
8441
8442         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8443         Move null check before dereference.  Avoid indexing beyond the end
8444         of the 'modules' array.
8445
8446 2004-09-28  Raja R Harinath  <rharinath@novell.com>
8447
8448         * metadata-internals.h (MonoImage): Add module_count field.
8449         * image.c (load_modules): Set image->module_count.
8450         (mono_image_load_file_for_image): Use image->module_count.
8451         * reflection.c (mono_image_load_module): Append to image->modules array 
8452         of dynamic assembly.
8453         (mono_module_get_object): Fix loop to actually increment index.
8454         Use image->module_count.
8455         * assembly.c (mono_assembly_load_references): Use image->module_count.
8456         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
8457         Likewise.
8458
8459 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
8460
8461         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
8462         Avoid assert on generic types.
8463
8464 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
8465
8466         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
8467
8468         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
8469
8470         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
8471         function to convert a MarshalSpec structure to its managed counterpart.
8472
8473         * reflection.c: Fix warnings.
8474         
8475         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
8476         field.
8477
8478         * icall.c (mono_create_icall_signature): Fix build.
8479
8480 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
8481
8482         * icall.c: Add MakePointType icall.
8483
8484         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
8485         warnings.
8486
8487 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8488
8489         * threadpool.c: reuse allocated slots in the queue.
8490
8491 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
8492
8493         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
8494
8495         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
8496
8497         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
8498         previous change.
8499
8500         * tabledefs.h: Add constants for pinvoke attributes BestFit and
8501         ThrowOnUnmappableChar.
8502
8503         * icall.c (ves_icall_Type_GetPacking): New icall.
8504
8505 2004-09-24  Martin Baulig  <martin@ximian.com>
8506
8507         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
8508
8509 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8510
8511         * appdomain.c:
8512         (mono_domain_set): allow setting a domain that is being unloaded.
8513         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
8514         being unloaded.
8515
8516 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
8517
8518         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
8519         the GetCustomAttributes icall.
8520
8521 2004-09-23  Martin Baulig  <martin@ximian.com>
8522
8523         * object-internals.h (MonoReflectionGenericParam): Replaced
8524         'has_ctor_constraint', `has_reference_type' and `has_value_type'
8525         with `guint32 attrs'.
8526
8527 2004-09-23  Martin Baulig  <martin@ximian.com>
8528
8529         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
8530
8531 2004-09-23  Martin Baulig  <martin@ximian.com>
8532
8533         * object-internals.h (GenericParameterAttributes): New enum.
8534
8535 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
8536
8537         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
8538         
8539         * class.c (init_events): Fill out event->other field.
8540
8541         * class.c: Fix warnings.
8542
8543         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
8544
8545 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
8546
8547         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
8548         walk which doesn't supply the IL offset.
8549
8550 2004-09-22  Martin Baulig  <martin@ximian.com>
8551
8552         * reflection.c (mono_reflection_setup_internal_class): If we're
8553         System.ValueType, System.Object or System.Enum, set
8554         `klass->instance_size' and create the vtable.
8555         (mono_reflection_create_internal_class): If we're an enum type,
8556         get the base class from our current corlib.
8557
8558 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
8559
8560         * reflection.h (MonoResolveTokenError): New type.
8561
8562         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
8563         icall.
8564
8565         * icall.c: Add an 'error' argument to the ResolveToken icalls.
8566
8567 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
8568
8569         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
8570         Support also calling constructors, but only for already allocated objects.
8571
8572 2004-09-17  Geoff Norton <gnorton@customerdna.com>
8573
8574         * reflection.c (type_get_qualified_name): If the klass is null
8575         return the typename to avoid a NullRefEx.
8576         (encode_cattr_value): Get the qualified name of the boxed type,
8577         not the underlying enumtype.  Fixes #62984.
8578
8579 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
8580
8581         * marshal.c: Fix problems with previous checkin.
8582
8583 2004-09-21    <vargaz@freemail.hu>
8584
8585         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
8586         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
8587
8588         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
8589
8590 2004-09-21  Geoff Norton <gnorton@customerdna.com>
8591
8592         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
8593         should only return a type for pointers, arrays, and passbyref types.
8594         Fixes bug #63841.
8595
8596 2004-09-21  Martin Baulig  <martin@ximian.com>
8597
8598         * domain.c (mono_debugger_check_runtime_version): New public
8599         function.
8600
8601         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
8602
8603 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
8604
8605         * reflection.c: Added missing sort to the declarative security 
8606         attributes table. MS implementation stops seeing the attributes if the
8607         token number regress in the table (as shown by ildasm and permview).
8608
8609 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
8610
8611         * object-internals.h (MonoReflectionModule): Add 'token' field.
8612         
8613         * reflection.c (mono_reflection_get_token): Add support for Module
8614         and Assembly.
8615         (mono_module_get_object): Set 'token' field.
8616         (mono_module_file_get_object): Set 'token' field.
8617
8618         * icall.c: Add new Assembly and Module icalls.
8619
8620         * appdomain.c: Bump corlib version.
8621
8622 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
8623
8624         * loader.h loader.c class.h class.c: Add helper functions for obtaining
8625         tokens of metadata objects.
8626
8627         * reflection.h reflection.c (mono_reflection_get_token): New function
8628         to obtain the token of a metadata object.
8629
8630         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
8631
8632 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
8633
8634         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
8635         
8636         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
8637
8638 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
8639
8640         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
8641         * object-internals.h: Added 3 MonoArray* members to MonoReflection
8642         AssemblyBuilder to access the permissions set in the class lib.
8643         * reflection.c: Added security attributes encoding step in 
8644         mono_image_build_metadata.
8645         * tabledefs.h: Added new security actions defined in 2.0:
8646         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
8647
8648 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
8649
8650         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
8651         macro parameter.
8652
8653 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
8654  
8655         * locales.c: nullify the ICU_collator member of CompareInfo when it is
8656           finalized. There where random SIGSEVs at program termination, when
8657           an object being finalized was trying to do a string comparison and
8658           the current culture was already finalized.
8659  
8660 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8661
8662         * threads.c: call thread_cleanup before finishing the thread if we get
8663         there.
8664
8665 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
8666
8667         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
8668         assemblies from the parent. Fixes #65665.
8669
8670 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
8671
8672         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
8673         modifiers.
8674
8675 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
8676
8677         * reflection.h: add prototype for mono_get_dbnull_object
8678         * reflection.c: add prototypes for get_default_param_value_blobs 
8679         and mono_get_object_from_blob for fussier compilers
8680
8681 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
8682  
8683         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
8684         false deadlock checks in class initialization.
8685  
8686 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
8687
8688         * image.c (mono_image_addref): Fix comment.
8689
8690         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
8691         possible.
8692
8693 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
8694
8695         * reflection.c (mono_param_get_objects): Modified to return
8696         ParameterInfo.DefaultValue object.
8697
8698         (get_default_param_value_blobs):
8699         (mono_get_object_from_blob):
8700         (mono_get_dbnull_object): New helper routines. 
8701
8702         * object.c (mono_get_constant_value_from_blob): New helper routine
8703         carved out from get_default_field_value ()
8704
8705         * object-internals.h (mono_get_constant_value_from_blob): Added
8706         function declaration.
8707
8708 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
8709
8710         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
8711         referenced assemblies. Fixes #62135.
8712
8713         * exception.h exception.c (mono_get_exception_file_not_found2): New
8714         helper function.
8715
8716 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
8717
8718         * class.h class.c: Add mono_type_get_underlying_type ().
8719
8720 2004-09-09  Geoff Norton <gnorton@customerndna.com>
8721
8722         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
8723         Fix GetTypes() to support dynamically created assemblies.
8724
8725 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
8726
8727         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
8728         
8729         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
8730         previous patch.
8731
8732         * reflection.h reflection.c loader.c: Allow dynamic construction of
8733         pinvoke methods. Fixes #65571.
8734         
8735         * reflection.c (mono_reflection_get_type): Revert previous change since
8736         it causes regressions.
8737
8738 2004-09-08  Martin Baulig  <martin@ximian.com>
8739
8740         * class.c (class_compute_field_layout): Don't call
8741         mono_class_layout_fields() for open generic instances.
8742
8743 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
8744         * threads.c appdomain.c: fix typo in GC macro
8745
8746 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8747
8748         * threads.c: don't call mono_thread_detach() in start_wrapper(),
8749         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
8750
8751 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
8752
8753         * image.c (mono_image_close): Applied patch from 
8754         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
8755         assembly is loaded multiple times from data.
8756         
8757         * image.c (mono_image_open): Fix warning.
8758
8759 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
8760
8761         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
8762         once. Fixes #58334.
8763         
8764         * reflection.c (mono_reflection_create_runtime_class): Initialize
8765         klass->nested_classes. Fixes #61224.
8766
8767 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
8768
8769         * threads.c: sched_yield() on exit, to allow threads to quit.
8770
8771 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
8772
8773         * object.c (mono_unhandled_exception): Remove leftover debug code.
8774
8775 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
8776
8777         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
8778
8779 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
8780
8781         * marshal.c (emit_marshal_array): Really null terminate string arrays.
8782         
8783         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
8784
8785 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
8786
8787         * marshal.c (emit_marshal_array): Null terminate string arrays.
8788         
8789         * marshal.c (raise_auto_layout_exception): Fix warning.
8790
8791         * reflection.c (mono_param_get_objects): Initialize the default value
8792         with DBNull.Value, not null. Fixes #62123.
8793
8794 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
8795
8796         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
8797         throw an exception with a cute explanation.
8798
8799 2004-09-06  Dick Porter  <dick@ximian.com>
8800
8801         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
8802         Close the new process's thread handle, as we don't use it.  The
8803         handle stays around forever otherwise.
8804
8805 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
8806
8807         * object.c (arith_overflow): Fix warning.
8808
8809         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
8810         calling conventions in method refs. Fixes #65352.
8811
8812         * reflection.c: Fix warnings.
8813
8814 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
8815
8816         * icall.c: Add a new icall for Array.Clear
8817
8818 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
8819
8820         * object.c: When allocating an array, we have to throw
8821         an overflow exception if any of the lengths are < 0.
8822
8823 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
8824
8825         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
8826         properly. Also move implementation of string array marshalling to 
8827         managed code. Fixes #42316.
8828
8829 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8830
8831         * assembly.c: provide more information when loading an assembly fails.
8832
8833 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8834
8835         * filewatcher.c: don't expect the development fam package to be
8836         installed.
8837
8838 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
8839
8840         * marshal.c: Make a copy of the signature cookie since it will be
8841         freed by the caller.
8842         
8843         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
8844
8845         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
8846
8847         * metadata.c (mono_metadata_free_marshal_spec): New function to free
8848         marshal specs.
8849
8850         * marshal.c: More refactoring.
8851         
8852         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
8853         smaller functions.
8854
8855 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
8856
8857         * object.c: In mono_message_invoke, fill the output parameter array after
8858           calling the managed method (it was done before the call). This fixes
8859           bug #59299.
8860
8861 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
8862
8863         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
8864         as well.
8865
8866 2004-09-02  Martin Baulig  <martin@ximian.com>
8867
8868         * class.c (mono_class_instance_size): Don't allow generic type
8869         definitions or open generic instances.
8870         (mono_class_array_element_size): If we're a value type, call
8871         mono_class_instance_size() on the original class.
8872
8873         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
8874         handle generic instances.
8875
8876         * mono-debug-debugger.c (write_type): Handle generic instances
8877         like classes.
8878
8879 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
8880
8881         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
8882         the allocation request fails. Fixes #65089.
8883
8884         * object.c (mono_runtime_free_method): Do not call mono_free_method.
8885         
8886         * object.c (mono_runtime_free_method): New function to free a dynamic
8887         method.
8888
8889         * marshal.c (mono_delegate_free_ftnptr): New function to free the
8890         delegate trampoline.
8891
8892         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
8893         with hasthis as dynamic,
8894
8895         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
8896
8897         * domain.c (mono_jit_info_table_remove): New function to remove an
8898         entry from the jit info table.
8899
8900         * class-internals.h (MonoMethod): Add 'dynamic' field.
8901
8902         * loader.c: Fix warnings.
8903
8904 2004-09-01  Martin Baulig  <martin@ximian.com>
8905
8906         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
8907         instead of mono_debugger_lock() because the latter one is a no-op
8908         unless running in the debugger.
8909
8910 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
8911
8912         * class.c (class_compute_field_layout): Classes with auto-layout or
8913         reference fields are not blittable.
8914         
8915 2004-09-01  Dick Porter  <dick@ximian.com>
8916
8917         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
8918         mono_image_get_filename() to get the assembly location.
8919
8920         * icall.c:
8921         * metadata.h: Fix compile warnings
8922
8923 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
8924
8925         * class.c (class_compute_field_layout): System.Object is blittable.
8926
8927         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
8928         as in/out. Fixes #59909.
8929
8930 2004-09-01  Martin Baulig  <martin@ximian.com>
8931
8932         * metadata.h (MONO_TYPE_ISREFERENCE): Call
8933         mono_metadata_generic_inst_is_valuetype() if we're a generic
8934         instance to check whether our underlying type is a reference type.
8935
8936 2004-09-01  Martin Baulig  <martin@ximian.com>
8937
8938         * metadata.c (mono_type_size): If we're a generic instance, call
8939         mono_class_value_size() for value types.
8940
8941 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
8942
8943         * marshal.c: Implement more custom marshalling functionality. Fixes
8944         #64915.
8945
8946 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
8947
8948         * mono-debug.c, debug-mono-symfile.c: add some locking love.
8949
8950 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
8951
8952         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
8953
8954         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
8955
8956         * icall.c: Fix some warnings.
8957
8958         * threads.c (abort_appdomain_thread): Fix unref errors.
8959         (mono_thread_current): Fix THREAD_DEBUG define.
8960
8961 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
8962
8963         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
8964
8965         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
8966
8967 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
8968
8969         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
8970         string arrays.
8971
8972 2004-08-28  Martin Baulig  <martin@ximian.com>
8973
8974         * metadata.c
8975         (mono_metadata_generic_inst_is_valuetype): New public function.
8976
8977         * metadata.h (MONO_TYPE_ISSTRUCT): Call
8978         mono_metadata_generic_inst_is_valuetype() if we're a generic
8979         instance to check whether our underlying type is a valuetype.
8980
8981 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
8982
8983         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
8984         #63768.
8985
8986 2004-08-25  Martin Baulig  <martin@ximian.com>
8987
8988         * loader.c (mono_get_method_from_token): Abstract methods can also
8989         be generic and thus have type parameters.
8990
8991         * metadata-internals.h
8992         (MonoDynamicImage): Added `GPtrArray *gen_params'.
8993
8994         * reflection.c (mono_image_get_generic_param_info): Don't create a
8995         metadata row, just add an entry to the `gen_params' array.
8996         (build_compressed_metadata): Sort the `gen_params' array and then
8997         actually create the metadata.
8998
8999 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9000
9001         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
9002
9003 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
9004
9005         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
9006
9007 2004-08-24  Martin Baulig  <martin@ximian.com>
9008
9009         * class.cs (mono_class_is_subclass_of): Like an interface, a
9010         generic instance also derives from System.Object.
9011
9012 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
9013
9014         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
9015         custom modifiers to be in any order. Fixes #61990.
9016
9017 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
9018
9019         * object.c: Register mono_object_new_fast icall.
9020         
9021         * object.c (mono_class_get_allocation_ftn): Return to calling
9022         mono_object_new_fast, since it seems faster to compute the object 
9023         size in unmanaged code than passing it as a parameter.
9024
9025         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
9026
9027         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
9028         this function with Boehm as the oom handler, so we don't have to check
9029         the result of GC_malloc.
9030
9031         * object.c: Remove checks for oom.
9032
9033         * object.h object.c (mono_class_get_allocation_ftn): New function to
9034         return the icall which can be used to allocate an instance of a given
9035         class. 
9036
9037         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
9038
9039         * class-internals.h: Add 'enabled' field.
9040
9041 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
9042
9043         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
9044
9045 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
9046         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
9047         value 0x0010.
9048
9049 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
9050
9051         * appdomain.c: use the Tls function for appdomain too,
9052         at Zoltan's request. Actually return in mono_context_get
9053
9054         * appdomain.c, profiler.c, threads.c: use __thread
9055
9056 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
9057
9058         * appdomain.c threads.c: Call GC_CreateThread on windows.
9059
9060         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
9061         multiple libraries since this don't work on windows.
9062
9063 2004-08-18  Martin Baulig  <martin@ximian.com>
9064
9065         * class-internals.h
9066         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
9067         MonoMethodHeader.
9068
9069         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
9070         MonoMethodNormal since we also need it for abstract and interface
9071         methods.
9072
9073         * reflection.c
9074         (build_compressed_metadata): Sort the GenericParam table.
9075         (mono_image_create_token): Added `gboolean create_methodspec'
9076         argument; this is false when generating a MethodImpl token.
9077         (reflection_methodbuilder_to_mono_method): Abstract and interface
9078         methods may also have generic parameters.
9079
9080 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
9081
9082         * appdomain.c: thread local alloc
9083
9084 2004-08-17  Martin Baulig  <martin@ximian.com>
9085
9086         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
9087
9088         * icall.c
9089         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
9090         argument.
9091
9092         * class.c (mono_type_get_full_name): New public function.
9093         (mono_type_get_name): Don't include the type arguments.
9094
9095 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
9096
9097         * Makefile.am: Build static versions of libmetadata and libmonoruntime
9098         for inclusion into the mono executable.
9099
9100 2004-08-16  Martin Baulig  <martin@ximian.com>
9101
9102         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
9103         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
9104
9105 2004-08-14  Martin Baulig  <martin@ximian.com>
9106
9107         * class.c (dup_type): Also copy the `byref' field.
9108
9109 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
9110
9111         * reflection.c (create_dynamic_mono_image): Revert the last change 
9112         since it breaks bootstrap.
9113
9114 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
9115
9116         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
9117
9118         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
9119         not free them with g_free.
9120
9121 2004-08-11  Martin Baulig  <martin@ximian.com>
9122
9123         * reflection.c (mono_reflection_setup_internal_class): Also call
9124         mono_class_setup_mono_type() if we already have a `tb->type.type'.
9125
9126 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
9127
9128         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
9129         called during default (first) AppDomain creation. Keep track of
9130         Evidence when loading assemblies.
9131
9132 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
9133
9134         * opcodes.c, opcodes.h: reduce runtime relocations.
9135
9136 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
9137
9138         * culture-info.h, locales.c: fixes and chages to sue the new
9139         optimized format of the locale data.
9140         * culture-info-tables.h: regenerated.
9141
9142 2004-08-06  Geoff Norton <gnorton@customerdna.com>
9143         
9144         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
9145
9146 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
9147
9148         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
9149         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
9150         * domain-internals.h: icall declaration.
9151         * icall.c: icall registration.
9152         * object-internals.h: New fields in MonoAssembly for CAS.
9153
9154 2004-08-05  Duncan Mak  <duncan@ximian.com>
9155
9156         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
9157         CEE_LDELEM_ANY.
9158
9159 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
9160
9161         * reflection.c: fix to deal with object[] arrays in custom ctors
9162         (bug #62550).
9163
9164 2004-08-05  Martin Baulig  <martin@ximian.com>
9165
9166         * class.c (mono_class_array_element_size): Added support for
9167         generic instances and correctly handle "recursive" types.
9168
9169 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
9170
9171         * assembly.c: Fix warnings.
9172
9173 2004-08-04  Martin Baulig  <martin@ximian.com>
9174
9175         * class.c
9176         (mono_type_get_name_recurse): Added `gboolean include_arity'
9177         argument specifying whether or not we should include the generic
9178         arity in the type name.
9179         (_mono_type_get_name): New static function.
9180         (mono_class_setup_vtable): If we're a generic instance, don't
9181         include the generic arity in the names of explicit method
9182         implementations.        
9183
9184 2004-08-03  Martin Baulig  <martin@ximian.com>
9185
9186         * class.c (mono_type_get_name_recurse): Enclose the generic type
9187         arguments in `<', '>'.
9188
9189 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9190
9191         * gc.c: make GC warning messages use the trace API, they are just
9192         noise to most of the users.
9193
9194 2004-08-03  Martin Baulig  <martin@ximian.com>
9195
9196         * debug-mono-symfile.c (read_string): Correctly read the string.
9197
9198 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
9199
9200         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
9201         
9202         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
9203         icalls.
9204         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
9205
9206 2004-07-30  Martin Baulig  <martin@ximian.com>
9207
9208         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
9209         Reflect latest symbol writer changes.   
9210
9211 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
9212
9213         * object.c: always create an object if null is passed
9214         to Invoke() where a valuetype is expected.
9215
9216 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
9217
9218         * marshal.c (mono_marshal_init): make managed
9219         signatures match native ones better for 64bits.
9220
9221 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9222
9223         * appdomain.c: hack to build correctly the private bin path on windows.
9224         Fixes bug #61991.
9225
9226 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
9227
9228         * assembly.c: Load mscorlib from the correct framework directory
9229           (mono/<version>/mscorlib.dll).
9230         * appdomain.h: Added prototypes for new functions.
9231         * internals.h: Added some prototypes.
9232         * domain.c: When initializing the runtime, get from the executable and
9233           the configuration files the runtime version that the app supports.
9234           Added support methods for reading app.exe.config. Added list of versions
9235           supported by the JIT. Added two new methods: mono_init_from_assembly,
9236           which initializes the runtime and determines the required version from
9237           the provided exe file, and mono_init_version, which initializes
9238           the runtime using the provided version.
9239         * icall.c: Get machine.config from version-specific directory.
9240         * reflection.c: When generating an image, embed the version number
9241           of the current runtime.
9242
9243 2004-07-28  Dick Porter  <dick@ximian.com>
9244
9245         * socket-io.c
9246         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
9247         returned sockaddr size before creating the remote address object.
9248         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
9249         61608.
9250
9251 2004-07-28  Dick Porter  <dick@ximian.com>
9252
9253         * locales.c (string_invariant_compare_char): Fix invariant char
9254         compares between upper and lower cases.  Fixes bug 61458.
9255
9256 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
9257         
9258         * marshal.c: actually cache stelem.ref wrappers.
9259         
9260 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
9261
9262         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
9263         sections and remove the mono_cli_rva_map () function.
9264
9265 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
9266
9267         * debug-mono-symfile.c: fix one more endianess issue, from a patch
9268         by Geoff Norton (<gnorton@customerdna.com>).
9269
9270 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9271
9272         * class.c: fix class loads for pointer types (typeof(int) !=
9273         typeof(int*)).
9274
9275 2004-07-27  Martin Baulig  <martin@ximian.com>
9276
9277         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
9278         reading the debugging information from an external ".mdb" file.
9279
9280 2004-07-24  Martin Baulig  <martin@ximian.com>
9281
9282         * reflection.c (mono_image_get_type_info): Only write a class
9283         layout entry if we actually have a size or a packing size.
9284
9285 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
9286
9287         * reflection.c (type_get_fully_qualified_name): 
9288         insert cast to get type checking of ?: with non-gcc compilers
9289
9290 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
9291
9292         * rand.c: use g_getenv for both lookups of
9293         MONO_EGD_SOCKET
9294
9295 2004-07-17  Martin Baulig  <martin@ximian.com>
9296
9297         * reflection.c (mono_reflection_bind_generic_method_parameters):
9298         Set `gmethod->reflection_info'.
9299
9300 2004-07-17  Martin Baulig  <martin@ximian.com>
9301
9302         * class.c (mono_class_create_from_typedef): Insert the newly
9303         created class into the hash table before computing the interfaces
9304         since we could be called recursively.
9305
9306 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
9307
9308         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
9309         function to implement stelem.ref in managed code
9310         * class-internals.h, debug-helpers.c: a new wrapper type
9311         for the above.
9312
9313 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
9314
9315         * gc.c: allow GC handles to work even when no GC is compiled in.
9316         Fix part of bug #61134 (GetAddrOfPinnedObject).
9317
9318 2004-07-13  Peter Williams  <peter@newton.cx>
9319  
9320         * process.c (complete_path): Make sure we don't attempt to execute
9321         directories.
9322  
9323 2004-07-12  Geoff Norton <gnorton@customerdna.com>
9324
9325         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
9326           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
9327           and will add/subtract the hour if needed
9328
9329 2004-07-12  Martin Baulig  <martin@ximian.com>
9330
9331         * reflection.c (mono_field_get_object): If we have
9332         `field->generic_info', take the attributes from
9333         `field->generic_info->generic_type'.    
9334
9335 2004-07-12  Martin Baulig  <martin@ximian.com>
9336
9337         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
9338         This function must be called before initializing the runtime.
9339         (mono_debug_init_1): New function; call this after initializing
9340         the runtime, but before loading the assembly.  It tells the
9341         debugger to load corlib and the builtin types.
9342
9343         * mono-debug-debugger.c: Did some larger changes in the debugging
9344         code; support recursive class declarations, make sure we actually
9345         add all classes.
9346
9347 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9348
9349         * debug-helpers.c: undo my previous patch and fixed the real issue in
9350         ../mini/exceptions-x86.c
9351
9352 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9353
9354         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
9355         when no HOME env. variable was set and a NullRef was thrown in a .cctor
9356         called from other .cctors.
9357
9358 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
9359
9360         * loader.c: Removed the mono_loader_wine_init hack now that we are
9361         doing a managed version of Windows.Forms.
9362
9363 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
9364
9365         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
9366         threadpool.c, threads.c: remove static data from rootset.
9367
9368 2004-07-09  Dick Porter  <dick@ximian.com>
9369
9370         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
9371         Don't do any more processing if the matched length was 0.  It was
9372         increasing the size of the string before.  Fixes bug 61167.
9373
9374 2004-07-09  Dick Porter  <dick@ximian.com>
9375
9376         * socket-io.h:
9377         * socket-io.c
9378         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
9379         Add support for SO_PEERCRED if its available.
9380
9381 2004-07-09  Peter Bartok <pbartok@novell.com>
9382         * loader.c: winelib.exe.so error message is now only displayed if
9383         MONO_DEBUG is set. To help us avoid questions when people are trying
9384         out the new Managed.Windows.Forms.
9385
9386 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
9387
9388         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
9389         for isinst and castclass wrappers.
9390
9391         * class-internals.h icall.c: Move registration and lookup of JIT icalls
9392         to libmetadata from the JIT, so they could be used by the marshalling
9393         code and the interpreter.
9394
9395         * marshal.c: Register marshalling related JIT icalls here instead of
9396         in mini.c. Use CEE_MONO_ICALL instead of the family of 
9397         CEE_MONO_PROC<x> opcodes to call marshalling functions.
9398
9399         * metadata.h: Remove unneeded marshalling conversions.
9400
9401         * opcodes.c: Update for new opcodes.
9402         
9403 2004-07-08  Martin Baulig  <martin@ximian.com>
9404
9405         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
9406         (mono_debug_get_domain_data): Make this function static.
9407
9408 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
9409
9410         * gc.c, object.h: add nice GC handle API for embedders.
9411
9412 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
9413
9414         * reflection.c: more changes for the new api
9415
9416         * object.c: When we reflect on a field w/ a constant value, it
9417         will not have a memory location, so we must access metadata. Also,
9418         allow easier reading of strings so that we can read them from
9419         the constant data.
9420
9421         * class.c (mono_class_layout_fields): no need for literal fields here.
9422
9423         * class-internals.h: api changes for const fields
9424
9425         * icall.c (ves_icall_get_enum_info): use new apis for const fields
9426
9427 2004-07-06  Martin Baulig  <martin@ximian.com>
9428
9429         * mono-debug.h: Increment version number to 44.
9430
9431         * mono-debug.c (mono_debug_add_wrapper): The second argument is
9432         now a gpointer, rewrote this whole method.
9433
9434         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
9435         function.  Add information about the wrapper in a new "misc table".
9436
9437         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
9438         for the new misc table.
9439
9440 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
9441
9442         * metadata-internals.h image.c: Add a cache for helper signatures.
9443
9444         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
9445
9446 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
9447
9448         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
9449         delegates from a delegate. Fixes #61033.
9450         
9451         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
9452         marshalling of stringbuilder arrays. Fixes #59900.
9453
9454 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
9455
9456         * icall.c: Add EnumBuilder:setup_enum_type icall.
9457
9458 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
9459
9460         * icall.c: Added a new icall for the property version of
9461         OffsetOfStringData.
9462
9463 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
9464
9465         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
9466         it has a constant size across platforms.
9467
9468         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
9469         stack trace.
9470
9471 2004-06-29  Martin Baulig  <martin@ximian.com>
9472
9473         * mono-debug.c (mono_debug_add_method): Protect the whole function
9474         in mono_debugger_lock(), not just parts of it.
9475
9476 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
9477
9478         * reflection.c: make sure padding bytes in heaps are zeroed.
9479
9480 2004-06-24  David Waite  <mass@akuma.org>
9481
9482         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
9483         image.c, loader.c, locales.c, marshal.c, metadata.c,
9484         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
9485         string-icalls.c, threads.c: change to C90-style comments from C99 /
9486         C++ -style
9487
9488 2004-06-24  Dick Porter  <dick@ximian.com>
9489
9490         * threads.c
9491         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
9492         return createdNew.  Fixes bug 60412.
9493
9494         * threads-types.h: 
9495         * icall.c: Add createdNew parameter to CreateMutex icall
9496
9497 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9498
9499         * reflection.c, object-internals.h: save default value in params.
9500
9501 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9502
9503         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
9504         no need to build a new path combining that with the application base.
9505         Fixes bug #60442.
9506
9507 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
9508
9509         * reflection.c: fixed minor standard compliance issues.
9510
9511 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
9512
9513         * reflection.c: fixed issue with encoding some custom attributes
9514         (arrays in properties and fields, bug #60411).
9515
9516 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9517
9518         * reflection.c: fix start address when copying the public key token.
9519
9520 2004-06-23  Martin Baulig  <martin@ximian.com>
9521
9522         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
9523         the `exc' object in a static object to put it into the GC's root set.
9524
9525 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
9526
9527         * reflection.c: make mono_reflection_setup_internal_class ()
9528         callable a second time to setup a new parent class.
9529
9530 2004-06-23  Dick Porter  <dick@ximian.com>
9531
9532         * threads.c: Check for WAIT_IO_COMPLETION return values.
9533
9534 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
9535
9536         * appdomain.c: Removed the g_free on the public key token. Now copy 
9537         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
9538         * assembly.c: Added public key token string value when loading 
9539         assemblies. Fix bug #60439.
9540         * icall.c: Added missing informations (like public key) in 
9541         GetReferencedAssemblies. Fix #60519.
9542         * image.h: Changed definition for public key token from const char*
9543         public_tok_value to guchar public_key_token [17];
9544         * reflection.c: Updated for changes to public key token.
9545
9546 2004-06-22  Lluis Sanchez Gual
9547
9548         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
9549         for the field in base classes.
9550
9551 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
9552
9553         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
9554         mark headers as not supported, they are installed only for use by the
9555         debugger.
9556
9557 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
9558
9559         * *.c, *.h: avoid namespace pollution in public headers.
9560
9561 2004-06-21  Martin Baulig  <martin@ximian.com>
9562
9563         * exception.c (mono_get_exception_security): It's in
9564         "System.Security", not in "System".
9565
9566         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
9567         the exception classes.
9568
9569 2004-06-21  Martin Baulig  <martin@ximian.com>
9570
9571         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
9572         Protect the exception object from being finalized.
9573
9574 2004-06-21  Martin Baulig  <martin@ximian.com>
9575
9576         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
9577         public function.
9578
9579 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
9580
9581         * reflection.c: Load the assembly in mono_reflection_type_from_name,
9582         if it was not loaded before. Fix parts of #60439.
9583
9584 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
9585
9586         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
9587         code that was broken since Ben's change: wrappers are now
9588         dependent on the method signature only again.
9589
9590 2004-06-21  Martin Baulig  <martin@ximian.com>
9591
9592         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
9593         added interface support.
9594
9595 2004-06-21  Martin Baulig  <martin@ximian.com>
9596
9597         * class.c (mono_vtable_get_static_field_data): New public method.
9598
9599 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
9600
9601         * filewatcher.c : Windows build fix to be compliant with API changes.
9602
9603 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
9604
9605         * class.h, class.c: more accessors.
9606         * metadata.h, metadata.c: prepare for hiding MonoType and
9607         MonoMethodSignature: people should use the accessors from now on
9608         outside of the tree.
9609
9610 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
9611
9612         * *.c, *.h: more API cleanups.
9613
9614 2004-06-18  Jackson Harper  <jackson@ximian.com>
9615
9616         * assembly.c: Trace loading assemblies.
9617         * loader.c: Trace loading native libraries.
9618         * mono-config.c: Trace loading config files.
9619         
9620 2004-06-18  Dick Porter  <dick@ximian.com>
9621
9622         * locales.c: Tell ICU the lengths of strings, it can cope with
9623         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
9624
9625 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
9626
9627         * image.c: swapped name/filename;
9628
9629 2004-06-18  Martin Baulig  <martin@ximian.com>
9630
9631         * mono-debug-debugger.c (write_class): Write the parent class at
9632         the end of the header.
9633
9634 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
9635
9636         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
9637
9638 2004-06-17  Raja R Harinath  <rharinath@novell.com>
9639
9640         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
9641         (bundle_obj): New conditional define.
9642         (BUILT_SOURCES): Remove.
9643         ($(bundle_srcs)): Make parallel-make safe.
9644         (libmonoruntime_la_LIBADD): Make unconditional.
9645         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
9646         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
9647
9648 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
9649
9650         * culture-info-tables.h: It was inconsistent with the latest
9651           supp info files.
9652
9653 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
9654
9655         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
9656         be loaded.
9657
9658         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
9659         with gcc 2.95.
9660
9661 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
9662
9663         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
9664         cleaned up public header threads.h.
9665
9666 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9667
9668         * Makefile.am, *.c, *.h: more API cleanups.
9669
9670 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
9671
9672         * Makefile.am: removed monosn from compilation.
9673         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
9674         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
9675         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
9676         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
9677         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
9678         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
9679
9680 2004-06-15  Jackson Harper  <jackson@ximian.com>
9681
9682         * assembly.c: Make locales lower case when searching the GAC for
9683         assemblies. gacutil will always make locales lowercase when
9684         installing so this effectively makes them case insensitive.
9685         
9686 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
9687
9688         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
9689         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
9690           parameter which allows to choose whether the wait can be interrupted or 
9691           not. Also added the method mono_monitor_enter(), which locks the monitor
9692           using an infinite wait and without allowing interruption.
9693           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
9694           interrupted.
9695         * object.h: Added new fields in MonoThread. suspend_event holds the event
9696           used to susped/resume the thread. synch_lock is the lock object to use for
9697           modifying the thread state.
9698         * threads.c: Use the new synch_lock object for locking, instead of "this",
9699           which can generate deadlocks.
9700           Moved thread state change in Thread.Sleep and Thread.Join from managed
9701           to unmanaged code. This avoids a deadlock when the thread was suspended
9702           just after acquiring the thread lock.
9703           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
9704           Implemented Thread.Suspend using an event instead of ThreadSuspend,
9705           which is not fully implemented in the io-layer.
9706         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
9707
9708 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
9709
9710         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
9711         threads-types.h: more API cleanups.
9712
9713 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
9714
9715         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
9716         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
9717         threadpool.c, threads.c: first pass at the exported API cleanup.
9718
9719 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
9720
9721         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
9722
9723 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9724
9725         * icall.c: added internalGetHome.
9726
9727 2004-06-14  Dick Porter  <dick@ximian.com>
9728
9729         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
9730         possible to return successfully when '.' or '..' were the only
9731         entries in a directory, but were skipped.  The MonoIOStat was not
9732         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
9733         Fixes bug 59574.
9734
9735 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9736
9737         * reflection.c: make binaries run on .Net 1.1 by default.
9738
9739 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
9740
9741         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
9742
9743 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
9744
9745         * marshal.c: keep track of struct size with explicit layout
9746         (bug #59979).
9747
9748 2004-06-12  Martin Baulig  <martin@ximian.com>
9749
9750         * mono-debug-debugger.c: Comment out a debugging g_message().
9751
9752 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
9753
9754         * reflection.c, reflection.h: do not free custom attrs that are cached.
9755         * icall.c: use braces to make code clearer.
9756
9757 2004-06-11  Martin Baulig  <martin@ximian.com>
9758
9759         * class.h (MonoInflatedField): New type.
9760         (MonoClassField): Replaced `MonoType *generic_type' with
9761         `MonoInflatedField *generic_info'.
9762
9763         * icall.c
9764         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
9765
9766 2004-06-11  Martin Baulig  <martin@ximian.com>
9767
9768         * reflection.c (mono_image_create_method_token): Correctly encode
9769         varargs methods.
9770
9771 2004-06-11  Martin Baulig  <martin@ximian.com>
9772
9773         * metadata.c (mono_metadata_parse_method_signature): When parsing
9774         a MethodDef which has VarArgs, also set sentinelpos if we don't
9775         have any parameters.
9776
9777 2004-06-11  Martin Baulig  <martin@ximian.com>
9778
9779         * verify.c (mono_method_verify): In CEE_CALL, use
9780         mono_method_get_signature() to get the method's signature, unless
9781         we're a PInvoke method.
9782
9783 2004-06-10  Jackson Harper  <jackson@ximian.com>
9784
9785         * assembly.c: Use <path>/lib/mono/gac for the extra paths
9786         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
9787         logical name as the supplied path is just a prefix to the gac not
9788         the direct path to it.
9789         
9790 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
9791
9792         * reflection.c: make the token for a created method match
9793         the token of the MethodBuilder it was created from
9794         (IKVM requires this behaviour now).
9795
9796 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
9797
9798         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
9799         reflection.c, socket-io.c: leak fixes.
9800
9801 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
9802
9803         * icall.c: handle sentinel pos in vararg methods in position different
9804         from 0.
9805
9806 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9807
9808         * culture-info-tables.h: freshly generated.
9809
9810 2004-06-09  Martin Baulig  <martin@ximian.com>
9811
9812         * loader.c (mono_get_method_constrained): Call `mono_class_init
9813         (constrained_class)'.   
9814
9815 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
9816
9817         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
9818         any methods. Fixes #59629.
9819
9820 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
9821
9822         * culture-info-tables.h: reflecting locale-builder updates.
9823
9824 2004-06-08  Dick Porter  <dick@ximian.com>
9825
9826         * object.h:
9827         * locales.c: Fixed compile warnings, including a real bug in
9828         CompareInfo_internal_compare.
9829         
9830 2004-06-08  Dick Porter  <dick@ximian.com>
9831
9832         * locales.c
9833         (ves_icall_System_Globalization_CompareInfo_internal_index):
9834         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
9835         Double-check the resuls of usearches, because ICU currently
9836         ignores most of the collator settings here.  Fixes bug 59720.
9837         
9838 2004-06-08  Dick Porter  <dick@ximian.com>
9839
9840         * locales.c
9841         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
9842         Fix memory leak and segfault-causing typo.  No idea how this one
9843         lasted so long without being noticed.
9844
9845 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
9846
9847         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
9848         any methods. Fixes #59629.
9849
9850 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9851
9852         * assembly.c:
9853         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
9854         own the critical section before). Removed dead code (that's done
9855         in the preload hook).
9856
9857         (mono_assembly_load_with_partial_name): call the preload hook.
9858
9859 2004-06-08  Martin Baulig  <martin@ximian.com>
9860
9861         * metadata.c (mono_metadata_signature_alloc): Default
9862         `sentinelpos' to -1.
9863
9864         * reflection.c (mono_image_get_array_token): Likewise.
9865
9866 2004-06-08  Martin Baulig  <martin@ximian.com>
9867
9868         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
9869
9870         * metadata.c (mono_metadata_parse_method_signature): When parsing
9871         a MethodDef which has VarArgs, set sentinelpos.
9872
9873         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
9874         `gint16' since we're using -1 for non-varargs methods.
9875
9876         * reflection.c
9877         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
9878         (method_encode_signature): Added varargs support.
9879         (method_builder_encode_signature): Likewise.
9880         (mono_image_get_varargs_method_token): New static method.
9881         (mono_image_create_method_token): New public method; this is
9882         called via an icall instead of mono_image_create_token() when
9883         calling a varargs method.       
9884
9885 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
9886
9887         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
9888
9889 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
9890
9891         * culture-info-tables.h : Reflecting the latest locale-builder that
9892           fixed empty array representation ({} to {0}).
9893
9894 2004-06-07  Jackson Harper  <jackson@ximian.com>
9895
9896         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
9897         looking up extra gac paths. This allows MONO_GAC_PATH to act
9898         exactly like a prefix.
9899         
9900 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
9901
9902         * reflection.c (mono_reflection_type_from_name): Make a copy of the
9903         type name before modifying it. Fixes #59405.
9904
9905 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
9906
9907         * culture-info.h: added fields for "all datetime patterns".
9908         * locales.c: (  ves_icall_System_Globalization_CultureInfo
9909           _construct_datetime_format ()): fill xxx_patterns fields.
9910         * object.h: added fields for "all datetime patterns" to
9911           MonoDateTimeFormatInfo.
9912         * culture-info-tables.h: reflecting locale-builder updates.
9913
9914 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
9915
9916         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
9917         the event has no add and remove methods. Fixes #59629.
9918
9919 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
9920
9921         * object.c: Fixed possible integer overflow when allocating large
9922         strings.
9923
9924 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
9925
9926         * culture-info-tables.h: reflecting locale-builder updates.
9927
9928 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
9929
9930         * culture-info-tables.h: reflecting locale-builder updates.
9931
9932 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
9933
9934         * culture-info-tables.h: reflecting locale-builder updates.
9935
9936 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
9937
9938         * threads.c: Made Thread.Sleep abortable.
9939
9940 2004-06-02  Martin Baulig  <martin@ximian.com>
9941
9942         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
9943
9944         * debug-mono-symfile.h: Bumped symbol file version number to 37.
9945
9946 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
9947
9948         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
9949
9950 2004-05-30  Jackson Harper  <jackson@ximian.com>
9951
9952         * reflection.c: Do not hardcode assembly versions or public key
9953         tokens anymore. All of this except the corlib section was dead
9954         code anyways.
9955         
9956 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
9957
9958         * object.c (mono_runtime_invoke_array): Automatically create boxed
9959         objects for byref valuetypes if needed. Fixes #59300.
9960         
9961         * object.c (mono_method_return_message_restore): Handle 
9962         MONO_TYPE_OBJECT as well.
9963
9964 2004-05-28  Jackson Harper  <jackson@ximian.com>
9965
9966         * reflection.c: The modified type encoding was causing build
9967         problems. Reverted for now.
9968         
9969 2004-05-28  Jackson Harper  <jackson@ximian.com>
9970
9971         * reflection.c/h: Take an assembly ref so that we dont create
9972         fully qualified names when encoding types in the same assembly as
9973         the custom attribute being emitted.
9974         * appdomain.c: Increment version number.
9975         
9976 2004-05-26  Duncan Mak  <duncan@ximian.com>
9977
9978         * icall.c
9979         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
9980         Set the full version number (major, minor, build, revision).
9981
9982 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
9983
9984         * marshal.c (emit_struct_conv): increment src/dst after blit
9985         (mono_marshal_get_managed_wrapper,
9986         mono_marshal_get_native_wrapper): make sure we have marshalling
9987         info before marshalling params (info computation affects
9988         blittable)
9989
9990         * class.c (class_compute_field_layout): correctly deal with
9991         blittable
9992         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
9993         value types (as per what windows dows by default)
9994         (mono_class_setup_mono_type): System.ValueType is blittable
9995         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
9996         blittable
9997
9998         * marshal.c (mono_marshal_load_type_info): flag types  as
9999         non-blittable if the native layout doesn't match the managed
10000         layout
10001
10002 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10003
10004         * appdomain.c: don't add stuff in the private search path that is
10005         above the application base. If application base is not set, there's
10006         no private search path.
10007
10008 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
10009
10010         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
10011         byref struct arguments in native->managed marshalling.
10012
10013 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
10014
10015         * marshal.c (mono_marshal_get_runtime_invoke): correctly
10016         cache methods using signature (special case for methods
10017         that are value type or string class)
10018         
10019         * image.c (mono_image_close): clean up allocated GSList's
10020         in runtime_invoke_cache.
10021
10022 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10023
10024         * mono-config.c: set the correct path for mono_cfg_dir on windows when
10025         there's no MONO_CFG_DIR environment variable defined.
10026
10027 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10028
10029         * threads.c: windows version must be >= 0x0500 to include OpenThread.
10030
10031 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
10032
10033         * threadpool.c: Really wait for 500ms after the async call, even if the wait
10034           is interrumped.
10035         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
10036           before waiting for it, and call CloseHandle after the wait to unref it.
10037           This will make sure that handles are not disposed too early.
10038
10039 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10040
10041         * appdomain.c:
10042         * appdomain.h:
10043         * icall.c: removed
10044         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
10045         needed now.
10046
10047         * object.c: se the application_base only for the domain that runs
10048         Main. Fixes bug #59216,
10049
10050 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10051
10052         * appdomain.c:
10053         * object.c: only the domain in which Main is run have
10054         SetupInformation.ConfigurationFile set, so moved a few lines from
10055         appdomain.c to object.c.
10056
10057 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10058
10059         * appdomain.c: we tried to load [name].(dll|exe), but according
10060         to bug #57710, we must also try [culture]/[name].(dll|exe) and
10061         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
10062         There's a test case attached to bug #58922.
10063
10064 2004-05-27  Dick Porter  <dick@ximian.com>
10065
10066         * icall.c:
10067         * file-io.c: Implemented icalls for locking and unlocking regions
10068         in a file.
10069         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
10070         FALSE on error (fixes both compiler warning and real bug.)
10071
10072 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
10073
10074         * culture-info-tables.h: reflecting locale-builder updates.
10075
10076           (Added missing ChangeLog entry for 05/26)
10077
10078 2004-05-27  Jackson Harper  <jackson@ximian.com>
10079
10080         * locales.c: Fix some cut and paste errors.
10081         
10082 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10083
10084         * mono-config.c: set the correct path for config. directory on windows.
10085
10086 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10087
10088         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
10089           on win32.
10090
10091 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
10092
10093         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
10094         from pinvoke functions.
10095         
10096         * marshal.c (mono_ftnptr_to_delegate): Implement this.
10097
10098 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10099
10100         * culture-info-tables.h: reflecting locale-builder updates.
10101
10102 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
10103
10104         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
10105         #59086.
10106
10107 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
10108
10109         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
10110         * icall.c: Modified icalls for RNG.
10111         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
10112         Windows (CryptoAPI).
10113
10114 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
10115
10116         * locales.c: Fix build.
10117
10118 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
10119
10120         * culture-info-tables.h: reflecting locale-builder updates.
10121
10122 2004-05-25  Jackson Harper  <jackson@ximian.com>
10123
10124         * locales.c: When creating the current culture use the $LANGs
10125         specific culture. So DateTimeFormat and NumberFormat entries are created.
10126         
10127 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
10128
10129         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
10130         a char array as parameter.
10131
10132 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
10133
10134         * image.c: In mono_image_open(), always use an absolute path name to
10135           look for already loaded images.
10136
10137 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
10138
10139         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
10140         missing in the windows build (like older cygwin include files).
10141
10142 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
10143
10144         * icall.c: Fixed check for possible integer overflow in Buffer_
10145         BlockCopy icall. Replaced comments style // by /* */.
10146
10147 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
10148
10149         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
10150         
10151         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
10152         check after MONO_VTADDR. Fixes pinvoke2.exe.
10153
10154         * marshal.h marshal.c metadata.h: Add beginnings of support for
10155         ftnptr -> delegate marshalling.
10156
10157 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
10158
10159         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
10160         * threads.c: Fix warnings.
10161
10162 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
10163
10164         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
10165         * icall.c: Registered icalls for Suspend and Resume.
10166         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
10167           Thread.Abort.
10168         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
10169         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
10170         * process.c: Use WaitForSingleObjectEx.
10171         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
10172           checkpoints.
10173         * threads.c, threads.h: Make use of new Ex wait methods. Improved
10174           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
10175           for Suspend and Resume. Added new mono_thread_stop, used for stoping
10176           background threads. Added basic support for Abort in Windows.
10177           Start new threads using a managed delegate invoke wrapper. This wrapper
10178           has an interruption checkpoint that is needed since an interruption
10179           can be requested before the thread leaves the unmanaged code that starts 
10180           the thread.
10181         * marshal.c: Added interruption checkpoint after every native call, and
10182           also before managed calls for wrappers called from unmanaged code to
10183           go into managed code.
10184         * object.h: Added new field in MonoThread to keep track of interruption
10185           requests.
10186
10187 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
10188
10189         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
10190         calls.
10191
10192 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10193
10194         * appdomain.c:
10195         * assembly.c:
10196         * gc.c:
10197         * locales.c:
10198         * mono-config.c:
10199         * rand.c: getenv -> g_getenv (windows!)
10200
10201         * process.c: complete_path is also used on non-windows platforms.
10202
10203 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10204
10205         * icall.c: new signature for Process_Start.
10206
10207         * process.[ch]: new signature for Process_Start. If we're on windows
10208         and UseShellExecute is false, we have to search for the program by
10209         ourselves if we don't get a full path.
10210
10211 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
10212
10213         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
10214         marshalling and call CleanUpNativeData if needed. Fixes #58646.
10215
10216 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10217
10218         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
10219         Fixes bug #58373.
10220
10221 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10222
10223         * process.c: use double quotes to quote program name and arguments on
10224         windows. Fixes bug #58575.
10225
10226 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10227
10228         * file-io.c: don't return "." and ".." when using windows Find*File.
10229
10230 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
10231
10232         * marshal.c: Don't pass wrappers to message init because method 
10233         addressed used to lookup metadata. part of remoting[2|3] fix.
10234
10235 2004-05-15  Jackson Harper  <jackson@ximian.com>
10236
10237         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
10238         path is essentially the same as MONO_PATH except that it points to
10239         GACs instead of lib directories.
10240         * loader.h: The user gac is gone so we dont need function to
10241         enable/disable it.
10242         * mono-config.c: user gac option is now gone.
10243         
10244 2004-05-15  Jackson Harper  <jackson@ximian.com>
10245
10246         * culture-info.h: Make defines more consistent, add calendar data
10247         to the culture info table.
10248         * culture-info-tables.h: Add basic calendar data. Basically
10249         everyone gets default gregorian until all the data is
10250         updated.
10251         * locales.c: Use the new consistent defines. Set calendar data for
10252         culture info objects.
10253         * object.h: add a field for calendar data to CultureInfo
10254         
10255 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
10256
10257         * image.c: image->runtime_invoke_cache is keyed on signatures now.
10258         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
10259         a signature.
10260         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
10261         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
10262         an extra param that is the pointer of the method to invoke. The IL for
10263         the invoke method is no longer specific to the method, but to the
10264         signature of the method. Thus, we can share the same code for multiple
10265         methods. This reduces the number of methods that have to be compiled.
10266
10267 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
10268
10269         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
10270
10271         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10272
10273         * icall.c: Optimize Buffer.BlockCopy.
10274
10275 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10276
10277         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
10278         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
10279         quote). Changed them to "MMMM yyyy".
10280
10281 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
10282
10283         * rand.c
10284         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
10285
10286 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
10287
10288         * reflection.h: Updated after changes to managed structures.
10289
10290         * appdomain.c: Bump corlib version.
10291
10292 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10293
10294         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
10295         windows.
10296
10297 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10298
10299         * Makefile.am: link to ../os/libmonoos.la on windows.
10300
10301         * assembly.c:
10302                 -If MONO_DEBUG, warn about non-existing directories in
10303                 MONO_PATH.
10304                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
10305                 compile time variable.
10306                 -Removed init_default_path and call mono_set_rootdir from
10307                 libmonoos.a instead (windows only).
10308
10309         * assembly.h: declare mono_assembly_getrootdir().
10310
10311         * domain.c:
10312         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
10313
10314         * loader.c: s/getenv/g_getenv/
10315
10316 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
10317
10318         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
10319
10320         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
10321
10322         * metadata.h: Add new marshalling conversions.
10323
10324         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
10325         function.
10326
10327         * reflection.c (mono_reflection_get_type): Lookup the type in all
10328         modules of a multi-module assembly. Fixes #58291.
10329
10330 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
10331
10332         * threads.c: Before aborting a background, set the StopRequested
10333         state.  This avoids throwing the Abort exception.
10334         In mono_thread_manage, don't continue with the shutdown until all
10335         aborted threads have actually stopped.
10336
10337 2004-05-10  Jackson Harper  <jackson@ximian.com>
10338
10339         * locales.c: Remove the modifier from culture names.
10340         
10341 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10342
10343         * Makefile.am: monosn is not installed any more. It has been deprecated
10344         in favor of sn.
10345
10346 2004-05-07  Jackson Harper  <jackson@ximian.com>
10347
10348         * locales.c
10349         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
10350         Fix array construction, add bailout if the length is 0.
10351
10352 2004-05-07  Dick Porter  <dick@ximian.com>
10353
10354         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
10355         machine doesn't have a DNS entry.  Patch by Urs Muff
10356         (umuff@quark.com), fixes bug 57928.
10357
10358 2004-05-06  Jackson Harper  <jackson@ximian.com>
10359
10360         * reflection.c: Handle null PublicTokens properly. alloc mem for
10361         assembly names culture so we dont crash when freeing it.
10362         
10363 2004-05-06  Jackson Harper  <jackson@ximian.com>
10364
10365         * assembly.c: Check the usergac when loading with partial names.
10366         
10367 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
10368
10369         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
10370         does nothing for now (not required for Linux/Windows) but the class
10371         library can call it (and a newer or modified runtime could need it).
10372         * icall.c: Registred icall.
10373
10374 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10375
10376         * loader.c: prints a message on module loading error we set MONO_DEBUG
10377         environment variable.
10378
10379 2004-05-05  Jackson Harper  <jackson@ximian.com>
10380
10381         * appdomain.c: Handle PublicKeyToken=null properly.
10382         
10383 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
10384
10385         * environment.c|h: Added icall ves_icall_System_Environment_
10386         GetOSVersionString to get the current OS version as a string.
10387         * icall.c: Registred icall.
10388
10389 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
10390
10391         * object.c: in mono_object_get_virtual_method(), take into account that
10392         non-virtual methods don't have a slot in the vtable. Check needed when
10393         the object is a proxy.
10394
10395 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
10396
10397         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
10398         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
10399
10400         * object.c (mono_class_compute_gc_descriptor): Fix warning.
10401
10402         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
10403         passed when a valuetype is expected.
10404
10405         * object.c (mono_unhandled_exception): Only set the exit code if the
10406         exception happens in the main thread. Fixes thread5.exe.
10407
10408         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
10409         invalid names. Fixes #58047.
10410
10411 2004-05-03  Jackson Harper  <jackson@ximian.com>
10412
10413         * assembly.c: This line was committed accidently and is unneeded.
10414         
10415 2004-05-03  Jackson Harper  <jackson@ximian.com>
10416
10417         * icall.c: Add new icall for Assembly::LoadWithPartialName
10418         * assembly.c/.h: new function that probes the GAC to load partial
10419         assembly names by Paolo Molaro.
10420         
10421 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10422
10423         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
10424         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
10425         (type_get_fully_qualified_name): Added PublicKeyToken when building a
10426         full type name.
10427
10428 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10429
10430         * appdomain.c: fixed check for 'neutral' culture and removed warning.
10431         * reflection.c: fix bug when parsing a full type name and Version is not
10432         the last thing in the string.
10433
10434 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
10435
10436         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
10437         crashes when it is freed.
10438
10439 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10440
10441         * assembly.c: print the compat warning to stderr.
10442
10443 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
10444
10445         * assembly.c (mono_assembly_load_references): Add a compatibility
10446         hack to run old applications that might be still referencing the
10447         3300-based assemblies, only do this for System.xxx.
10448
10449 2004-05-01  Jackson Harper  <jackson@ximian.com>
10450
10451         * appdomain.c: If the culture is neutral we set it to "".
10452         
10453 2004-04-29  Jackson Harper  <jackson@ximian.com>
10454
10455         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
10456
10457 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
10458  
10459         * string-icalls.c: added low overhead function for copying chars
10460         * icall.c: added needed icall for the above function
10461  
10462 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10463
10464         * icall.c: fix return value of get_global_assembly_cache.  Implemented
10465         Environment.GetLogicalDrives.
10466
10467 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
10468
10469         * rand.c: try and talk to egd or prngd
10470         for random bytes if opening devices fail.
10471
10472 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
10473
10474         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
10475         alignment for the type using the native alignment of its members 
10476         instead of using klass->min_align.
10477
10478         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
10479
10480 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10481
10482         * file-io.c:
10483         * socket-io.c: added check for sys/aio.h.
10484
10485 2004-04-28  Dick Porter  <dick@ximian.com>
10486
10487         * threads.c: Don't abort a thread thats already aborting, when
10488         terminating everything.
10489
10490 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10491
10492         * icall.c: added 2 new async calls for Socket.
10493
10494         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
10495         IO on *nix systems.
10496
10497         * threadpool.c: removed unused variable.
10498
10499 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
10500
10501         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
10502
10503 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10504
10505         * locales.c: put back string_invariant_tolower () and
10506         string_invariant_toupper ().
10507
10508 2004-04-26 David Waite <mass@akuma.org>
10509
10510         * file-io.h:
10511         * socket-io.h:
10512         * threads.h:
10513         * unicode.h: remove comma from end of enumeration declarations
10514
10515 2004-04-26 David Waite <mass@akuma.org>
10516
10517         * debug-mono-symfile.h:
10518         * decimal.c:
10519         * mono_debug.h:
10520         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
10521
10522
10523 2004-04-26  Jackson Harper  <jackson@ximian.com>
10524
10525         * appdomain.c: Increment version number.
10526         
10527 2004-04-26  Jackson Harper  <jackson@ximian.com>
10528
10529         * appdomain.c: Set assembly references public token value when
10530         PublicKeyToken is specified, not the hash_value. Free public token
10531         values when free assembly name data. Previously the public key
10532         token was hex decoded, however we are using hex encoded public key
10533         tokens, so this is not neccasary.
10534         * assembly.c: Lookup assemblies in the gac if their public token
10535         value is set. Add function to allow enabling user gac
10536         lookups. Specify whether or not the assembly was loaded from the
10537         GAC. Compare full assembly names when checking the cache for
10538         assemblies (Temporarily disabled see comment in code). Remove
10539         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
10540         specifies trace-loader they get extra info to stdout on the
10541         loading of assemblies.
10542         * image.h: Add a field for an assembly references public token
10543         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
10544         whether an assembly has been loaded from the GAC.
10545         * image.c: Remove a corlib -> mscorlib name mapping.
10546         * loader.h: Add function to enable/disable the user gac.
10547         * mono-config.c: Check if the usergac is enabled in the config
10548         file.
10549         * icall.c: New icall to determine whether or not an assembly has
10550         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
10551         * tabldefs.h: Add constant for assemblyref flag that specifies a
10552         full public key is used instead of a public token.
10553         * reflection.c: Remove mscorlib -> corlib mappings. Set
10554         PublicTokenValue instead of hash value. This value is a hex
10555         string so it does not need to be expanded.
10556
10557 2004-04-26  Martin Baulig  <martin@ximian.com>
10558
10559         * mono-debug-debugger.c (mono_debugger_initialize): Set
10560         `mono_debugger_initialized' before calling mono_debug_lock().
10561
10562 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
10563
10564         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
10565           InternalToUpper/InternalToLower.
10566         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
10567           removed invariant culture shortcut.  This is now done in managed code.
10568         * locales.c: (string_invariant_toupper/tolower) removed.
10569
10570 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10571
10572         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
10573         Added Poll internal call.
10574
10575         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
10576         call for Poll. Select was too heavy for polling a single socket.
10577
10578         * threadpool.[ch]: added mono_threadpool_cleanup.
10579         * threads.c: use it. Don't use Thread_Abort on windows.
10580
10581 2004-04-23  Martin Baulig  <martin@ximian.com>
10582
10583         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
10584
10585 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
10586
10587         * icall.c: Registred new icalls for key pair protection and added an
10588         icall for Environment.GetFolderPath on Windows.
10589         * security.c|h: Added new icalls for key pair protection.
10590
10591 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10592
10593         * socket-io.c: don't display the non-supported family warning for known
10594         families. Now this is not displayed on windows when checking support
10595         for IPv4/IPv6.
10596
10597 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10598
10599         * class.c: don't display the layout warning for static fields.
10600
10601 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
10602
10603         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
10604         * locales.c, locales.h: Added new icalls for culture-specific
10605         Char.ToLower and Char.ToUpper.
10606
10607 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10608
10609         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
10610         by David Waite.
10611
10612 2004-04-20  Martin Baulig  <martin@ximian.com>
10613
10614         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
10615         of the type name before passing it to mono_reflection_type_from_name().
10616
10617 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
10618
10619         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
10620         encodings here. Fixes #56965.
10621
10622 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
10623
10624         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
10625         fix test on strstr result not that I can see anything that
10626         relies on the result.
10627
10628 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
10629
10630         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
10631         Fixes #57081.
10632
10633         * marshal.c (mono_marshal_get_string_encoding): New helper function.
10634
10635         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
10636         function to determine which marshalling to use for strings. Fixes
10637         #56965.
10638
10639         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
10640
10641         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
10642
10643 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
10644
10645         * icall.c: #include mono-config.h
10646
10647 2004-04-15  Jackson Harper  <jackson@ximian.com>
10648
10649         * culture-info-tables.h: Fix date formats for en-US culture.
10650         
10651 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
10652
10653         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
10654         ThreadPool.SetMinThreads.
10655         * threadpool.c: Implemented ThreadPool.GetMinThreads and
10656         ThreadPool.SetMinThreads.
10657
10658 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
10659
10660         * mono-config.c: also load the .config file in the directory
10661         where the assembly was found.
10662
10663 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
10664
10665         * assembly.c: load per-assembly config files.
10666         * icall.c: decrapified code to get the config dir and moved to
10667         mono-config.c.
10668         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
10669         per-assembly config files. When doing a dll map lookup give precedence
10670         to the per-assembly data.
10671
10672 2004-04-14  Martin Baulig  <martin@ximian.com>
10673
10674         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
10675         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
10676         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
10677
10678         * mono-debugger-debugger.c: While the debugger is locked, remember
10679         whether the symbol tables have changes and send one single
10680         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
10681
10682 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
10683
10684         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
10685
10686         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
10687         function.
10688
10689         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
10690         account when marshalling string arrays. Fixes #56965.
10691
10692 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
10693
10694         * icall.c: Add new icalls mapping for security.
10695         * security.c|h: Add internal calls for WindowsIdentity,
10696         WindowsImpersonationContext and WindowsPrincipal.
10697
10698 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
10699
10700         * class.c: Added comment to ensure the System.MonoDummy class
10701         is removed when no longer necessary
10702
10703 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
10704
10705         * appdomain.c: Pass arguments to the bootstraping exceptions to
10706         minimize JITed methods at boot
10707
10708         * metadata.c (mono_exception_from_name_two_strings): Allow for the
10709         second string to be null.
10710
10711         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
10712         Change the protocol to minimize the JIT methods at startup.  Now
10713         it Returns the internal codepage, if the value of "int_code_page"
10714         is 1 at entry, and we can not compute a suitable code page
10715         number, returns the code page as a string.
10716
10717 2004-04-13  Jackson Harper  <jackson@ximian.com>
10718
10719         * culture-info-tables.h: Fix number of decimal digits for all
10720         english locales.
10721
10722 2004-04-13  Jackson Harper  <jackson@ximian.com>
10723
10724         * icall.c: Clairfy out of sync error message. It is not always
10725         your corlib that is out of sync.
10726
10727 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
10728
10729         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
10730         properties when only the set accessor is overriden. Fixes #55874.
10731
10732 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
10733
10734         * assembly.c (mono_assembly_load_references): Make this thread safe.
10735         Fixes #56327.
10736
10737 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
10738
10739         * monosn.c: Add missing initialization calls.
10740
10741 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
10742
10743         * locales.c:
10744         ves_icall_System_Globalization_CultureInfo_construct_number_format
10745         Fix g_assert so it compiles on fussier compilers re int/ptr
10746         mismatch
10747
10748 2004-04-08  Dick Porter  <dick@ximian.com>
10749
10750         * socket-io.h:
10751         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
10752         53992.  Also rearrange the code so that the internal calls return
10753         an error value and exceptions are thrown from managed code.
10754
10755         * icall.c: Add type info to the socket icalls.
10756
10757 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10758
10759         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
10760         owes me a beer.
10761
10762 2004-04-07  Martin Baulig  <martin@ximian.com>
10763
10764         * class.c (mono_class_from_generic_parameter): Don't default
10765         `klass->parent' to `mono_defaults.object_type'.
10766
10767 2004-04-07  Martin Baulig  <martin@ximian.com>
10768
10769         * reflection.c (mono_reflection_initialize_generic_parameter): Set
10770         `param->pklass->reflection_info'.       
10771
10772 2004-04-07  Jackson Harper  <jackson@ximian.com>
10773
10774         * culture-info-tables.h: Fix date separator symbol.
10775         
10776 2004-04-07  Martin Baulig  <martin@ximian.com>
10777
10778         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
10779         from System.Type to System.MonoType.
10780
10781 2004-04-07  Martin Baulig  <martin@ximian.com>
10782
10783         * reflection.h
10784         (MonoReflectionGenericParam): Added `has_reference_type' and
10785         `has_value_type' fields.
10786
10787         * reflection.c (mono_image_get_generic_param_info): Encode the
10788         correct flags if we have the `class' or `struct' constraint.
10789
10790 2004-04-07  Martin Baulig  <martin@ximian.com>
10791
10792         * reflection.h
10793         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
10794
10795 2004-04-07  Jackson Harper  <jackson@ximian.com>
10796
10797         * appdomain.c: Revert extra patches, just wanted to bump the
10798         version number.
10799         
10800 2004-04-07  Jackson Harper  <jackson@ximian.com>
10801
10802         * Makefile.am: Add culture-info private headers.
10803         * icall.c: Add new icalls for contructing locales.
10804         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
10805         * locales.h: Declare new culture info construction methods.
10806         * object.h: Add new fields used to avoid the CultureMap to
10807         MonoCultureInfo.
10808         * culture-info.h: Definition of structs used in the culture info
10809         tables.
10810         * culture-info-tables.h: Autogenerated tables that contain culture
10811         info data. This file was generated with the locale-builder tool.
10812         * appdomain.c: Incement corlib version number.
10813         
10814 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
10815
10816         * appdomain.c: (mono_runtime_init) move mono_thread_init
10817         to before mono_object_new calls so critical sections
10818         are initialized before use.
10819
10820 2004-04-07  Martin Baulig  <martin@ximian.com>
10821
10822         * icall.c
10823         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
10824         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
10825         (ves_icall_MonoGenericParam_initialize): Removed.
10826         (monogenericparam_icalls): Removed.
10827         (generictypeparambuilder_icalls): Added new table for
10828         System.Reflection.Emit.GenericTypeParameterBuilder.
10829
10830         * reflection.c
10831         (mono_reflection_define_generic_parameter): Removed.
10832         (mono_reflection_initialize_generic_parameter): This is now called
10833         from GenericTypeParameterBuilder's .ctor.
10834
10835 2004-04-06  Martin Baulig  <martin@ximian.com>
10836
10837         * class.c (mono_class_init): Don't inflate nested classes in a
10838         generic instance.
10839         (mono_type_get_name_recurse): Include the generic arguments for
10840         generic instances and generic type declarations.
10841         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
10842         (_mono_class_get_instantiation_name): Removed.
10843         (mono_class_create_generic): Always use `gklass->name' as our name.
10844
10845         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
10846
10847         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
10848         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
10849         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
10850         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
10851         closed generic methods here.
10852
10853         * reflection.c
10854         (mono_reflection_generic_inst_get_nested_types): Removed.
10855         (inflate_mono_method): Copy the generic parameters from the
10856         MonoMethodHeader into out MonoGenericMethod.
10857
10858 2004-04-06  Martin Baulig  <martin@ximian.com>
10859
10860         * row-indexes.h
10861         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
10862
10863         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
10864
10865         * reflection.c (build_compressed_metadata): If we have any entries
10866         in the GenericParam, MethodSpec or GenericParamConstraint tables,
10867         set the header version to 1.1.
10868
10869 2004-04-06  Martin Baulig  <martin@ximian.com>
10870
10871         * class.c (mono_class_init): If we're a generic instance,
10872         initialize our nested classes, too.
10873         (_mono_class_get_instantiation_name): Deal with the new `!%d'
10874         suffix. 
10875
10876 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10877
10878         * process.c: quote the argument passed to the shell on windows.
10879
10880 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
10881
10882         * threads.c (mono_alloc_special_static_data): Allow this to be
10883         called during startup.
10884
10885 2004-04-02  Martin Baulig  <martin@ximian.com>
10886
10887         * icall.c
10888         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
10889
10890 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
10891
10892         * icall.c: Fix build.
10893
10894 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
10895
10896         * Makefile.am: Added security.c|h.
10897         * icall.c: Added icall for get_UserName;
10898         * security.c: New file for security related icalls. Added function
10899         get_UserName for System.Environment (fix #56144).
10900         * security.h: New. Header file for security.c
10901
10902 2004-04-02  Dick Porter  <dick@ximian.com>
10903
10904         * icall.c: Deleted the icalls that were obsoleted some time ago
10905         by the ICU string code, and which were mixed into the icall
10906         rearranging.  Fixes bug 55969.
10907
10908         * string-icalls.h: 
10909         * string-icalls.c: Deleted the code that those icalls reference.
10910
10911 2004-04-01  Martin Baulig  <martin@ximian.com>
10912
10913         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
10914
10915         * class.c (mono_class_from_generic_parameter): Don't set 
10916         TYPE_ATTRIBUTE_INTERFACE.
10917         (my_mono_class_from_generic_parameter): Likewise.
10918
10919 2004-04-01  Martin Baulig  <martin@ximian.com>
10920
10921         * loader.c (find_method): Added an optional `MonoClass *ic'
10922         argument to search in a specific interface.
10923         (mono_get_method_constrained): New public function.
10924
10925 2004-04-01  Martin Baulig  <martin@ximian.com>
10926
10927         * reflection.c (mono_image_get_generic_field_token): Use the
10928         `handleref' cache here.
10929
10930 2004-04-01  Martin Baulig  <martin@ximian.com>
10931
10932         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
10933
10934         * reflection.c (create_generic_typespec): Use the `typespec' hash
10935         here, not the `typeref' one.    
10936
10937 2004-04-01  Martin Baulig  <martin@ximian.com>
10938
10939         * class.c (mono_class_inflate_generic_type): Moved the
10940         functionality into a new static inflate_generic_type() which
10941         returns NULL if it didn't do anything.  Only increment the
10942         `mono_stats.inflated_type_count' if we actually inflated
10943         something.
10944         (mono_class_get_full): Check the classes type to see whether we
10945         need to inflate it; also inflate MONO_TYPE_(M)VAR.
10946
10947 2004-04-01  Jackson Harper  <jackson@ximian.com>
10948
10949         * reflection.c: Set culture for assembly references.
10950         
10951 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
10952
10953         * reflection.[ch], icall.[ch], Fix support for pinning variables.
10954
10955 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10956
10957         * assembly.c:
10958         (do_mono_assembly_open): the critical section also covers
10959         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
10960
10961 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10962
10963         * threads.c:
10964         (mono_manage_threads): abort the background threads when finishing.
10965         Fixes bug #47232.
10966
10967 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10968
10969         * gc.c: only close the done_event handle if there was no timeout.
10970         C-ified comments.
10971
10972 2004-03-30  Martin Baulig  <martin@ximian.com>
10973
10974         * icall.c (icall_entries): It's called "System.Activator", not
10975         "System.Activation".    
10976
10977 2004-03-30  Martin Baulig  <martin@ximian.com>
10978
10979         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
10980         (mono_class_create_from_typespec): Likewise.
10981
10982 2004-03-30  Martin Baulig  <martin@ximian.com>
10983
10984         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
10985         `has_ctor_constraint' and `initialized'.
10986
10987 2004-03-30  Martin Baulig  <martin@ximian.com>
10988
10989         * reflection.c (encode_new_constraint): New static function to add
10990         the constructor constraint attribute to a type parameter.
10991         (encode_constraints): Call encode_new_constraint() if necessary.
10992
10993         * reflection.h
10994         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
10995
10996         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
10997         
10998 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
10999
11000         * reflection.c, icall.c: add support for pinning variables. 
11001
11002 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
11003
11004         * marshal.c (mono_marshal_get_managed_wrapper):
11005         init bool local with zero rather than null.
11006
11007 2004-03-29  Martin Baulig  <martin@ximian.com>
11008
11009         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
11010         the "official" behavior here.
11011         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
11012
11013 2004-03-29  Martin Baulig  <martin@ximian.com>
11014
11015         * icall.c: Reflect latest API changes.
11016
11017 2004-03-29  Martin Baulig  <martin@ximian.com>
11018
11019         * loader.c (mono_get_method_from_token): Also call
11020         mono_metadata_load_generic_params () for abstract and interface
11021         methods; replace the type arguments in the method signature with
11022         the ones which are loaded from the metadata.
11023
11024 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
11025
11026         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
11027         of the lock is not the current thread. MS.NET don't do it, in spite of
11028         what the documentation says. See bug #56157.
11029
11030 2004-03-28  Martin Baulig  <martin@ximian.com>
11031
11032         * class.c (mono_class_init): Don't call init_properties() and
11033         init_events() for generic instances; set `prop->parent' when
11034         inflating properties.
11035
11036         * reflection.c (mono_generic_inst_get_object): Call
11037         `mono_class_init (ginst->klass)'.
11038         (mono_type_get_object): Only create a MonoGenericInst if your
11039         generic type is a TypeBuilder.
11040         (do_mono_reflection_bind_generic_parameters): Only set
11041         `ginst->is_dynamic' if our generic type is a TypeBuilder.
11042
11043 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
11044
11045         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
11046         Fixes #56091.
11047
11048 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11049
11050         * icall.c: added Kill_internal icall.
11051         * process.[ch]: added Kill_internal icall.
11052
11053 2004-03-25  Martin Baulig  <martin@ximian.com>
11054
11055         * class.h (MonoStats): Added `generic_instance_count',
11056         `inflated_method_count', `inflated_type_count' and
11057         `generics_metadata_size'.       
11058
11059 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11060
11061         * reflection.c: no warnings now.
11062
11063 2004-03-25  Martin Baulig  <martin@ximian.com>
11064
11065         * class.c (mono_class_get_full): New public function; does a
11066         mono_class_get(), but also takes a `MonoGenericContext *'.
11067
11068         * loader.c (mono_field_from_memberref): Renamed to
11069         `field_from_memberref', made static and added `MonoGenericContext *'
11070         argument.
11071         (mono_field_from_token): Added `MonoGenericInst *' argument.
11072         (method_from_memberef): Likewise.
11073         (mono_get_method_from_token): Likewise.
11074         (mono_get_method_full): New public function; does a
11075         mono_get_method(), but also takes a `MonoGenericContext *'.
11076
11077         * verify.c (mono_method_verify): Get the method's generic context
11078         and pass it to mono_field_from_token(), mono_get_method_full() and
11079         mono_class_get_full().
11080
11081 2004-03-25  Martin Baulig  <martin@ximian.com>
11082
11083         * class.c (mono_class_inflate_generic_type): Take a
11084         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
11085         `MonoGenericMethod *'.
11086
11087 2004-03-25  Martin Baulig  <martin@ximian.com>
11088
11089         * loader.h (MonoMethodInflated): Store the MonoGenericContext
11090         instead of the MonoGenericMethod here.
11091
11092 2004-03-25  Martin Baulig  <martin@ximian.com>
11093
11094         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
11095         each time we create a new MonoGenericInst, we also create a new
11096         context which points back to us.
11097
11098         * class.c (inflate_method): Use `ginst->context' instead of
11099         creating a new context.
11100
11101         * loader.c (method_from_memberref): Use
11102         `klass->generic_inst->context' instead of creating a new context.
11103
11104 2004-03-25  Martin Baulig  <martin@ximian.com>
11105
11106         * class.h (MonoGenericContext): New struct.
11107         (MonoGenericMethod): Removed `generic_inst'.
11108
11109         * class.c (mono_class_inflate_generic_method): Take a
11110         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
11111
11112 2004-03-25  Martin Baulig  <martin@ximian.com>
11113
11114         * loader.h (MonoMethodInflated): New typedef.
11115
11116         * metadata.h (MonoMethodSignature): Removed `gen_method', make
11117         `generic_param_count' consume just 30 bits, added `is_inflated'
11118         and `has_type_parameters' flags (one bit each).
11119
11120         * class.c (mono_class_inflate_generic_method): Create a
11121         MonoMethodInflated instead of a MonoMethodNormal and set
11122         `is_inflated' in the method signature.
11123
11124         * class.h (MonoGenericMethod): Removed `generic_method'.
11125
11126 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
11127
11128         * image.c: Make sure the name of a MonoImage is always an absolute path.
11129           This fixes bug #54415.
11130
11131 2004-03-24  Martin Baulig  <martin@ximian.com>
11132
11133         * class.c (mono_class_setup_vtable): If we're a generic instance,
11134         use our generic type's vtable size.
11135
11136 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
11137
11138         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
11139         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
11140         problems.
11141
11142 2004-03-23  Martin Baulig  <martin@ximian.com>
11143
11144         * class.h (MonoDynamicGenericInst): Added `int count_events' and
11145         `MonoEvent *events'.
11146
11147         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
11148         (typebuilder_icalls): Added "get_event_info"; calls
11149         mono_reflection_event_builder_get_event_info(). 
11150
11151         * reflection.c (mono_reflection_generic_inst_initialize): Added
11152         `MonoArray *events'.
11153         (mono_reflection_event_builder_get_event_info): New function.
11154
11155 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
11156
11157         * object.h: add mono_type_initialization_init
11158
11159         * object.c (mono_runtime_class_init): 
11160         implement class constructor synchronization rules
11161         to cope with threading issues.  
11162         add mono_type_initialization_init
11163
11164         * appdomain.c (mono_runtime_init): call 
11165         mono_type_initialization_init
11166
11167         * class.h: removing initializing field from MonoVTable
11168
11169 2004-03-23  Martin Baulig  <martin@ximian.com>
11170
11171         * class.c (my_mono_class_from_generic_parameter): Use
11172         `param->name' if it's not NULL. 
11173
11174 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
11175
11176         * class.c: do not insert non-virtual methods in the vtable.
11177         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
11178         that means the method is non-virtual. This never would have
11179         happened before.
11180
11181 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
11182
11183         * profiler.c: Added lock for accessing coverage_hash.
11184
11185 2004-03-22  Martin Baulig  <martin@ximian.com>
11186
11187         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
11188         `method->method->signature->generic_param_count != 0' to make it
11189         work for interface methods.
11190
11191 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11192
11193         * process.c: quote the string passed to the shell using g_shell_quote.
11194
11195 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11196
11197         * threads.c:
11198         (mono_threads_manage): don't remove the finalizer thread and self
11199         from the threads hash table so that mono_thread_manage can be called
11200         more than once.
11201
11202 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11203
11204         * process.c: quote the arguments when UseShellExecute is true. Fixes
11205         bug #55790.
11206
11207 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11208
11209         * threads.c: set mono_thread_detach as a cleanup routine for every
11210         thread. This way it's always executed upon thread termination, either
11211         aborted or finished normally. No more xsp hangs!
11212
11213 2004-03-17  Martin Baulig  <martin@ximian.com>
11214
11215         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
11216         `int count_nested' and a `MonoType **nested'.
11217
11218         * reflection.c (mono_reflection_bind_generic_parameters): Moved
11219         most of the functionality into a new static
11220         do_mono_reflection_bind_generic_parameters() and don't take a
11221         `MonoType *nested_in' argument any more.  Don't compute nested
11222         types here.
11223         (mono_reflection_generic_inst_get_nested_types): New public method
11224         to get nested types.
11225
11226         * class.c (mono_class_create_generic): Set `klass->nested_in' if
11227         we're a nested class.
11228
11229         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
11230         mono_reflection_generic_inst_get_nested_types() to compute the
11231         nested types.
11232
11233 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
11234
11235         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
11236         descriptive error message under windows.
11237         
11238 2004-03-17  Martin Baulig  <martin@ximian.com>
11239
11240         * class.c (dup_type): Added `const MonoType *original' argument;
11241         copy the attrs from the original type.
11242
11243 2004-03-17  Martin Baulig  <martin@ximian.com>
11244
11245         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
11246         `m->generic_inst_cache' here.
11247
11248 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
11249
11250         * exception.h exception.c: Add stack_overflow_exception.
11251
11252 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11253
11254         * threadpool.c:
11255         (overlapped_callback): call SetEvent *after* invoking the callback.
11256         No need to call CloseHandle.
11257
11258 2004-03-16  Martin Baulig  <martin@ximian.com>
11259
11260         * reflection.c (mono_image_get_fieldref_token): Take a
11261         `MonoReflectionField *' instead of a `MonoClassField *' and a
11262         `MonoClass *'; store the `MonoReflectionField *' in the hash.
11263
11264 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11265
11266         * appdomain.c: don't add the culture to the filename we're looking for
11267         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
11268
11269 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11270
11271         * locales.c: don't ignore symbols when doing case insensitive compares.
11272         Thanks Dick! Fixes bug #54046.
11273
11274         * threads.c: surround 'threads' usage with enter/leave in
11275         mono_thread_manage.
11276
11277 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
11278
11279         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
11280         implicitly marshalled as [Out]. Fixes #55450.
11281
11282         (mono_marshal_get_runtime_invoke): Zero out the result if there is
11283         an exception.
11284
11285 2004-03-16  Martin Baulig  <martin@ximian.com>
11286
11287         * class.c (mono_class_from_generic_parameter): Use the actual
11288         parameter name. 
11289
11290 2004-03-16  Martin Baulig  <martin@ximian.com>
11291
11292         * reflection.c (type_get_signature_size): New static function.
11293         Compues the size of the type in a method signature.
11294         (method_get_signature_size): New static function; calls
11295         type_get_signature_size() to compute the actual size of the
11296         method's signature.
11297         (method_encode_signature): Use method_get_signature_size() to get
11298         the signature's size rather than using `nparams * 10'.
11299
11300 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11301
11302         * file-io.h: define here WapiOverlapped on windows. I don't want the
11303         regular OVERLAPPED one.
11304
11305         * file-io.c:
11306         * threadpool.c: somehow, BindIoCompletionCallback is not found.
11307         Disabling AIO on windows.
11308
11309 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11310
11311         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
11312         bug #55385.
11313
11314 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11315
11316         * appdomain.c: upgraded corlib version.
11317
11318         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
11319         and BeginWrite. Allow opening files for asynchrnous operations.
11320
11321         * file-io.h: new struct that maps FileStreamAsyncResult.
11322         * icall.c: added new icalls.
11323         * process.[ch]: support setting child process environment variables
11324         and use the SHELL or COMSPEC when UseShellExecute is true.
11325
11326         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
11327         callback for async. IO is here and also BindHandle.
11328
11329         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
11330         from here.
11331
11332 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
11333
11334         * reflection.c (create_custom_attr): Allow len == 0.
11335
11336         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
11337         computation on big-endian machines.
11338
11339 2004-03-13  Martin Baulig  <martin@ximian.com>
11340
11341         * class.h (MonoGenericInst): Added `int count_ifaces'.
11342
11343         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
11344         `ginst->count_ifaces' instead `klass->interface_count' since we
11345         may get called before the vtable is created.
11346
11347         * loader.c (mono_method_get_param_names): If we're a generic
11348         instance, return and don't initialize the class.
11349
11350         * reflection.c (mono_reflection_setup_generic_class): Don't call
11351         ensure_runtime_vtable().
11352         (mono_reflection_bind_generic_parameters): Set
11353         `ginst->count_ifaces'.
11354
11355 2004-03-11  Jackson Harper <jackson@ximian.com>
11356
11357         * icall.c:
11358         * unicode.c:
11359         * unicode.h: Remove unused System.Char icalls.
11360         
11361 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
11362
11363         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
11364         code when we P/Invoke the first library in Windows.Forms, instead
11365         of when we first open the assembly.
11366
11367         * assembly.c: Drop the lookup from here.
11368
11369 2004-03-10  Martin Baulig  <martin@ximian.com>
11370
11371         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
11372         class for properties, fields and events.  Finally fixes #54945.
11373
11374 2004-03-10  Martin Baulig  <martin@ximian.com>
11375
11376         * metadata.c (mono_metadata_class_equal): New static function;
11377         checks whether two generic instances or two generic parameters are
11378         equal.
11379         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
11380         compare classes.        
11381
11382 2004-03-10  Martin Baulig  <martin@ximian.com>
11383
11384         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
11385
11386         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
11387         argument and write it into the `reflection_info' field.
11388
11389         * icall.c
11390         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
11391         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
11392
11393 2004-03-09  Jackson Harper  <jackson@ximian.com>
11394
11395         * char-conversions.h: use 8 bits for numeric data its all we need
11396         * icall.c: numeric data is only 8 bits now.
11397
11398 2004-03-09  Martin Baulig  <martin@ximian.com>
11399
11400         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
11401
11402         * class.c (init_properties, init_events): Initialize the new
11403         `parent' field.
11404
11405         * reflection.c (typebuilder_setup_properties): Likewise.
11406         (typebuilder_setup_events): Likewise.
11407
11408         * reflection.h (MonoEventInfo): Replaced `parent with
11409         `declaring_type' and `reflected_type'.
11410
11411         * icall.c (ves_icall_get_property_info): Distinguish between
11412         declaring and reflected type.
11413         (ves_icall_get_event_info): Likewise.
11414
11415 2004-03-09  Martin Baulig  <martin@ximian.com>
11416
11417         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
11418         (ves_icall_Type_GetField): Correctly set field->klass.
11419
11420 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
11421
11422         * loader.h: Fix warning.
11423
11424 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
11425
11426         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
11427         library routine if present.  Notice that it will still continue
11428         executing even if its missing, for those working on the Gtk#
11429         edition of Windows.Forms.
11430
11431         * assembly.c (do_mono_assembly_open): If loading the
11432         System.Windows.Forms call mono_loader_wini_init.
11433
11434 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
11435
11436         * class.h: Added MonoRemoteClass struct.
11437         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
11438         function for MonoStrings.
11439         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
11440         Added internal call for getting the proxy type.
11441         * marshal.c: Get the type of transparent proxies from its remote_class.
11442         Added methods that generate the IL for type checks and casts:
11443         mono_marshal_get_isinst, mono_marshal_get_castclass, 
11444         mono_marshal_get_proxy_cancast.
11445         * marshal.h: Declaration of the previous new methods.
11446         * object.c: Added new moethods for creating and updating MonoRemoteClass
11447         instances: mono_remote_class, mono_upgrade_remote_class, 
11448         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
11449         * verify.c: FIx transparent_proxy_fields layout.
11450         * appdomain.c: Bump corlib version.
11451
11452 2004-03-04  Jackson Harper  <jackson@ximian.com>
11453
11454         * icall.c: Add icall to access char conversion tables.
11455         * char-conversions.h: Character conversion tables.
11456         * Makefile.am: Add char-conversions.h private header file.
11457         
11458 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
11459
11460         * appdomain.c (unload_thread_main): Increase unloading timeout to
11461         10 sec as a temporary workaround for Nant problems.
11462
11463 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
11464
11465         * gc.c: Add checks for GC_enable and GC_disable.
11466
11467         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
11468         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
11469         (bug #54988).
11470         
11471 2004-02-27  Martin Baulig  <martin@ximian.com>
11472
11473         * reflection.c (mono_reflection_bind_generic_parameters): Take a
11474         `MonoReflectionType *' instead of a `MonoType *'.
11475
11476 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
11477
11478         * gc.c (run_finalize): Avoid finalizing the object representing the
11479         finalizer thread.
11480         (finalizer_thread): Fix warning.
11481
11482 2004-02-25  Martin Baulig  <martin@ximian.com>
11483
11484         * class.c (_mono_class_get_instantiation_name): Added `int offset'
11485         argument for nested types.
11486         (mono_class_create_generic): Added support for nested generictypes.
11487
11488         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
11489         `GList *nested'.
11490
11491         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
11492
11493         * reflection.c (method_encode_signature): Increase the minimum
11494         value of `size' from 10 to 11.
11495         (mono_reflection_bind_generic_parameters): Take `int type_argc'
11496         and `MonoType **types' arguments instead of the `MonoArray
11497         *types'; added `MonoType *nested_in'.  Recursively instantiate
11498         nested classes. 
11499
11500 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
11501
11502         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
11503         stack_overflow_ex members which are used by exception handling.
11504
11505         * appdomain.c (mono_runtime_init): Initialize the new members.
11506
11507         * gc.c (mono_gc_enable): New helper function.
11508         * gc.c (mono_gc_disable): New helper function.
11509
11510 2004-02-23  Martin Baulig  <martin@ximian.com>
11511
11512         * icall.c: I must have been really stupid - make it actually work
11513         this time ;-)
11514
11515 2004-02-23  Martin Baulig  <martin@ximian.com>
11516
11517         * loader.c (method_from_memberref): Only inflate the method if
11518         it's in another klass.
11519
11520 2004-02-23  Martin Baulig  <martin@ximian.com>
11521
11522         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
11523         (mono_class_init): If we're a generic instance and an interface,
11524         compute `class->interface_id'; also create `class->interfaces'
11525         here and inflate them.
11526
11527         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
11528         `ginst->is_open'.
11529         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
11530
11531         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
11532
11533 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
11534
11535         * reflection.c (method_encode_code): Improved the error message
11536         generated by the exception.
11537
11538 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11539
11540         * icall.c: Martin did not do what he said in the ChangeLog for
11541         2004-02-18, but put back the changes for properties and events.
11542         Commenting those changes out again and adding comment to bug #54518.
11543         
11544         * process.c: removed warning.
11545
11546 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
11547
11548         * marshal.c (emit_struct_conv): Print an error message instead of
11549         asserting when a type does not have the StructLayout attribute.
11550
11551 2004-02-20  Martin Baulig  <martin@ximian.com>
11552
11553         * reflection.c (mono_type_get_object): Also use the cache for
11554         generic instances.
11555         (mono_reflection_bind_generic_parameters): Always compute
11556         `ginst->ifaces'.        
11557
11558 2004-02-20  Martin Baulig  <martin@ximian.com>
11559
11560         * class.h (MonoGenericMethod): Removed `klass'.
11561
11562         * class.c (mono_class_inflate_generic_method): Added `MonoClass
11563         *klass' argument.
11564
11565 2004-02-20  Martin Baulig  <martin@ximian.com>
11566
11567         * reflection.c (method_encode_methodspec): Actually use the
11568         uninflated signature for the memberref.
11569
11570 2004-02-20  Martin Baulig  <martin@ximian.com>
11571
11572         * class.h (MonoGenericMethod): Removed `declaring'.
11573
11574         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
11575         is NULL, compute it here.
11576
11577 2004-02-20  Martin Baulig  <martin@ximian.com>
11578
11579         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
11580
11581         * metadata.c (mono_metadata_generic_inst_hash): New method.
11582         (mono_metadata_generic_inst_equal): New method.
11583
11584         * reflection.c (mono_reflection_bind_generic_parameters): Use the
11585         `klass->image->generic_inst_cache' cache to avoid creating
11586         duplicate MonoGenericInst's.
11587
11588         * class.c (mono_class_inflate_generic_type): Use the cache.
11589
11590 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
11591
11592         * object.c: fixed gc descriptor calculation for embedded valuetypes.
11593
11594 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11595
11596         * icall.c: added Socket.WSAIoctl icall.
11597
11598         * socket-io.[ch]: implemented
11599         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
11600
11601 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
11602
11603         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
11604
11605 2004-02-18  Urs C Muff  <umuff@quark.com>
11606
11607         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
11608         this work on PPC and other big-endian architectures.
11609
11610         * debug-mono-symfile.h: Prepended the names of all the `guint32'
11611         fields with an underscore to make sure they're only accessed by
11612         the read32() macro.
11613
11614 2004-02-18  Martin Baulig  <martin@ximian.com>
11615
11616         * icall.c: Put the klass->refclass changes back for methods and
11617         fields, but not for properties and events.  We're currently not
11618         distinguishing between DeclaringType and ReflectedType for
11619         properties and events, that's what caused the regressions.
11620
11621 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11622
11623         * object.c:
11624         (mono_async_result_new): the handle can be NULL.
11625
11626         * threadpool.c: Use an event instead of a semaphore, don't initialize
11627         it until needed. This saves quite a few semaphores from being created
11628         when using the threadpool.
11629
11630 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
11631
11632         * object.c (mono_string_is_interned_lookup): Fix interning of long
11633         strings. Fixes #54473.
11634
11635         * domain.c (ldstr_equal): Optimize if the two strings are equal.
11636
11637         * icall.c: Revert the klass->refclass changes since they introduce
11638         regressions (bug #54518).
11639
11640 2004-02-18  Martin Baulig  <martin@ximian.com>
11641
11642         * class.c (mono_class_init): If we're a generic instance and don't
11643         come from a TypeBuilder, inflate our members here.
11644         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
11645         (mono_class_create_generic): New public method.
11646         (mono_class_initialize_generic): Removed.
11647         (get_instantiation_name): Renamed to
11648         _mono_class_get_instantiation_name() and made it public.
11649
11650 2004-02-18  Martin Baulig  <martin@ximian.com>
11651
11652         * class.c (mono_class_inflate_generic_type): Clear the new
11653         instance's `nginst->klass' when inflating a generic instance.
11654         (mono_class_is_subclass_of): Added (basic) support for generic
11655         instances.
11656
11657 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
11658
11659         * appdomain.h, domain.c: use a MonoCodeManager instead of a
11660         MonoMempool to hold compiled native code.
11661
11662 2004-02-17  Martin Baulig  <martin@ximian.com>
11663
11664         * class.h (MonoDynamicGenericInst): Added `count_properties' and
11665         `properties'.
11666
11667         * reflection.c (mono_reflection_generic_inst_initialize): Added
11668         `MonoArray *properties' argument.
11669
11670         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
11671
11672 2004-02-17  Martin Baulig  <martin@ximian.com>
11673
11674         * icall.c (ves_icall_Type_GetFields): Renamed to
11675         ves_icall_Type_GetFields_internal() and added a
11676         `MonoReflectionType *rtype' argument; pass it to
11677         mono_field_get_object() to set the field's "reflected" type.
11678         (ves_icall_Type_GetConstructors): Likewise.
11679         (ves_icall_Type_GetEvents): Likewise.
11680         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
11681         argument; pass it to mono_method_get_object() to set the method's
11682         "reflected" type.       
11683
11684 2004-02-17  Martin Baulig  <martin@ximian.com>
11685
11686         * class.h (MonoDynamicGenericInst): New type.
11687         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
11688
11689         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
11690         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
11691         (ves_icall_MonoGenericInst_GetFields): New interncall.
11692
11693         * class.c (mono_class_from_generic): Don't call
11694         mono_class_initialize_generic() if this is a dynamic instance;
11695         ie. it's being created from a TypeBuilder.
11696         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
11697         `class->byval_arg.type'.
11698
11699         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
11700         to `inflate_method' and made static.
11701         (mono_reflection_inflate_field): Removed.
11702         (mono_reflection_generic_inst_initialize): New public method.
11703
11704         * reflection.h (MonoReflectionGenericInst): Removed `methods',
11705         `ctors' and `fields'; added `initialized'.
11706
11707 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
11708
11709         * debug-helpers.c (mono_method_full_name): Fix output for empty
11710         namespaces.
11711
11712 2004-02-12  Martin Baulig  <martin@ximian.com>
11713
11714         * class.h (MonoClassField): Added `MonoType *generic_type'.
11715
11716         * reflection.c (mono_image_get_fieldref_token): Added support for
11717         instantiated generic types.
11718         (field_encode_inflated_field): Removed.
11719         (mono_image_get_inflated_field_token): Removed.
11720         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
11721
11722         * reflection.h (MonoReflectionInflatedField): Removed.
11723
11724 2004-02-12  Martin Baulig  <martin@ximian.com>
11725
11726         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
11727         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
11728
11729         * reflection.c (mono_image_get_methodspec_token): Take a
11730         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
11731         (mono_image_create_token): Check whether we have a
11732         `method->signature->gen_method' and call
11733         mono_image_get_methodspec_token() if appropriate.
11734         (inflated_method_get_object): Removed.
11735         (mono_reflection_bind_generic_method_parameters): Return a
11736         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
11737         (mono_reflection_inflate_method_or_ctor): Likewise.
11738
11739         * reflection.h (MonoReflectionInflatedMethod): Removed.
11740
11741 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
11742
11743         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
11744         for custom valuetype marshalling.
11745
11746         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
11747
11748 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11749
11750         * icall.c: fixed WSAGetLastError_internal name.
11751
11752 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
11753
11754         * threads.c (mono_thread_attach): Allow this to be called multiple
11755         times for a thread.
11756         
11757         * threads.c (build_wait_tids): Do not wait for ourselves.
11758
11759         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
11760         appdomain list is empty.
11761
11762         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
11763         memory returned by mono_string_builder_to_utf16, since it points into
11764         managed memory. Thanks to Bernie Solomon for noticing this.
11765
11766         * icall.c: Add AppDomainSetup icalls.
11767
11768         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
11769
11770         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
11771         types.
11772
11773         * reflection.c (reflection_methodbuilder_to_mono_method): Save
11774         custom attributes to the method_aux struct. Also fix array indexes etc.
11775
11776         * loader.c (mono_method_get_param_names): Make dynamic case work again.
11777         
11778 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
11779
11780         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
11781         (both static and runtime) and reduce startup time.
11782
11783 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
11784
11785         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
11786         AsAny marshalling conversion instead of crashing.
11787
11788         * marshal.c: Fix warnings.
11789
11790 2004-02-09  Martin Baulig  <martin@ximian.com>
11791
11792         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
11793
11794         * reflection.h (MonoReflectionInflatedMethod): Removed the
11795         `declaring' field, it's now in the unmanaged MonoGenericMethod.
11796
11797         * reflection.c (method_encode_methodspec): Removed the `method'
11798         argument; we get it from `gmethod->declaring'.
11799         (inflated_method_get_object): Removed the `declaring' argument.
11800
11801 2004-02-09  Martin Baulig  <martin@ximian.com>
11802
11803         * class.h (MonoGenericMethod): New type.
11804         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
11805         `generic_method'.
11806
11807         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
11808         a `MonoGenericMethod *gen_method' one.
11809
11810         * class.c (mono_class_inflate_generic_type): Take an additional
11811         `MonoGenericMethod * argument.  This is only non-NULL if we're
11812         inflating types for a generic method.   
11813         (mono_class_inflate_generic_signature): Renamed to
11814         inflate_generic_signature() and made static; take a
11815         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
11816         (inflate_generic_header): Take a `MonoGenericMethod *' argument
11817         instead of a `MonoGenericInst *' one.
11818         (mono_class_inflate_generic_method): Likewise.
11819
11820         * reflection.c (encode_generic_method_sig): Take a
11821         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
11822         (method_encode_methodspec): Likewise.
11823         (inflated_method_get_object): Likewise. 
11824
11825         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
11826         field with a `MonoGenericMethod *gmethod' one.  
11827
11828 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
11829
11830         * class.h (mono_class_has_parent): add parens to expansion
11831         so you can ! this.
11832
11833 2004-02-08  Martin Baulig  <martin@ximian.com>
11834
11835         * image.h (MonoImage): Removed `generics_cache'.
11836
11837         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
11838         instead of a `MonoType *' argument; removed the `inflate_methods'
11839         argument.  Don't inflate methods here.
11840
11841         * loader.c (find_method): If it's a generic instance, call
11842         mono_class_init() on the `sclass->generic_inst->generic_type'.
11843
11844         * metadata.c (mono_type_size): Make this work on uninitialized
11845         generic instances; call it on the `ginst->generic_type's class.
11846
11847         * reflection.c (mono_reflection_bind_generic_parameters): Call
11848         mono_class_from_generic() to create the `ginst->klass'.
11849
11850 2004-02-08  Martin Baulig  <martin@ximian.com>
11851
11852         * class.h (MonoClass): Changed type of `generic_inst' from
11853         `MonoType *' to `MonoGenericInst *'.
11854
11855 2004-02-08  Martin Baulig  <martin@ximian.com>
11856
11857         * icall.c (ves_icall_Type_BindGenericParameters): Just call
11858         mono_type_get_object(), this is now creating a `MonoGenericInst'
11859         for MONO_TYPE_GENERICINST.
11860         (ves_icall_MonoGenericInst_GetParentType): Likewise.
11861         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
11862
11863         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
11864         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
11865         (inflated_method_get_object): Added `MonoClass *refclass' argument.
11866         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
11867         and reflected type.
11868
11869         * reflection.h (MonoReflectionInflatedMethod): Removed
11870         `declaring_type' and `reflected_type'.
11871
11872 2004-02-08  Martin Baulig  <martin@ximian.com>
11873
11874         * class.h (MonoGenericInst): Added `MonoType *parent' and
11875         `MonoType **ifaces'.
11876
11877         * reflection.h (MonoReflectionGenericInst): Removed `klass',
11878         `parent' and `interfaces'.
11879
11880         * reflection.c (mono_reflection_bind_generic_parameters): Take a
11881         `MonoType *' argument and return a `MonoType *'.
11882
11883         * icall.c
11884         (ves_icall_MonoGenericInst_GetParentType): New interncall.
11885         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
11886
11887 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
11888
11889         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
11890         valuetype marshalling.
11891
11892 2004-02-06  Martin Baulig  <martin@ximian.com>
11893
11894         * class.c
11895         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
11896         (my_mono_class_from_generic_parameter): Likewise.
11897
11898 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
11899
11900         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
11901         contents of the symbol files lazily.
11902
11903         * object.h (MonoThread): Add 'name' and 'name_len' fields.
11904
11905         * threads.h threads.c icall.c: New icalls for getting and setting the
11906         threads name.
11907
11908 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
11909
11910         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
11911         Raise an exception when the domain is not found.
11912
11913 2004-02-03  Martin Baulig  <martin@ximian.com>
11914
11915         * reflection.c (mono_image_get_methodspec_token): Use the
11916         uninflated signature; fixes gen-33.
11917
11918 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
11919
11920         * gc.c threads.c: Make the finalizer thread a normal managed thread so
11921         the finalizer code can use thread functionality.
11922
11923         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
11924         the finalizer thread.
11925
11926         * threads.c: Make some functions more robust.
11927
11928         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
11929
11930         * metadata.h: Add new marshalling conventions.
11931
11932         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
11933         stringbuilder marshalling. Fixes #53700.
11934
11935         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
11936
11937         * reflection.c (mono_image_get_type_info): Save declarative security
11938         info.
11939
11940         * reflection.c (mono_image_get_field_info): Handle uninitialized 
11941         unmanaged fields as well.
11942
11943         * appdomain.c: Bump corlib version.
11944
11945 2004-02-01  Martin Baulig  <martin@ximian.com>
11946
11947         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
11948         method type arguments.  
11949
11950 2004-01-30  Duncan Mak  <duncan@ximian.com>
11951
11952         * marshal.h: Add prototype for
11953         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
11954         and
11955         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
11956         fix the build.
11957
11958 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
11959
11960         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
11961         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
11962
11963 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
11964
11965         * marshal.c (mono_marshal_get_native_wrapper): Add support for
11966         custom marshalling of valuetypes.
11967
11968         * marshal.c: Fix some warnings.
11969
11970 2004-01-29  Martin Baulig  <martin@ximian.com>
11971
11972         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
11973         for generic method parameters.
11974
11975         * reflection.c (method_encode_methodspec): Write the uninflated
11976         signature into the methodspec table.
11977         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
11978         is always the uninflated method.
11979         (reflection_methodbuilder_to_mono_method): Copy the generic
11980         parameters from the MethodBuilder into `header->gen_params'.
11981
11982 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
11983
11984         * class.c (mono_class_from_generic_parameter): Fix warning.
11985
11986 2004-01-27  Martin Baulig  <martin@ximian.com>
11987
11988         * class.c (mono_class_from_generic_parameter): Don't create
11989         `klass->methods' here.  
11990
11991 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
11992
11993         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
11994         extension since it does not work with libraries named lib<FOO>.dll.so.
11995
11996 2004-01-25  Martin Baulig  <martin@ximian.com>
11997
11998         * class.c (mono_class_inflate_generic_type): Added support for
11999         MONO_TYPE_GENERICINST.
12000
12001         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
12002         inflate methods on open constructed types.      
12003
12004 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12005
12006         * object.c: fire ProcessExit event in the root AppDomain after running
12007         Main. Fixes bug #53299.
12008
12009 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
12010
12011         * socket-io.c: include the new socket-wrappers.h header.
12012         Use the wrappers instead of the unix socket functions to make the code
12013         more clear.
12014
12015 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
12016
12017         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
12018
12019         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
12020         Fixes #22532.
12021
12022 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
12023
12024         * reflection.c (mono_image_create_pefile): Handle the case when the
12025         entry point is not a MethodBuilder.
12026
12027         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12028         field to ReflectionMethod since it is not allways a builder.
12029
12030         * reflection.c (type_get_fully_qualified_name): New helper function to
12031         return the fully qualified name of a type.
12032
12033         * reflection.c (encode_marshal_blob): Always emit the fully qualified
12034         type name for custom marshallers.
12035
12036         * reflection.c (mono_marshal_spec_from_builder): Ditto.
12037
12038         * class.c (mono_class_setup_vtable): If a parent class already 
12039         implements an interface, use the implementing methods from that class.
12040         Fixes #53148.
12041
12042 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12043
12044         * threadpool.c: just return instead of ExitThread to allow for thread
12045         clean up earlier.
12046
12047 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
12048
12049         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
12050         when closing resource modules.
12051
12052         * reflection.c (mono_image_create_pefile): Handle the case when the
12053         entry point is not a MethodBuilder.
12054
12055         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12056         field to ReflectionMethod since it is not allways a builder.
12057
12058 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
12059
12060         * marshal.c (mono_marshal_get_managed_wrapper): 
12061         mono_marshal_alloc takes native int so CONV_I
12062         the arg for 64bits.
12063
12064 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
12065
12066         * reflection.c (fixup_cattrs): New function to fixup the methoddef
12067         tokens in the cattr table. Fixes #53108.
12068
12069 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12070
12071         * loader.c: don't trim ".dll" before looking up in the config file.
12072         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
12073
12074 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
12075
12076         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
12077         Return the module which contains the resource as well.
12078         (ves_icall_System_Reflection_Module_Close): New icall.
12079
12080         * appdomain.c: Bump corlib version number.
12081
12082         * image.c (mono_image_addref): New public function.
12083
12084         * assembly.c: Call mono_image_addref.
12085
12086         * reflection.c (mono_module_get_object): Increase reference count of 
12087         the image.
12088
12089         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
12090         Fixes #22532.
12091
12092         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
12093         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
12094         proper exceptions on DllImport problems.
12095
12096 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
12097
12098         * class.c, metadata.c: eliminate CSIZE macro.
12099
12100 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
12101
12102         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
12103         * object.h: Added async_callback field in MonoAsyncResult.
12104         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
12105         * verify.c: Added async_callback in MonoAsyncResult layout.
12106
12107 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
12108
12109         * reflection.c (mono_reflection_get_custom_attrs): Add support
12110         for Modules.
12111
12112 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
12113
12114         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
12115         marshalling.
12116         (mono_marshal_method_from_wrapper): Add null pointer check.
12117
12118 2004-01-16  Martin Baulig  <martin@ximian.com>
12119
12120         * debug-mono-symfile.h: Set version number to 36 and reflect
12121         latest symbol writer changes.
12122
12123 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
12124
12125         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
12126         multi-dimensional arrays.
12127         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
12128         (mono_class_from_mono_type): Use bounded_array_class_get.
12129         
12130         * class.c (mono_bounded_array_class_get): New function which takes
12131         a 'bounded' bool argument to distinguish vectors from one dimensional
12132         arrays.
12133
12134         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
12135         bounded_array_class_get if the array has bounds.
12136
12137         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
12138         Search modules loaded using AssemblyBuilder:AddModule as well.
12139
12140 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12141
12142         * appdomain.c: increased corlib version.
12143         * filewatcher.c: removed g_print.
12144         * icall.c:
12145         (get_property_info): only allocate what is actually requested.
12146         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
12147
12148 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12149
12150         * Makefile.am: added filewatcher.[ch]
12151         * filewatcher.[ch]: FileSystemWatcher runtime support.
12152         * icall.c: added new FSW icalls.
12153
12154 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
12155
12156         * string-icalls.c: fix stringbuilder regression as suggested by
12157         Iain McCoy <iain@mccoy.id.au>.
12158
12159 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
12160
12161         * process.c (process_read_stringtable_block): Recognize '007f' as
12162         a language neutral stringtable block.
12163
12164 2004-01-12  Patrik Torstensson
12165
12166         * object.h (MonoStringBuilder) : Changed layout to support our
12167         new stringbuilder class.
12168         * marshal.c: Change marshalling to support the new layout of 
12169         string builder.
12170         * appdomain.c: increased version number because new layout of
12171         string builder.
12172
12173 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
12174
12175         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
12176         assembly name as an string instead of an AssemblyName, since it is
12177         easier to extract info from it.
12178
12179         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
12180         the culture subdirectories too. Fixes #52231.
12181
12182 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12183
12184         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
12185         It takes 2 new parameters with an optional name for the method to look
12186         for and case ignoring info.
12187
12188         * threadpool.c: removed unused variable.
12189
12190 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12191
12192         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
12193         It takes 2 new parameters with an optional name for the property to look
12194         for and case ignoring info.
12195         Fixes bug #52753.
12196
12197 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
12198
12199         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
12200         Fix #52451.
12201
12202 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12203
12204         * appdomain.c:
12205         * assembly.c: escape the uri before passing it to g_filename_from_uri.
12206         Fixes bug #52630.
12207
12208 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
12209
12210         * reflection.c: Add support for more than one unmanaged resource.
12211
12212         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
12213         in field->def_value, as done in all other cases.
12214
12215         * reflection.c (mono_reflection_get_custom_attrs): Add support for
12216         TypeBuilders.
12217
12218         * reflection.c (mono_reflection_create_runtime_class): Remove 
12219         errorneous assignment to klass->element_class, since it is already
12220         done in mono_reflection_setup_internal_class.
12221
12222 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12223
12224         * gc.c: added missing LeaveCriticalSection.
12225         * icall.c: indented a couple of lines.
12226         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
12227         if we call EndInvoke inside a callback. Fixes bug #52601.
12228
12229 2004-01-07  Martin Baulig  <martin@ximian.com>
12230
12231         * mono-debug-debugger.h
12232         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
12233
12234 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
12235
12236         * appdomain.c: Use messages in NotImplementedException.
12237
12238         * exception.c (mono_get_exception_not_implemented): Now this takes
12239         a message argument.
12240
12241         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
12242         exception instead of g_asserting an aborting when something is not
12243         implemented.
12244
12245         Add some inline docs.
12246
12247 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
12248
12249         * reflection.h: Update after changes to object layout.
12250
12251         * reflection.c: Implement saving of unmanaged aka win32 resources.
12252
12253         * appdomain.c: Bump version number.
12254
12255         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
12256         Handle missing domains gracefully.
12257
12258 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
12259
12260         * file-io.c : On Windows, there are much more invalid_path_chars.
12261
12262 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
12263
12264         * class.h, object.c: prepare for GetType () speedup.
12265
12266 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
12267
12268         * profiler.c: workaround for --profile null reference exception on
12269           cygwin. Patch by Patrik Torstensson.
12270
12271 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
12272
12273         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
12274         make work for unaligned access.
12275
12276 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
12277
12278         * class.c: small cleanup (class->fields [i] -> field).
12279         * image.c: check address of metadata is valid.
12280
12281 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
12282
12283         * assembly.h assembly.c (mono_assembly_loaded): New public function to
12284         search the list of loaded assemblies.
12285
12286         * reflection.c (mono_reflection_type_from_name): Use 
12287         mono_assembly_loaded instead of mono_image_loaded.
12288
12289         * reflection.c: Fix warnings.
12290
12291 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
12292
12293         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
12294         is dynamic. This is needed since an assembly can contain both dynamic and
12295         non-dynamic images.
12296
12297         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
12298         assembly->dynamic.
12299
12300         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
12301
12302         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
12303         to store modules loaded using AddModule.
12304
12305         * reflection.c (mono_image_fill_file_table): Generalize this so it works
12306         on Modules.
12307
12308         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
12309
12310         * reflection.c (mono_image_fill_export_table_from_module): New function to
12311         fill out the EXPORTEDTYPES table from a module.
12312
12313         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
12314         into a separate function. Also handle loaded non-dynamic modules.
12315
12316         * reflection.c (mono_image_basic_init): Fix memory allocation.
12317
12318         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12319
12320         * assembly.c (mono_assembly_load_references): Make this public.
12321
12322 2003-12-19  Martin Baulig  <martin@ximian.com>
12323
12324         * class.c (mono_class_initialize_generic): Made this static, take
12325         a `MonoGenericInst *' instead of a `MonoClass *'.
12326         (mono_class_from_generic): Call mono_class_initialize_generic()
12327         unless we're already initialized or being called from
12328         do_mono_metadata_parse_generic_inst().
12329
12330         * class.h (MonoGenericInst): Added `initialized' and
12331         `init_pending' flags.
12332
12333         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
12334         `mono_class_init (gklass)' or mono_class_initialize_generic()
12335         here; set `generic_inst->init_pending' while parsing the
12336         `type_argv'.
12337
12338 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
12339
12340         * locales.c: include string.h for memxxx prototypes
12341
12342 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
12343
12344         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
12345         constructor when accessing literal fields.
12346
12347 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
12348
12349         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12350
12351         * reflection.c (assembly_add_resource_manifest): New function to fill
12352         the MANIFESTRESOURCE table.
12353
12354         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
12355
12356         * reflection.h: Update to changes in class layout.
12357
12358         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
12359         Reenable call to mono_runtime_is_shutting_down ().
12360
12361         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
12362         determine if the runtime is shutting down.
12363
12364 2003-12-16  Jackson Harper <jackson@ximian.com>
12365
12366         * icall.c: comment out call to mono_runtime_is_shutting_down to
12367         fix build.
12368         
12369 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
12370
12371         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
12372         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
12373
12374 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
12375
12376         * reflection.c: move definition of swap_with_size
12377         to before its first call
12378
12379 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
12380
12381         * appdomain.c (mono_runtime_is_shutting_down): New public function.
12382
12383         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
12384         icall.
12385
12386         * object.c: Fix warnings.
12387
12388         * icall.c (ves_icall_Type_Get...): Only consider inherited static
12389         members if FlattenHierarchy is set.
12390
12391         * reflection.c (mono_image_add_decl_security): New function to emit
12392         declarative security.
12393
12394         * reflection.h reflection.c: Add support for declarative security.
12395
12396         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
12397         
12398 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
12399
12400         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
12401         
12402         * appdomain.c verify.c: Moved corlib version checking into its own
12403         function in appdomain.c since it needs to create vtables etc.
12404
12405 2003-12-13  Patrik Torstensson <p@rxc.se>
12406
12407         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
12408         instead of unwrapped server.
12409
12410 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
12411
12412         * verify.c (check_corlib): Fix field index.
12413
12414 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
12415
12416         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
12417         GetGacPath icall.
12418
12419 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
12420
12421         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
12422         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
12423         cope with sizeof(size_t) != sizeof(guint32).
12424
12425 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12426
12427         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
12428         in case of failure.
12429
12430 2003-12-10  Mark Crichton <crichton@gimp.org>
12431
12432         * icall.c: removed the GetNonZeroBytes.  We now handle this case
12433         in managed code.
12434
12435         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
12436
12437 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
12438
12439         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
12440         marked as deleted.
12441
12442 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
12443
12444         * verify.c (check_corlib): Handle the case when the version field is 
12445         initialized by a static constructor.
12446
12447 2003-12-08  Patrik Torstensson  <p@rxc.se>
12448
12449     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
12450
12451 2003-12-08  Martin Baulig  <martin@ximian.com>
12452
12453         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
12454         a MonoReflectionGenericParameter, also take the parameter index
12455         and name as arguments.
12456         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
12457         (ves_icall_MonoGenericParam_initialize): New interncall.
12458         (ves_icall_Type_make_byref_type): New interncall.
12459
12460         * reflection.h (MonoReflectionGenericParam): Derive from
12461         MonoReflectionType, not just from MonoObject.  Added `refobj' and
12462         `index' fields.
12463
12464         * reflection.c (mono_reflection_define_generic_parameter): Create
12465         and return a new MonoReflectionGenericParam; don't initialize the
12466         constraints here.
12467         (mono_reflection_initialize_generic_parameter): New public method;
12468         initializes the constraints and creates the `param->pklass'.
12469
12470 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
12471
12472         * reflection.h reflection.c: Use the new fields 'num_types', 
12473         'num_fields' and 'num_methods' to track the number of types etc.
12474
12475         * verify.c (check_corlib): Check corlib version number.
12476
12477 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
12478
12479         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
12480         function works on all methods.
12481
12482 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
12483
12484         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
12485         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
12486         the custom_type_info flag of the transparent proxy.
12487         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
12488         objects that supports IRemotingTypeInfo.
12489         * object.h: Added custom_type_info field in transparent proxy.
12490
12491 2003-12-06  Martin Baulig  <martin@ximian.com>
12492
12493         * class.c (mono_class_create_from_generic): Removed.
12494         (mono_class_from_generic): Check `ginst->klass' before doing
12495         anything else.  This is important to fully support "recursive"
12496         generic types.
12497
12498         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
12499         empty `generic_inst->klass' before doing anything else.
12500
12501 2003-12-06  Dick Porter  <dick@ximian.com>
12502
12503         * verify.c: 
12504         * object.h:
12505         * icall.c:
12506         * locales.c: Use C structs to access class fields.  Don't do a
12507         conversion between MonoString and UChar because both are
12508         platform-endian UTF-16.  Compare now takes startindex and count
12509         parameters.  Add a char overload for IndexOf.  Speed up the
12510         invariant string IndexOf.
12511
12512 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
12513
12514         * Makefile.am (monosn_LDADD): Fix parallel build.
12515
12516 2003-12-04  Martin Baulig  <martin@ximian.com>
12517
12518         * icall.c
12519         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
12520         (ves_icall_Type_make_array_type): New interncall.       
12521
12522 2003-12-04  Martin Baulig  <martin@ximian.com>
12523
12524         * locales.c: also change it in the !HAVE_ICU case.
12525
12526 2003-12-04  Dick Porter  <dick@ximian.com>
12527
12528         * icall.c:
12529         * locales.c: construct_compareinfo is now in CompareInfo, not
12530         CultureInfo.
12531
12532 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
12533
12534         * image.c (mono_image_load_file_for_image): Cache loaded images in the
12535         image->files array.
12536
12537         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
12538         table as well.
12539
12540         * assembly.c (mono_assembly_load_references): Only load references
12541         once.
12542
12543         * class.c (mono_class_from_name): Avoid linear search of the 
12544         EXPORTEDTYPE table.
12545
12546         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
12547
12548 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
12549
12550         * image.h (MonoImage): Add 'field_cache' field.
12551
12552         * loader.c (mono_field_from_token): Cache field lookups.
12553         
12554         * reflection.c (mono_module_get_object): Fix name property.
12555
12556         * icall.c (ves_icall_get_enum_info): Update after changes to 
12557         mono_metadata_get_constant_index ().
12558
12559         * icall.c: Get rid of get_type_info icall, use a separate icall for
12560         each type property to avoid needless memory allocations. Fixes #51514.
12561
12562         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
12563         to avoid needless binary searches.
12564
12565         * class.c (class_compute_field_layout): Move the initialization of
12566         field->def_value to mono_class_vtable ().
12567
12568         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
12569         non-corlib types.
12570
12571         * object.c (mono_object_allocate): Make it inline.
12572
12573         * object.c (mono_object_allocate_spec): Make it inline.
12574         
12575 2003-12-02  Dick Porter  <dick@ximian.com>
12576
12577         * locales.c (create_NumberFormat): NumberFormatInfo construction.
12578         Patch by Mohammad DAMT (mdamt@cdl2000.com).
12579
12580 2003-12-01  Dick Porter  <dick@ximian.com>
12581
12582         * threads.c: Fix signature and call in CreateMutex and
12583         CreateEvent.
12584
12585 2003-12-01  Dick Porter  <dick@ximian.com>
12586
12587         * icall.c: 
12588         * locales.c: Implement string compares and searching
12589
12590         * object.h: Add extra Thread field
12591
12592 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
12593
12594         * reflection.c (fixup_method): Add support for MonoCMethod.
12595
12596 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
12597
12598         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
12599
12600         * reflection.c (assembly_name_to_aname): Allow extra characters in
12601         assembly names. Fixes #51468.
12602
12603 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
12604
12605         * exception.c (mono_exception_from_name_domain): New helper function.
12606
12607         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
12608         exception object in the correct domain.
12609
12610         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
12611         formatting + make a copy a the input data.
12612
12613         * loader.c (mono_get_method_from_token): Methods which contain
12614         native code do not have entries in the ImplMap.
12615
12616         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
12617         Thanks to Gonzalo for spotting this.
12618         
12619         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
12620         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
12621
12622         * assembly.h (mono_assembly_load_from): Split the second part of 
12623         assembly loading into a new public function.
12624
12625         * exception.h (mono_get_exception_bad_image_format): New function.
12626
12627 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
12628
12629         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
12630         Enumerate all modules inside a dynamic assembly. Fixes #51293.
12631         
12632         * icall.c: Add new icall for creating dynamic methods.
12633
12634         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
12635
12636         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
12637
12638         * reflection.c (mono_reflection_create_dynamic_method): New icall to
12639         create a dynamic method.
12640
12641         * reflection.c (resolve_object): New helper function.
12642
12643         * reflection.c: Generalize ReflectionMethodBuilder and the functions
12644         which manipulate it so they can also work on dynamic methods.
12645
12646         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
12647         creating the MonoReflectionMethodAux structure if it is not needed.
12648         
12649         * reflection.h verify.c: Update after changes to object layout.
12650
12651         * reflection.c (method_builder_encode_signature): Fix compilation on
12652         gcc 2.95.x.
12653
12654 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
12655
12656         * appdomain.h: Added support for context static fields. Added static_data
12657           field to MonoAppContext and renamed thread_static_fields to a more
12658           generic special_static_fields in MonoAppDomain, since it can now contain
12659           context static fields.
12660         * domain.c: Updated hashtable name.
12661         * object.c: Replaced field_is_thread_static() for a more generic
12662           field_is_special_static() which also checks for context static attribute.
12663           In mono_class_vtable(), added support for static context fields.
12664         * threads.c: Changed methods that manage thread static fields to more
12665           generic methods so they can be reused both for thread and context static
12666           data.
12667         * threads.h: Declared some new methods.
12668
12669 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
12670
12671         * reflection.h: Update after changes to the managed types.
12672
12673         * reflection.c (encode_custom_modifiers): New helper function.
12674
12675         * reflection.c (method_encode_signature): Emit custom modifiers.
12676
12677         * reflection.c (field_encode_signature): Emit custom modifiers.
12678
12679 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
12680
12681         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
12682
12683         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
12684         implementation.
12685
12686         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
12687         icall.
12688
12689         * object.c (mono_field_get_value_object): New function.
12690
12691         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
12692         specific.
12693
12694 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
12695
12696         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
12697         return a preallocated out-of-memory exception instance.
12698
12699         * object.c (out_of_memory): Use the new function.
12700
12701         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
12702         flag is before the custom modifiers. Fixes #49802.
12703
12704 2003-11-16  Martin Baulig  <martin@ximian.com>
12705
12706         * class.c (mono_class_is_open_constructed_type): Implemented the
12707         MONO_TYPE_GENERICINST case.
12708
12709 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
12710
12711         * assembly.c (mono_assembly_fill_assembly_name): New function to
12712         fill out the MonoAssemblyName structure.
12713         (mono_assembly_open): Use the new function.
12714
12715         * icall.c (fill_reflection_assembly_name): New helper function.
12716
12717         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
12718         new function.
12719
12720         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
12721
12722 2003-11-15  Martin Baulig  <martin@ximian.com>
12723
12724         * class.c (mono_class_is_open_constructed_type): New public
12725         function; checks whether a type is an open constructed type,
12726         ie. whether it still contains type parameters.
12727         (mono_class_inflate_generic_type): If we're a type parameter and
12728         the inflated type is also a MONO_TYPE_(M)VAR, return the original
12729         type.
12730
12731         * class.h (MonoGenericInst): Added `guint32 is_open'.
12732
12733         * loader.c (method_from_methodspec): Check whether we're an open
12734         or closed constructed type and set `ginst->is_open'.
12735
12736         * reflection.c (mono_reflection_bind_generic_parameters): Check
12737         whether we're an open or closed constructed type and set
12738         `ginst->is_open'.
12739         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
12740         from open constructed types.
12741
12742 2003-11-15  Martin Baulig  <martin@ximian.com>
12743
12744         * reflection.c (mono_reflection_bind_generic_parameters): If we're
12745         a generic instance (instead of a generic type declaration) with
12746         unbound generic parameters, bind them to our actual types.
12747
12748 2003-11-14  Martin Baulig  <martin@ximian.com>
12749
12750         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
12751
12752         * reflection.c (mono_reflection_bind_generic_parameters): If we're
12753         an interface type, populate `res->interfaces' with instantiated
12754         versions of all the interfaces we inherit.
12755
12756 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
12757
12758         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
12759         when MONO_PATH is set but doesn't contain the install dir.
12760
12761 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12762
12763         * icall.c:
12764         (ves_icall_Type_GetInterfaces): don't return an interface twice when
12765         it's also implemented in base classes. Fixes bug #50927.
12766
12767 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
12768
12769         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
12770         if this method is called from a finalizer. Fixes #50913.
12771
12772 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
12773
12774         * threads.c: Implement VolatileRead/VolatileWrite
12775
12776         * icall.c: Add new icalls for VolatileRead/VolatileWrite
12777
12778 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
12779
12780         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
12781         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
12782         2.95.3.
12783
12784         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
12785         from Peter Ross (pro@missioncriticalit.com).
12786         
12787 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
12788
12789         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
12790
12791 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
12792
12793         * assembly.c (mono_assembly_load_references): Disable check because it
12794         triggers on older corlibs which lots of people have.
12795
12796 2003-11-12  Jackson Harper  <jackson@ximian.com>
12797
12798         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
12799         load corlib.dll if mscorlib.dll is not found.
12800         * assembly.h: Remove corlib name define.
12801         * class.c:
12802         * domain.c:
12803         * image.c: Change corlib name to mscorlib.
12804         
12805 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
12806
12807         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
12808
12809 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
12810
12811         * appdomain.h: Added loader_optimization here to sync with the C#
12812         code, and add disallow_binding_redirects field.
12813
12814 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
12815
12816         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
12817
12818         * reflection.c (mono_image_build_metadata): Fix crash on modules
12819         with no types.
12820
12821         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
12822
12823         * icall.c (ves_icall_get_method_info): Return callingConvention as
12824         well.
12825
12826         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
12827         namespaces from the EXPORTEDTYPE table as well.
12828
12829         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
12830         from all modules inside the assembly.
12831         
12832 2003-11-11  Martin Baulig  <martin@ximian.com>
12833
12834         * reflection.c (mono_reflection_bind_generic_parameters): Make
12835         this work for interfaces.
12836
12837 2003-11-11  Martin Baulig  <martin@ximian.com>
12838
12839         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
12840
12841 2003-11-11  Martin Baulig  <martin@ximian.com>
12842
12843         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
12844         "MonoInflatedMethod" and "MonoInflatedCtor".
12845
12846 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
12847
12848         * reflection.c (resolution_scope_from_image): Use the assembly table
12849         from the manifest module, since other modules don't have it.
12850
12851         * debug-helpers.c (mono_type_full_name): New helper function.
12852
12853         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
12854
12855         * image.c (mono_image_load_file_for_image): New public function which
12856         is a replacement for the load_file_for_image in class.c.
12857
12858         * assembly.c (mono_assembly_load_module): A wrapper for the function
12859         above which does assembly association and reference loading too.
12860
12861         * class.c (mono_class_from_name): Call mono_assembly_load_module.
12862
12863 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12864
12865         * appdomain.c: not all of the attributes for the full assembly name
12866         are required and the order doesn't matter. Fixes bug #50787.
12867
12868 2003-11-10  Dick Porter  <dick@ximian.com>
12869
12870         * locales.c: Use platform-endian UTF16
12871
12872 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
12873
12874         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
12875         
12876 2003-11-10  Martin Baulig  <martin@ximian.com>
12877
12878         * metadata.c
12879         (mono_metadata_load_generic_params): Make this actually work.
12880
12881         * reflection.c (mono_reflection_bind_generic_parameters): If our
12882         parent is a generic instance, pass all the `types' to it, no
12883         matter whether it has the same number of type parameters or not.
12884
12885 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
12886
12887         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
12888
12889         * assembly.c (mono_assembly_load_references): Move the image<->assembly
12890         assignment code to this function so it gets called recursively for all
12891         modules.
12892
12893         * image.c (load_modules): Remove the assembly assignment since it is
12894         now done by mono_assembly_load_references.
12895         
12896         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
12897         Add 'module' argument.
12898         (mono_module_get_types): New helper function.
12899         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
12900
12901 2003-11-08  Martin Baulig  <martin@ximian.com>
12902
12903         * class.c (mono_class_inflate_generic_method): Interface method
12904         don't have a header.
12905
12906         * reflection.c (mono_image_get_methodspec_token): Take an
12907         additional `MonoGenericInst *' argument instead of reading it from
12908         the header; this is necessary to support interfaces.
12909         (mono_image_create_token): Pass the `MonoGenericInst *' from the
12910         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
12911         (inflated_method_get_object): Take an additional `MonoGenericInst *'
12912         argument.
12913
12914         * reflection.h (MonoReflectionInflatedMethod): Added
12915         `MonoGenericInst *ginst'.
12916
12917 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
12918
12919         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
12920
12921 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
12922
12923         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
12924
12925 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
12926
12927         * reflection.c 
12928         (reflection_methodbuilder_from_method_builder):
12929         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
12930         initialize a ReflectionMethodBuilder structure.
12931         (mono_image_get_methodbuilder_token):
12932         (mono_image_get_ctorbuilder_token): New functions to emit memberref
12933         tokens which point to types in another module inside the same assembly.
12934
12935         * reflection.c: Use the new helper functions.
12936         
12937         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
12938
12939         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
12940         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
12941
12942         * reflection.c (resolution_scope_from_image): Emit a moduleref if
12943         neccesary.
12944
12945         * reflection.c (mono_image_build_metadata): Emit metadata only for the
12946         current module. Emit the manifest only for the main module.
12947
12948         * reflection.c (mono_image_create_token): Add assertion when a 
12949         memberref needs to be created.
12950
12951         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
12952
12953         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
12954         larger buffer for the custom attribute blob. Fixes #50637.
12955         
12956 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12957
12958         * threadpool.c: notify listener on async processing handles after
12959         invoking the async callback. Thanks to Zoltan.
12960
12961 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
12962
12963         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
12964         avoid code duplication.
12965
12966         * reflection.h (MonoDynamicImage): New type which is currently unused,
12967         but will be used through the ref.emit code in place of 
12968         MonoDynamicAssembly.
12969
12970         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
12971         object layout.
12972
12973         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
12974         a MonoDynamicImage instead of just a MonoImage.
12975         
12976         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
12977         icalls to ModuleBuilder but keep their semantics, so they will work
12978         with moduleb->assemblyb. This will change later.
12979         
12980 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
12981
12982         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
12983         object layout.
12984
12985         * reflection.c (mono_image_build_metadata): Avoid creation of a default
12986         main module, since it is now done by the managed code.
12987
12988 2003-11-03  Martin Baulig  <martin@ximian.com>
12989
12990         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
12991         `ginst->klass' here.
12992         (method_encode_methodspec): Don't use the `ginst->generic_method's
12993         klass if it's a generic instance, use `ginst->klass' in this case.
12994
12995 2003-11-03  Martin Baulig  <martin@ximian.com>
12996
12997         * reflection.c (mono_image_get_generic_method_param_info):
12998         Removed, use mono_image_get_generic_param_info() instead.
12999         (mono_image_get_type_info): Write the GenericParam table before
13000         the Method table.  This is neccessary because in the GenericParam
13001         table, type parameters of the class (ie. '!0' etc.) must come
13002         before the ones from its generic methods (ie. '!!0' etc).
13003
13004 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13005
13006         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
13007
13008 2003-11-02  Martin Baulig  <martin@ximian.com>
13009
13010         * reflection.c (create_generic_typespec): Take a
13011         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
13012         the generic parameters from it.
13013
13014 2003-11-02  Martin Baulig  <martin@ximian.com>
13015
13016         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
13017         instead of a `MonoClassField *' since we just need the type.
13018         (create_generic_typespec): New static function.  Creates a
13019         TypeSpec token for a generic type declaration.
13020         (mono_image_get_generic_field_token): New static function.
13021         (mono_image_create_token): If we're a FieldBuilder in a generic
13022         type declaration, call mono_image_get_generic_field_token() to get
13023         the token.
13024
13025 2003-11-02  Martin Baulig  <martin@ximian.com>
13026
13027         * reflection.h
13028         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
13029         `MonoReflectionGenericInst *declaring_type' and
13030         `MonoReflectionGenericInst *reflected_type' fields.
13031
13032         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
13033         `MonoReflectionGenericInst *declaring_type' and a
13034         `MonoReflectionGenericInst *reflected_type' argument instead of a
13035         single `MonoReflectionGenericInst *type' one.  Set
13036         `res->declaring_type' and `res->reflected_type' from them.
13037         (mono_reflection_inflate_field): Likewise.      
13038
13039 2003-11-02  Martin Baulig  <martin@ximian.com>
13040
13041         * class.c (mono_class_setup_vtable): Don't store generic methods
13042         in the vtable.  
13043
13044 2003-11-02  Martin Baulig  <martin@ximian.com>
13045
13046         * reflection.h (MonoReflectionGenericInst): Added
13047         `MonoReflectionType *declaring_type'.
13048
13049         * reflection.c (mono_reflection_bind_generic_parameters): Use
13050         `if (tb->parent)' instead of `klass->parent'.
13051
13052 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
13053
13054         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
13055         with an empty ASSEMBLY table.
13056
13057         * reflection.c (mono_image_build_metadata): Avoid using the same loop
13058         variable in the inner and outer loops.
13059
13060 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
13061
13062         * metadata.h (mono_metadata_make_token): Put parentheses around macro
13063         argument.
13064
13065         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
13066         
13067         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
13068         icalls. Instead, do everything in managed code. This is needed since
13069         it is hard to restore the original domain etc. in unmanaged code in the
13070         presence of undeniable exceptions.
13071
13072         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
13073         New icalls to push and pop appdomain refs.
13074
13075 2003-10-31  Martin Baulig  <martin@ximian.com>
13076
13077         * class.c (inflate_generic_type): Renamed to
13078         mono_class_inflate_generic_type() and made it public.
13079
13080         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
13081         New interncall.
13082
13083         * loader.c (mono_field_from_memberref): Also set the retklass for
13084         typespecs.
13085
13086         * fielder.c (mono_image_get_inflated_field_token): New static
13087         method; creates a metadata token for an inflated field.
13088         (mono_image_create_token, fixup_method): Added support for
13089         "MonoInflatedField".
13090         (fieldbuilder_to_mono_class_field): New static function.
13091         (mono_reflection_inflate_field): New public function.
13092
13093         * reflection.h
13094         (MonoReflectionGenericInst): Added `MonoArray *fields'.
13095         (MonoReflectionInflatedField): New typedef.     
13096
13097 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
13098
13099         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
13100         for Solaris and other platforms without s6_addr16
13101
13102 2003-10-30  Martin Baulig  <martin@ximian.com>
13103
13104         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
13105         argument instead of two.
13106         (mono_class_inflate_generic_signature): Likewise.
13107         (inflate_generic_header): Likewise.
13108         (mono_class_inflate_generic_method): Likewise.  In addition, if
13109         `ginst->klass' is set, it becomes the new `method->klass'.
13110
13111         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
13112         field.
13113
13114         * reflection.c (encode_generic_method_sig): Write a 0xa as the
13115         first byte. [FIXME]
13116         (method_encode_methodspec): If we have generic parameters, create
13117         a MethodSpec instead of a MethodRef.
13118         (fixup_method): Added support for "MonoInflatedMethod" and
13119         "MonoInflatedCtor".
13120         (mono_image_create_token): Added support for "MonoInflatedMethod"
13121         and "MonoInflatedCtor".
13122         (inflated_method_get_object): New static function; returns a
13123         managed "System.Reflection.MonoInflatedMethod" object.
13124         (mono_reflection_bind_generic_method_parameters): Return a
13125         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
13126         (mono_reflection_inflate_method_or_ctor): Likewise.
13127         (mono_image_get_generic_method_param_info): Initialize unused
13128         fields to zero.
13129         (mono_image_get_generic_param_info): Likewise.
13130
13131         * reflection.h (MonoReflectionInflatedMethod): New public
13132         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
13133         "S.R.MonoInflatedCtor" classes.
13134
13135         * loader.c (method_from_memberref): If we're a TypeSpec and it
13136         resolves to a generic instance, inflate the method.
13137
13138 2003-10-28  Dick Porter  <dick@ximian.com>
13139
13140         * object.c (mono_runtime_run_main): Convert command-line arguments
13141         into utf8, falling back to the user's locale encoding to do so.
13142
13143 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
13144
13145         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
13146         at this time.
13147
13148         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
13149
13150         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
13151         up icalls at method definition time. Partially fixes #33569.
13152
13153 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
13154
13155         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
13156         marshalling of arrays. Fixes #50116.
13157
13158         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
13159
13160         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
13161         points to a vtable in the dying appdomain.
13162
13163         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
13164         listeners into unmanaged code inside the lock.
13165
13166         * object.c (mono_class_vtable): Turn off typed allocation in non-root
13167         domains and add some comments.
13168
13169 2003-10-25  Martin Baulig  <martin@ximian.com>
13170
13171         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
13172
13173         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
13174
13175         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
13176         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
13177         currently parsing.  Create the generic class and store it in
13178         `generic_inst->klass' before parsing the type arguments.  This is
13179         required to support "recursive" definitions; see mcs/tests/gen-23.cs
13180         for an example.
13181         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
13182         to support recursive typespec entries.
13183
13184         * class.c (mono_class_setup_parent): If our parent is a generic
13185         instance, we may get called before it has its name set.
13186         (mono_class_from_generic): Splitted into
13187         mono_class_create_from_generic() and mono_class_initialize_generic().
13188
13189 2003-10-25  Martin Baulig  <martin@ximian.com>
13190
13191         * icall.c (ves_icall_Type_BindGenericParameters): Return a
13192         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
13193         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
13194         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
13195
13196         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
13197         (create_typespec): Likewise.
13198         (mono_reflection_bind_generic_parameters): Return a
13199         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
13200         (mono_reflection_inflate_method_or_ctor): New public function.
13201
13202         * reflection.h (MonoReflectionGenericInst): New typedef.        
13203
13204 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
13205
13206         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
13207         inside the domain lock. Fixes #49993.
13208         
13209         * object.c (mono_class_vtable): When typed allocation is used, 
13210         allocate vtables in the GC heap instead of in the mempool, since the
13211         vtables contain GC descriptors which are used by the collector even
13212         after the domain owning the mempool is unloaded.
13213
13214         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
13215
13216         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
13217         reflect what it does. Also invalidate mempools instead of freeing
13218         them if a define is set.
13219
13220         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
13221         of the appdomain.
13222         
13223         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
13224         hold the finalizable objects in this domain.
13225
13226         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
13227         appdomain.
13228
13229         * appdomain.c (mono_domain_set): New function to set the current
13230         appdomain, but only if it is not being unloaded.
13231
13232         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
13233         appdomain which is being unloaded.
13234         
13235         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
13236         unloading of the root appdomain.
13237
13238         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
13239         icall to execute a method in another appdomain. Intended as a 
13240         replacement for InternalSetDomain, which can confuse the code 
13241         generation in the JIT.
13242
13243         * appdomain.c (mono_domain_is_unloading): New function to determine
13244         whenever an appdomain is unloading.
13245
13246         * appdomain.c (mono_domain_unload): New function to correctly unload
13247         an appdomain.
13248
13249         * assembly.c (mono_assembly_load_references): Check that an assembly
13250         does not references itself.
13251
13252         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
13253         domain manually, it asks the finalizer thread to do it, then waits for
13254         the result. Also added a timeout.
13255
13256         * icall.c: Register the new icalls.
13257
13258         * threads.h threads.c: Export the mono_gc_stop_world and 
13259         mono_gc_start_world functions.
13260         
13261         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
13262         function to fill out the mempool with 0x2a.
13263
13264 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
13265
13266         * reflection.h (MonoReflectionMethodAux): New structure to store
13267         information which is rarely used, thus is not in the MonoMethod
13268         structure.
13269
13270         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
13271         store the aux info.
13272
13273         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
13274         and marshalling info into the aux structure.
13275
13276         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
13277         from the aux structure.
13278
13279         * loader.c (mono_method_get_param_names): Retrieve the param names from
13280         the aux structure.
13281         
13282 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
13283
13284         * exception.h exception.c: Add AppDomainUnloadedException && fix 
13285         warning.
13286
13287 2003-10-21  Dick Porter  <dick@ximian.com>
13288
13289         * socket-io.c
13290         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
13291         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
13292
13293 2003-10-21  Martin Baulig  <martin@ximian.com>
13294
13295         * reflection.c (mono_reflection_bind_generic_parameters):
13296         `klass->parent' is NULL for interfaces.
13297
13298 2003-10-21  Martin Baulig  <martin@ximian.com>
13299
13300         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13301
13302 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
13303
13304         * exception.c (mono_exception_from_name_msg): New helper function for
13305         creating exceptions and initializing their message field.
13306
13307         * exception.c: Simplify functions using the new helper.
13308
13309         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
13310         New function.
13311
13312         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
13313         mono_raise_exception, since otherwise gcc doesn't generate the function
13314         epilog for raise_exception, confusing the stack unwinding in the JIT.
13315         Fixes #45043.
13316
13317         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
13318         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
13319         Fixes #49499.
13320
13321 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13322
13323         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
13324         utf8.
13325
13326 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
13327
13328         * icall.c: Removed GetUninitializedObject method because
13329           AllocateUninitializedClassInstance does the same.
13330
13331 2003-10-18  Martin Baulig  <martin@ximian.com>
13332
13333         * class.c (inflate_generic_signature): Renamed to
13334         mono_class_inflate_generic_signature() and made it public.
13335         (my_mono_class_from_generic_parameter): New static function; if we
13336         don't already have the generic parameter's MonoClass, create a
13337         very simple one which is just used internally in the runtime and
13338         not passed back to managed code.
13339
13340         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
13341
13342         * metadata.h (MonoMethodSignature): Moved the
13343         `MonoGenericParam *gen_params' to the MonoMethodHeader.
13344         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
13345
13346         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
13347         ves_icall_MonoMethod_GetGenericArguments(); this is now an
13348         interncall on the MonoMethod class, not on MethodInfo.
13349         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
13350         calling mono_reflection_bind_generic_method_parameters() directly.
13351
13352         * loader.c (mono_method_get_signature): If this is a MethodSpec;
13353         return the already computed `method->signature'.
13354         (method_from_methodspec): New static function to load a method
13355         from a MethodSpec entry.
13356         (mono_get_method_from_token): Call the new method_from_methodspec()
13357         for MethodSpec tokens.  
13358         (mono_get_method_from_token): If we're a generic method, load the
13359         type parameters.
13360
13361         * reflection.c (mono_image_get_memberref_token): Allow
13362         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
13363         table.
13364         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
13365         (mono_image_create_token): First check whether it's a generic
13366         method (so we'd need to create a MethodSpec), then do the other
13367         two alternatives.
13368         (mono_reflection_bind_generic_method_parameters): Return a
13369         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
13370         called directly from the interncall.
13371
13372 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
13373
13374         * reflection.c (load_public_key): Move loading of the public key
13375         into managed code.
13376
13377         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
13378
13379         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
13380         fields.
13381
13382         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
13383         culture, hash_alg and public_key. Fixes #49555.
13384
13385 2003-10-17  Martin Baulig  <martin@ximian.com>
13386
13387         * class.h (MonoGenericInst): Moved this declaration here and added
13388         `MonoMethod *generic_method'.
13389
13390         * icall.c
13391         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
13392         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
13393
13394         * metadata.c (mono_metadata_type_equal): Two types of
13395         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
13396         index; ie. don't compare the address of the `MonoGenericParam'
13397         structure.
13398         (mono_metadata_load_generic_params): Removed the `MonoMethod
13399         *method' argument.
13400
13401         * metadata.h (MonoGenericInst): Moved declaration to class.h.
13402         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
13403
13404         * reflection.c (method_encode_signature): Encode the number of
13405         generic parameters.
13406         (encode_generic_method_sig): New static function.
13407         (method_encode_methodspec): New static function; creates an entry
13408         in the MethodSpec table for a generic method.
13409         (mono_image_get_methodspec_token): New static function.
13410         (mono_image_create_token): Call mono_image_get_methodspec_token()
13411         for generic methods.
13412         (mono_reflection_bind_generic_method_parameters): New public
13413         function.  Instantiates a generic method.
13414
13415 2003-10-16  Martin Baulig  <martin@ximian.com>
13416
13417         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
13418         *gen_params' here from MonoMethodHeader.
13419
13420         * metadata.c (mono_metadata_parse_method_signature): If we have
13421         generic parameters, initialize `method->gen_params' and then set
13422         the correct `type->data.generic_param' in all the parameters.
13423
13424 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
13425
13426         * threads.c (mono_threads_get_default_stacksize): New function to 
13427         return the default stacksize.
13428
13429         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
13430         termination of the finalizer thread, since the previous method had
13431         race conditions. Fixes #49628.
13432
13433         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
13434         as for the other managed threads.
13435
13436 2003-10-16  Martin Baulig  <martin@ximian.com>
13437
13438         * class.c (inflate_generic_signature): Copy `generic_param_count'
13439         and `gen_params'.
13440
13441         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
13442         New interncall.
13443
13444         * metadata.c (mono_metadata_parse_method_signature): Actually set
13445         the `method->generic_param_count' here.
13446         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
13447
13448 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
13449
13450         * object.h: Add a new field to TypedRef to simplify the implementation
13451         of the REFANY opcodes in the JIT.
13452
13453         * icall.c: Make use of the new field.
13454
13455         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
13456         dynamically.
13457
13458 2003-10-15  Martin Baulig  <martin@ximian.com>
13459
13460         * class.c (mono_class_from_gen_param): Renamed to
13461         mono_class_from_generic_parameter() and moved most of the
13462         functionality from mono_reflection_define_generic_parameter()
13463         here; ie. we create a "real" class here.
13464         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
13465         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
13466         previously been called.
13467
13468         * class.h (MonoGenericParam): Moved the declaration of this struct
13469         here from metadata.h and added `MonoMethod *method'.
13470
13471         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
13472         interncall.
13473
13474         * loader.c (mono_get_method_from_token): If we have any generic
13475         parameters, call mono_metadata_load_generic_params() to read them
13476         from the MONO_TABLE_GENERICPAR.
13477
13478         * metadata.c (mono_metadata_load_generic_params): Added
13479         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
13480
13481         * metadata.h (MonoMethodSignature): Replaced
13482         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
13483         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
13484
13485         * reflection.c (mono_reflection_define_generic_parameter): Moved
13486         most of the functionality into the new
13487         mono_class_from_generic_parameter(); set the `method' field if
13488         we're a method parameter.       
13489
13490 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
13491
13492         * marshal.c (emit_struct_conv): if native size is 0
13493         emit no code.
13494
13495 2003-10-14  Martin Baulig  <martin@ximian.com>
13496
13497         * icall.c: The generics API has changed in the spec since it was
13498         added to System.Type; these modifications make it match the spec
13499         again.
13500         (ves_icall_Type_GetGenericParameters): Renamed to
13501         `ves_icall_Type_GetGenericArguments'.
13502         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
13503         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
13504         `ves_icall_MonoType_get_HasGenericArguments'.
13505         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
13506         `ves_icall_MonoType_get_IsGenericParameter'.
13507         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
13508         this is no interncall anymore.
13509         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
13510         `ves_icall_TypeBuilder_get_IsGenericParameter'.
13511
13512 2003-10-14  Martin Baulig  <martin@ximian.com>
13513
13514         * reflection.c (mono_reflection_bind_generic_parameters): Also
13515         inflate generic methods if we're reading the class from IL.
13516
13517 2003-10-13  Martin Baulig  <martin@ximian.com>
13518
13519         * reflection.c (mono_reflection_define_generic_parameter): This
13520         method isn't called directly from the icall anymore; take a
13521         `MonoReflectionAssemblyBuilder *' so we can use this for type and
13522         method generic parameters.
13523         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
13524         (method_builder_encode_signature): Encode generic parameters.
13525         (mono_image_get_method_info): Write generic params to the
13526         MONO_TABLE_GENERICPARAM table.
13527
13528         * reflection.h (MonoReflectionMethodBuilder): Added
13529         `MonoArray *generic_params'.
13530
13531         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
13532
13533         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
13534         wrapper for mono_reflection_define_generic_parameter().
13535         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
13536
13537 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
13538
13539         * marshal.h: Add missing function to fix build.
13540
13541         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
13542         the SetLastError pinvoke attribute.
13543
13544         * marshal.c (mono_marshal_set_last_error): New helper function called
13545         by the generated code.
13546         
13547         * marshal.c (mono_mb_emit_branch): New helper function.
13548
13549         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
13550
13551         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
13552         classes as parameters and return values of delegates. Fixes #29256. 
13553
13554 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
13555
13556         * locales.c: use gint32 in non HAVE_ICU case
13557
13558 2003-10-11  Martin Baulig  <martin@ximian.com>
13559
13560         * mono-debug.c (mono_debug_add_method): Added a workaround for
13561         bug #48591.
13562
13563 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
13564
13565         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
13566         delegates passed to native code must use the STDCALL calling 
13567         convention. Fixes #35987.
13568
13569 2003-10-10  Martin Baulig  <martin@ximian.com>
13570
13571         * class.c (inflate_generic_type): If we're inflating for a generic
13572         type instance (and not for a generic method), return
13573         MONO_TYPE_MVAR unchanged.
13574
13575 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13576
13577         * string-icalls.c: Join ignores null strings in the source array.
13578         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
13579         * threads.c: GetAvailableTheads is slightly more accurate.
13580
13581 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
13582
13583         * threads.h threads.c : add mono_threads_set_default_stacksize
13584         and pass default to CreateThread calls.
13585
13586 2003-10-09  Dick Porter  <dick@ximian.com>
13587
13588         * icall.c:
13589         * locales.h:
13590         * locales.c: Internal calls for constructing CultureInfo and
13591         related objects from libicu (if its available.)
13592
13593 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
13594
13595         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
13596
13597 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13598
13599         * threadpool.c: added an argument to async_invoke_thread that is the
13600         item to process, pass the MonoAsyncResult to the thread start function
13601         when creating a new thread. This way we don't need to acquire any lock
13602         when we're creating a new thread. Readded a semaphore for faster
13603         response times (instead of that Sleep i added).
13604
13605 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
13606
13607         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
13608         get daylight change dates better on Windows, fix handling
13609         of platforms without tm_gmtoff.
13610
13611 2003-10-06  Martin Baulig  <martin@ximian.com>
13612
13613         * class.c (inflate_generic_method): Renamed to
13614         mono_class_inflate_generic_method() and made public.
13615         (mono_class_init): Don't inflate the generic methods here.
13616         (mono_class_from_generic): Added `gboolean inflate_methods'
13617         argument.  Inflate the methods here.
13618
13619         * loader.c (mono_method_get_param_names): Ignore instances of
13620         generic types for the moment.
13621
13622         * reflection.c (fixup_method): Added support for inflated methods.
13623         (mono_image_create_token): Use mono_image_get_methodref_token()
13624         for inflated methods.
13625         (mono_custom_attrs_from_param): Ignore instances of generic types
13626         for the moment.
13627         (mono_reflection_bind_generic_parameters): New public function.
13628         Moved all the functionality from
13629         ves_icall_Type_BindGenericParameters() here and added support for
13630         dynamic types.
13631         (mono_reflection_define_generic_parameter): Initialize
13632         `klass->methods' here.
13633
13634         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
13635         functionality into mono_reflection_define_generic_parameter().
13636         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
13637         TypeBuilder, return that TypeBuilder.
13638
13639 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13640
13641         * appdomain.c: removed mono_delegate_semaphore.
13642
13643         * threadpool.c:
13644         (mono_thread_pool_add): moved hash table creation inside and the thread 
13645         creation outside of the critical region.
13646         (mono_thread_pool_finish): removed obsolete code.
13647         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
13648         continue or exit the thread depending on the queue.
13649
13650 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
13651
13652         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
13653         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
13654         handle more bool marshalling options
13655
13656 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
13657
13658         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
13659         arrays of structs. Also add a more descriptive error message when
13660         a structure member is marshalled as LPArray.
13661
13662 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
13663
13664         * marshal.c (mono_marshal_get_native_wrapper): Add support for
13665         marshalling arrays of complex types. Fixes #29098. Also remove an
13666         usused and incomplete function.
13667
13668 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
13669
13670         * gc.c: report heap_size - free_bytes as total memory allocated
13671         (bug#49362).
13672
13673 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
13674
13675         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
13676         fix timezone handling problems on Windows.
13677         
13678         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
13679         asserts when the year is outside the range handled by ms the functions.
13680
13681         * class.c (setup_interface_offsets): If the class is an interface,
13682         fill out its interface_offsets slot.
13683
13684 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13685
13686         * threadpool.c: mark threadpool threads as background.
13687
13688 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
13689
13690         * decimal.c - define DECINLINE to nothing if not using GCC
13691
13692 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
13693
13694         * assembly.c: More refcount fixes.
13695
13696 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13697
13698         * string-icalls.c: if we're not trimming, return the same string.
13699         When not splitting, don't create a new string.
13700
13701 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13702
13703         * image.c:
13704         (mono_image_open): increment the ref_count inside the critical section.
13705
13706 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
13707
13708         * image.c (mono_image_open): Fix reference counting bug.
13709
13710 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
13711
13712         * marshal.c (mono_marshal_type_size) struct alignment changed for 
13713         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
13714         64bits. Avoid leak in mono_marshal_get_native_wrapper when
13715         mono_lookup_pinvoke_call throws.        
13716
13717 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
13718
13719         * reflection.c (mono_reflection_parse_type): Fix #49114.
13720
13721         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
13722         temporary workaround for cygwin header problem.
13723
13724         * object.c (mono_object_isinst): Synchronize this with the code
13725         generated by the JIT for casts.
13726
13727 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
13728
13729         * reflection.c (encode_type): Fix #38332.
13730
13731 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
13732
13733         * marshal.c (mono_marshal_method_from_wrapper): New function to return
13734         the original method from the wrapper method.
13735
13736 2003-09-25  Martin Baulig  <martin@ximian.com>
13737
13738         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
13739         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
13740         (ves_icall_Type_get_IsGenericInstance): New interncall.
13741
13742 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
13743
13744         * object.c: fix cast warning in big endian code.
13745
13746 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
13747
13748         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
13749         
13750 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13751
13752         * assembly.c: don't call check_env from mono_assembly_load. It's
13753         already done once in mono_assemblies_init and may cause headaches when
13754         multiple threads are loading assemblies.
13755
13756 2003-09-19  Martin Baulig  <martin@ximian.com>
13757
13758         * reflection.c (mono_reflection_define_generic_parameter): Don't
13759         allocate `klass->methods', set `klass->flags' to
13760         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
13761
13762 2003-09-18  Martin Baulig  <martin@ximian.com>
13763
13764         * class.c (mono_class_init): Don't create `class->methods' if it's
13765         already initialized.
13766
13767         * metadata.c (mono_metadata_load_generic_params): Make this
13768         actually work.
13769
13770         * reflection.c (mono_reflection_define_generic_parameter): Set
13771         parent class and interfaces from the constraints.
13772
13773         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
13774         to keep this struct in sync with the declaration in TypeBuilder.cs.
13775
13776 2003-09-17  Martin Baulig  <martin@ximian.com>
13777
13778         * metadata.h (MonoType): Replaced the data's `int type_param'
13779         field with `MonoGenericParam *generic_param'.
13780         (MonoGenericParam): Added `MonoClass *klass'.
13781
13782         * class.c (mono_class_from_gen_param): Removed the
13783         `MonoImage *image' and `int type_num' arguments.
13784
13785         * metadata.c (mono_metadata_parse_generic_param): New static
13786         method; creates a MonoGenericParam which just contains the index.
13787         (do_mono_metadata_parse_type): Call
13788         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
13789         MONO_TYPE_MVAR.
13790
13791         * reflection.c (mono_image_typedef_or_ref): Generic type
13792         parameters may be in the same assembly, but never use a typedef
13793         for them.
13794         (mono_reflection_define_generic_parameter): We're now creating a
13795         "real" class for the type parameter; it's now safe to call
13796         mono_class_from_mono_type() on the class'es type, it'll do the
13797         right thing.
13798
13799 2003-09-16  Martin Baulig  <martin@ximian.com>
13800
13801         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
13802         `symfile->range_entry_size' and `symfile->class_entry_size' here;
13803         the `symfile' data structure must be fully initialized before it
13804         gets added to the table.
13805
13806 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
13807
13808         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
13809
13810         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
13811         class init trampolines.
13812
13813 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
13814
13815         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
13816         to the built-in profiler to turn off time and allocation profiling
13817         respectively.
13818
13819 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
13820
13821         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
13822         g_direct_equal.
13823
13824         * debug-helpers.c (mono_method_full_name): Print the wrapper type
13825         in human readable form.
13826
13827 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
13828
13829         * reflection.c icall.c: Fixed warnings.
13830
13831         * image.c (load_class_names): Use a temporary hash table to hold the
13832         namespaces in order to avoid doing many string comparisons.
13833
13834         * image.h: Fix typo.
13835
13836         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
13837         Pass NULL instead of g_direct_equal to the GHashTable constructor 
13838         since the NULL case is short-circuited inside g_hash_table_lookup, 
13839         leading to better performance.  
13840
13841         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
13842         obtain the first custom attribute for a given index. Depends on the
13843         CustomAttribute table being sorted by the parent field.
13844
13845         * reflection.c (mono_custom_attrs_from_index): Use the new function 
13846         for better performance.
13847
13848 2003-09-07  Martin Baulig  <martin@ximian.com>
13849
13850         * class.c (mono_class_init): If we're a generic instance, inflate
13851         all our methods instead of loading them from the image.
13852         (mono_class_from_generic): Set `class->methods = gklass->methods'.
13853
13854 2003-09-07  Martin Baulig  <martin@ximian.com>
13855
13856         * mono-debug-debugger.c: Added support for constructors.
13857
13858 2003-09-06  Martin Baulig  <martin@ximian.com>
13859
13860         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
13861         New interncall.
13862
13863         * reflection.c (mono_reflection_setup_generic_class): Call
13864         ensure_runtime_vtable() to create the vtable.
13865
13866 2003-09-05  Martin Baulig  <martin@ximian.com>
13867
13868         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
13869         MONO_TYPE_MVAR.
13870
13871 2003-09-04  Martin Baulig  <martin@ximian.com>
13872
13873         * reflection.c (mono_reflection_define_generic_parameter): Generic
13874         parameters start with zero.
13875
13876 2003-09-04  Martin Baulig  <martin@ximian.com>
13877
13878         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13879
13880         * reflection.h (MonoReflectionGenericParam): New typedef.
13881         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
13882         the generic parameters from the managed TypeBuilder.
13883
13884         * reflection.c (mono_reflection_define_generic_parameter): New function.
13885         (mono_reflection_create_runtime_class): Encode generic parameters.
13886         (mono_reflection_setup_generic_class): New function; this is
13887         called after adding adding all generic params to the TypeBuilder.
13888         (encode_type): Added MONO_TYPE_VAR.
13889
13890 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
13891
13892         * class.h class.c (mono_class_needs_cctor_run): Moved this method
13893         here from the JIT.
13894
13895         * assembly.h assembly.c: Moved the AOT loading code into an assembly
13896         load hook.
13897
13898 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
13899
13900         * reflection.h reflection.c class.h class.c: Delete duplicate 
13901         definition of mono_type_get_name () from reflection.c and export the
13902         one in class.c.
13903
13904         * class.c: Class loading fixes from Bernie Solomon 
13905         (bernard@ugsolutions.com).
13906
13907         * reflection.c: Endianness fixes from Bernie Solomon 
13908         (bernard@ugsolutions.com).
13909         
13910 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
13911
13912         * assembly.h assembly.c: Define a file format version for AOT
13913         libraries.
13914         
13915         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
13916
13917         * appdomain.h (MonoJitInfo): New field to determine whenever the
13918         code is domain neutral.
13919         
13920 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
13921
13922         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
13923
13924 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
13925
13926         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
13927         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
13928         Avoid caching the result since strings must be domain specific. Fixes
13929         #48050.
13930
13931 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
13932
13933         * marshal.c (mono_marshal_init): Make this callable multiple times
13934         since it is hard to find a correct place to call it.
13935
13936         * object.c (mono_runtime_class_init): Execute static constructors in
13937         the correct appdomain.
13938
13939         * image.c (build_guid_table): Handle the case when multiple images have
13940         the same GUID.
13941
13942 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13943
13944         * icall.c: added a couple of icalls for System.Web.
13945
13946 2003-08-28  Martin Baulig  <martin@ximian.com>
13947
13948         * icall.c (ves_icall_Type_BindGenericParameters): Use
13949         `klass->generic_inst' instead of `&klass->byval_arg' in the
13950         mono_type_get_object() call.  The returned type must be
13951         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
13952
13953 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
13954
13955         * NOTES: New file.
13956
13957         * object.c (mono_class_proxy_vtable): Make it thread safe.
13958
13959         * pedump.c: Fix warning.
13960
13961         * object.c appdomain.h: Get rid of metadata_section. 
13962         It is no longer needed and it was causing deadlocks with domain->lock.
13963
13964         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
13965
13966 2003-08-26  Martin Baulig  <martin@ximian.com>
13967
13968         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
13969
13970 2003-08-26  Martin Baulig  <martin@ximian.com>
13971
13972         * pedump.c (main): Call mono_metadata_init(),
13973         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
13974         and mono_loader_init().
13975
13976 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
13977
13978         * loader.h: Add missing include to fix build.
13979
13980         * image.h: mono_image_load_references is no more.
13981
13982         * assembly.c: Reworked assembly loading to make it really thread safe.
13983         After these changes, the assembly returned by mono_assembly_open is
13984         fully initialized, i.e. all its references assemblies are loaded.
13985
13986         * assembly.c (mono_image_load_references): Renamed to 
13987         mono_assembly_load_references, and made private, since clients no
13988         longer need to call it.
13989
13990         * class.c: Removed calls to mono_assembly_load_references, since it was
13991         a source of deadlocks.
13992
13993         * loader.h loader.c class.h class.c: Protect data structures using a 
13994         new lock, the loader lock.
13995
13996         * class.c (mono_class_setup_vtable): Create temporary hash tables and
13997         GPtrArrays only when needed.
13998
13999         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
14000         into empty structures by mcs. Fixes pinvoke7.cs.
14001         
14002         * domain.c (mono_init): Call a new initialization function.
14003
14004         * appdomain.c (mono_runtime_init): Call the new initializer function
14005         of the marshal module.
14006
14007         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
14008         inserted into empty structures by mcs. Fixes pinvoke7.cs.
14009
14010         * marshal.h marshal.c: Added locks around the wrapper caches to make
14011         this module thread safe.
14012
14013         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
14014         this argument. Fixes pinvoke1.exe.
14015
14016 2003-08-25  Lluis Sanchez <lluis@ximian.com>
14017
14018         * object.h: Added call_type field to MonoMethodMessage and the corresponding
14019         enumeration of values. Removed fields to store remote call output values in
14020         MonoAsyncResult. Not needed any more.
14021         * object.c: Initialize call_type and async_result fields in mono_message_init.
14022         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
14023         dispatching the message.
14024         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
14025         async call to finish. To do it use a message with EndInvoke call type.
14026
14027 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
14028
14029         * loader.h loader.c (mono_method_hash_marhal_info): New function which
14030         determines whenever a method has marshalling info.
14031
14032 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14033
14034         * assembly.c: fix the build on windows.
14035
14036 2003-08-22 Lluis Sanchez <lluis@ximian.com>
14037
14038         * object.cs: Fixed bug #47785.
14039
14040 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
14041
14042         * string-icalls.c (StringReplace): If their are no occurances of
14043         the old string found return a reference to the supplied
14044         string. This saves some memory and matches MS behavoir.
14045         
14046 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14047
14048         * socket-io.c: fixed compilation for systems that define AF_INET6
14049         and don't define SOL_IP/SOL_IPV6.
14050
14051 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
14052
14053         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
14054         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
14055
14056         * rawbuffer.c rawbuffer.h: Make this module thread safe.
14057
14058         * domain.c: Make this module thread safe.
14059
14060         * domain.c (mono_init): Call new initialization function.
14061
14062         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
14063         reference types too. Fixes #38812.
14064
14065         * image.c (mono_image_init): Fixed warnings.
14066
14067         * class.c (mono_class_from_typeref): Handle assembly load failure
14068         correctly.
14069
14070         * appdomain.c (add_assemblies_to_domain): Handle the case when
14071         the references of an assembly are not yet loaded.
14072
14073         * metadata.c image.c assembly.c: Moved initialization of global
14074         variables to a separate function called at startup since lazy 
14075         initialization of these variables is not thread safe.
14076         
14077         * image.c assembly.c: Made this module thread safe by adding locks in 
14078         the appropriate places.
14079
14080         * domain.c (mono_init): Call the new initialization functions of the
14081         three modules.
14082
14083 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
14084
14085         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
14086           make a direct call. It is proxy's work to make the call asynchronous.
14087           mono_delegate_end_invoke(): If the targe is a proxy, just collect
14088           the return values.
14089         * object.cs: mono_method_call_message_new(): read AsyncResult and
14090           state object from parameters list, if this info is requested.
14091         * object.h: Added fields to store remote call output values in
14092           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
14093
14094 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14095
14096         * object.h: add needed fields to MonoThread.
14097         * threads.c, threads.h: allow registering a function to cleanup data
14098         allocated per thread by the JIT.
14099
14100 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14101
14102         * loader.h: portability fix by Bernie Solomon
14103         * <bernard@ugsolutions.com>.
14104
14105 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
14106
14107         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
14108         return a MonoArray. This simplifies the code and also ensures that
14109         the cache allways contains an object reference as a value.
14110
14111         * icall.c (ves_icall_get_parameter_info): Simplified using the new
14112         function.
14113
14114 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14115
14116         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
14117         fixes a problem with byte ordering when getting the address family for
14118         a socket.
14119
14120 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
14121
14122         * .cvsignore: Added monosn.
14123
14124         * reflection.h reflection.c loader.c: Added support for parameter
14125         marshalling to dynamically created types. Fixes #47295.
14126
14127 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
14128
14129         * rand.c: remove useless warnings.
14130
14131 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
14132
14133         * class.c: implemented ldtoken for methods and fieldrefs.
14134
14135 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14136
14137         * threadpool.c: when mono_async_invoke was called, no one took care of
14138         monitoring the queue. So if the method invoked took some time and we
14139         got new async invoke requests after 500 ms (the thread created waited
14140         that long in WaitForSingleObject), the new async invoke was not called
14141         until the previous one finished.
14142
14143         This is fixed now. Thanks to Totte for helping with it.
14144
14145 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14146
14147         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
14148
14149 2003-08-11  Martin Baulig  <martin@ximian.com>
14150
14151         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
14152
14153 2003-08-06  Martin Baulig  <martin@ximian.com>
14154
14155         * mono-debug-debugger.c: Added support for static fields,
14156         properties and methods.
14157
14158 2003-08-06  Martin Baulig  <martin@ximian.com>
14159
14160         * mono-debug-debugger.c: Don't store the MonoString's vtable to
14161         make this work for applications with multiple application domains.
14162
14163 2003-08-04  Martin Baulig  <martin@ximian.com>
14164
14165         * mono-debug-debugger.c: Completely reworked the type support; the
14166         most important thing is that we're now just using one single
14167         `MonoType' instance per type.
14168
14169 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
14170
14171         * mono-endian.h, mono-endian.c, icall.c: Added icall
14172         ves_icall_System_Double_AssertEndianity to assert double word endianity
14173         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
14174
14175 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14176
14177         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
14178         support, icalls and fixes.
14179
14180 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
14181
14182         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
14183         classes that are a punctuation character in .NET is not the same a
14184         g_unichar_ispunct.
14185
14186 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14187
14188         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
14189
14190 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
14191
14192         * icall.c: Add new MemCopy internalcall.
14193         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
14194         Simplified code; It is not necessary to handle all the cases here,
14195         as the C# code takes care of it.  Only handle the case of the name
14196         resource embedded into the assembly.
14197
14198         Changed signature to return the data pointer and the size of the
14199         data. 
14200
14201 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
14202
14203         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
14204         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
14205
14206 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
14207
14208         * socket-io.c: ignore EINTR error in select.
14209
14210 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
14211
14212         * class.h, class.c: removed unused subclasses field in MonoClass.
14213
14214 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
14215
14216         * icall.c: improve fix of get_base_definition(). If the parent class
14217           doesn't have the mehod, look at the parent of the parent.
14218         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
14219           to check if a parameter is an in or out parameter
14220           (PARAM_ATTRIBUTE_IN is not set by default).
14221           mono_method_return_message_restore(): Use mono_class_value_size to
14222           get the size of a value type. mono_type_stack_size (parameterType)
14223           does not return the correct value if parameterType is byRef.
14224           mono_load_remote_field(), mono_load_remote_field_new(),
14225           mono_store_remote_field(), mono_store_remote_field_new():
14226           raise exception if the remote call returns an exception.
14227
14228 2003-07-28  Martin Baulig  <martin@ximian.com>
14229
14230         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
14231         method.  This is a wrapper around mono_runtime_invoke() which
14232         boxes the instance object if neccessary.
14233
14234 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14235
14236         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
14237         metadata.h, row-indexes.h, verify.c: first cut of generics support.
14238
14239 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14240
14241         * icall.c: disable mcs bug workaround.
14242
14243 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
14244
14245         * object.c (mono_runtime_class_init): Take the metadata_section
14246         mutex before obtaining the domain mutex.
14247
14248         * appdomain.h: Added definition of metadata_section mutex here. 
14249
14250         * object.c: define metadata_mutex here.
14251
14252 2003-07-24  Ravi Pratap  <ravi@ximian.com>
14253
14254         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
14255         fixed.
14256
14257 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
14258
14259         * reflection.c: Fix bug #46669
14260
14261 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14262
14263         * exception.c:
14264         * exception.h:
14265         * icall.c:
14266         * object.h: fill in the type name for TypeLoadException.
14267
14268 2003-07-23  Ravi Pratap  <ravi@ximian.com>
14269
14270         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
14271         relationship between TypeBuilders while compiling corlib) and bug
14272         45993 (Array types returned from the runtime while compiling
14273         corlib were from the loaded corlib).
14274
14275 2003-07-22  Martin Baulig  <martin@ximian.com>
14276
14277         * mono-debug-debugger.c: Reworked the type support a bit more;
14278         distinguish between types and classes.
14279
14280 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
14281
14282         * icall.c: add IsArrayImpl icall.
14283
14284 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
14285
14286         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
14287         initializing real_size only once. Also fix bug #46602.
14288
14289 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
14290
14291         * object.c: Renamed mono_metadata_section to metadata_section.
14292
14293 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
14294
14295         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
14296           empty array if the type is an array. Fixed.
14297           ves_icall_MonoMethod_get_base_definition: if the base method
14298           is abstract, get the MethodInfo from the list of methods of
14299           the class.
14300         * reflection.c: ParameterInfo.PositionImpl should be zero-based
14301           and it was 1-based. Fixed in mono_param_get_objects.
14302
14303 2003-07-20  Martin Baulig  <martin@ximian.com>
14304
14305         * mono-debug.h: Set version number to 31.
14306         (mono_debug_init): Added `MonoDomain *' argument.
14307
14308         * mono-debug-debugger.c: Reworked the type support; explicitly
14309         tell the debugger about builtin types; pass the `klass' address to
14310         the debugger.
14311
14312 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
14313
14314         * image.c: Allow new metadata tables to be loaded without a
14315         warning. Also update the warning message to give the new constant value.
14316                 
14317 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
14318
14319         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
14320         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
14321         array type representation changes.
14322
14323 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
14324
14325         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
14326         on Environment.Exit () call.
14327
14328 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
14329
14330         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
14331         requires a matching corlib.
14332
14333 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
14334
14335         * Changelog: My editor decided to add a CR to each line. Sorry about that.
14336           Committed again without the CRs.
14337         
14338 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
14339
14340         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
14341           getting it from the "this" socket instance. Did not work
14342           if the socket is a subclass of Socket.
14343           Also fixed bug #35371.
14344
14345 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
14346
14347         * metadata.c: fixed size for TypedByRef.
14348         * loader.c: when searching for a method, consider the vararg amrker.
14349         * unicode.c, decimal.c: constify some arrays.
14350
14351 2003-07-15  Dick Porter  <dick@ximian.com>
14352
14353         * socket-io.c: Fixed compilation for gcc < 3.2.
14354
14355         Fixed compilation for machines that don't have AF_INET6 (thanks to
14356         Bernie Solomon <bernard@ugsolutions.com> for that part.)
14357
14358         Fixed compile warnings.
14359         
14360         Fixed formatting and line endings.
14361
14362 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
14363
14364         * socket-io.h:
14365         * socket-io.c: Added IPv6 support.
14366
14367 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
14368
14369         * class.c (mono_class_is_assignable_from): New function to implement
14370         the is_assignable_from logic. Used by mono_object_isinst, 
14371         Type::IsAssignableFrom () and the interpreter.
14372
14373         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
14374         Object, even interfaces.
14375         
14376         * object.c (mono_object_isinst): Implement in terms of 
14377         is_assignable_from.
14378
14379         * icall.c (ves_icall_type_is_assignable_from): New icall.
14380
14381 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
14382
14383         * domain.c (foreach_domain): fix compiler warning.
14384
14385 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
14386
14387         * image.c (load_metadata_ptrs): use g_strndup because strndup is
14388         not available on all plattforms
14389
14390 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
14391
14392         * image.h image.c: Store the metadata version string in MonoImage.
14393         * icall.c: New icall to retrieve the image version.
14394         * reflection.c (create_dynamic_image): Fill in the image version field
14395         * reflection.c (build_compressed_metadata): Use the image version
14396         from the image structure.
14397
14398 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14399
14400         * appdomain.c: modified comment.
14401         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
14402         That will be its last iteration when mono_gc_cleanup is called from
14403         mono_runtime_cleanup and before the domain is unloaded.
14404
14405         Fixes bug #45962.
14406
14407 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
14408
14409         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
14410         attributes.
14411
14412 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14413
14414         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
14415         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
14416         Bernie Solomon <bernard@ugsolutions.com>.
14417
14418 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
14419
14420         * object.c, object.h: provide mono_object_new_fast() for faster
14421         allocation in some special cases.
14422
14423 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
14424
14425         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
14426         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
14427
14428 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
14429
14430         * threadpool.c: fix leaks.
14431
14432 2003-07-01  Dick Porter  <dick@ximian.com>
14433
14434         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
14435         using MonoGHashTables.  Fixes threadpool bug posted to list.
14436
14437 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
14438
14439         * image.h, image.c: added support to load an assembly from a byte array.
14440         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
14441         assembly bundle support.
14442
14443 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
14444
14445         * threadpool.c (mono_thread_pool_add): keep a reference to the
14446         AsyncResult to prevent GC
14447
14448 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
14449
14450         * class.c: leak fix.
14451
14452 2003-06-25  Dick Porter  <dick@ximian.com>
14453
14454         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
14455         for the async object, the WaitHandle object will close the handle.
14456         Fixes bug 45321.
14457
14458 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
14459
14460         * class.c: in mono_array_class_get (), lookup from the hash with the
14461         same type we insert: this works around a bug in
14462         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
14463         lluis. The real fix will have to wait for after the release.
14464
14465 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
14466
14467         * icall.c: fix memory leak when getting type members.
14468
14469 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
14470
14471         * reflection.c: added more pubtoken special cases.
14472
14473 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
14474
14475         * class.c: handle field offset correctly when class size
14476         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
14477
14478 2003-06-20  Martin Baulig  <martin@ximian.com>
14479
14480         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
14481         *image' field.
14482
14483 2003-06-20  Martin Baulig  <martin@ximian.com>
14484
14485         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
14486
14487 2003-06-20  Martin Baulig  <martin@ximian.com>
14488
14489         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
14490         just distinguish between variables in registers and variables at
14491         an offset relative to a register.
14492
14493 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14494
14495         * icall.c: #ifdef out latest changes until mcs is fixed.
14496
14497 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14498
14499         * icall.c: return members in metadata order.
14500
14501 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
14502
14503         * icall.c: avoid infinite loop in GetTimeZoneData.
14504
14505 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
14506
14507         * icall.c: added Marshal.Prelink/All icalls.
14508
14509 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
14510
14511         * object.c, object.h: fix warnings and do some overflow checking
14512         when creating arrays.
14513
14514 2003-06-17  Dick Porter  <dick@ximian.com>
14515
14516         * file-io.h:
14517         * file-io.c: File attributes need to be tweaked slightly when
14518         passed from the managed to the w32 world.
14519
14520 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
14521         * profiler.h profiler-private.h profiler.c: Rework last patch
14522         based on suggestion by Paolo.
14523         
14524 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
14525
14526         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
14527         instruction level coverage data collection.
14528         * profiler.h profiler.c (: Added new callback function which can be
14529         used by the profiler to limit which functions should have coverage
14530         instrumentation.
14531         * profiler.c (mono_profiler_load): Call g_module_build_path to
14532         generate the file name of the profiler library.
14533
14534 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14535
14536         * profiler.c, profiler.h, profiler-private.h: added basic block 
14537         coverage profiling API.
14538
14539 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
14540
14541         * reflection.c (mono_reflection_create_runtime_class): Add support
14542         for events in dynamically generated code.
14543
14544         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
14545         not allocated.
14546
14547 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
14548
14549         * icall.c: when getting timezone info, return reasonable values if we
14550         can't get the actual data.
14551
14552 2003-06-14  Dick Porter  <dick@ximian.com>
14553
14554         * threads.c (start_wrapper): Remove the reference to the thread
14555         object in the TLS data, so the thread object can be finalized.
14556         This won't be reached if the thread threw an uncaught exception,
14557         so those thread handles will stay referenced :-( (This is due to
14558         missing support for scanning thread-specific data in the Boehm GC
14559         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
14560
14561 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
14562
14563         * reflection.c: ensure streams and tables are first allocated with
14564         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
14565
14566 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14567
14568         * icall.c: fixed GetElementType for byrefs (bug# 44792).
14569
14570 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
14571
14572         * reflection.c (mono_reflection_create_runtime_class): Add support for
14573         properties to dynamically created classes.
14574         * reflection.c: Fix a few places where non-MonoObjects were inserted
14575         into the tokens hashtable.
14576
14577 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
14578
14579         * object.c: some support to handle out of memory exceptions.
14580
14581 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
14582
14583         * marshal.c (mono_marshal_get_native_wrapper): support reference
14584         return types
14585
14586 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
14587
14588         * object.h, object.c: more portability stuff from Bernie Solomon.
14589         Unexport mono_object_allocate(). Added mono_object_unbox ().
14590         Set exitcode when an unhandled exception is thrown.
14591
14592 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
14593
14594         * marshal.c (mono_marshal_get_native_wrapper): use custom
14595         marshaler for return types.
14596
14597 2003-06-10  Dick Porter  <dick@ximian.com>
14598
14599         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
14600         ip_mreq is available
14601
14602 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
14603
14604         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
14605         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
14606         by Bernie Solomon <bernard@ugsolutions.com>.
14607
14608 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
14609
14610         * gc.c (mono_gc_init): Avoid error message on shutdown when
14611         GC_DONT_GC=1 is used.
14612
14613         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
14614         New icall to return the GUID of a module.
14615
14616 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
14617
14618         * class.c: ensure instance size always includes the parent's size
14619         even whem class size is set explicitly (fixes bug#44294).
14620
14621 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
14622
14623         * profiler.h, profiler.c: made the simple profiler thread-safe,
14624         get more accurate timing info. Allow the loading of an
14625         externally-developed profiler module.
14626
14627 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
14628
14629         * marshal.c (mono_marshal_get_native_wrapper): improved
14630         class/byref arguments.
14631         (mono_marshal_get_native_wrapper): better string marshaling support.
14632
14633 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
14634
14635         * class.c: ensure .pack and .size are handled correctly and
14636         simplified layout of static fields.
14637
14638 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
14639
14640         * appdomain.c
14641         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
14642
14643         * loader.c (mono_lookup_pinvoke_call): look for modules in the
14644         current directory (fix bug 44008)
14645
14646 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
14647
14648         * marshal.c (mono_marshal_get_native_wrapper): started support for
14649         custom marshalers.
14650         (mono_delegate_to_ftnptr): consider marshalling specifications
14651
14652 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
14653
14654         * reflection.c, reflection.h: emit custom marshal info.
14655
14656 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14657
14658         * object.c: free the GError.
14659         * icall.c: added CloseEvent_internal.
14660         * threads.[ch]:
14661         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
14662         call.
14663
14664 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
14665
14666         * loader.c (mono_method_get_signature): Add support for dynamic
14667         assemblies.
14668
14669 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
14670
14671         * reflection.c: fixed bug #43905.
14672
14673 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
14674
14675         * class.c, domain.c, icall.c, metadata.h, object.h: support for
14676         handling TypedReference and ArgIterator.
14677         * loader.c, loader.h: added function to get signature at call site.
14678
14679 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
14680
14681         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
14682         data readonly. Buglets and warning fixes. Some MethodSpec support.
14683
14684 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
14685
14686         * class.h, class.c, object.c: remove relative numbering support.
14687
14688 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
14689
14690         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
14691         free the string, until we get a chance to fix Gtk#
14692
14693 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14694
14695         * marshal.c: revert last patch.
14696
14697 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
14698
14699         * icall.c: updates for new mono_class_vtable() not calling
14700         the type constructor anymore.
14701
14702 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
14703
14704         * object.h, object.c: separate vtable creation from type
14705         initialization. Make running the .cctor thread safe.
14706
14707 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
14708
14709         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
14710
14711 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
14712
14713         * loader.c (mono_get_method): consider calling convention
14714
14715 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
14716
14717         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
14718         to return the invisible global type for a module.
14719
14720         * reflection.c (mono_image_build_metadata): Emit global fields too.
14721
14722 2003-05-20  Peter Williams  <peterw@ximian.com>
14723
14724         * loader.c (mono_lookup_internal_call): Add a few newlines.
14725
14726 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
14727
14728         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
14729         literal strings.
14730
14731         * appdomain.c (set_domain_search_path): Recalculate search path when
14732         AppDomainSetup.PrivateBinPath changes.
14733
14734         * object.c (mono_class_compute_gc_descriptor): It turns out some
14735         parts of the class libs (like System.Thread) holds pointers to
14736         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
14737         to treat native int a pointer type here.
14738         
14739 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
14740
14741         * appdomain.h, domain.c: add hashtable for jump target resolution.
14742
14743 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
14744
14745         * reflection.h reflection.c icall.c: Added new icalls 
14746         GetManifestResourceInfoInternal, GetModulesInternal and support
14747         infrastructure.
14748
14749 2003-05-16  Dick Porter  <dick@ximian.com>
14750
14751         * icall.c:
14752         * file-io.h:
14753         * file-io.c: Implement System.IO.MonoIO::GetTempPath
14754
14755 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
14756
14757         * object.c: mono_store_remote_field: little fix to previous patch.
14758
14759 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14760
14761         * class.c: add constructors to array classes.
14762         * icall.c: special case array construction for InternalInvoke (),
14763
14764 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
14765
14766         * class.h class.c reflection.c object.c: Added support for field
14767         defaults in dynamically generated classes.
14768
14769 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
14770
14771         * reflection.c: properly encode charset for ddlimport.
14772
14773 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
14774
14775         * threads.c: allow compiling without GC.
14776
14777 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
14778
14779         * appdomain.h, object.c, object.h, threads.c, threads.h: added
14780         handling of thread static data.
14781
14782 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14783
14784         * reflection.h, reflection.c: added mono_custom_attrs_free ().
14785
14786 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
14787
14788         * class.c (mono_array_class_get): always set the serializable flags
14789         (mono_array_class_get): always set the SEALED attribute for array types
14790
14791 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
14792
14793         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
14794         attributes (fix for bug 42021).
14795
14796 2003-05-12  Dick Porter  <dick@ximian.com>
14797
14798         * gc.c: Don't run finalizers when the finalizer thread is
14799         finishing up, because the default domain has already been
14800         destroyed.
14801
14802 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
14803
14804         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
14805         value is null, we should throw an exception.   This is slightly
14806         different than the other conventions used for the constructor.
14807
14808 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14809
14810         * socket-io.c: fixed windows build.
14811
14812 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14813
14814         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
14815
14816 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
14817
14818         * object.c (mono_string_new_wrapper): Compatibility fix for MS
14819         compilers.
14820
14821 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
14822
14823         * class.c (mono_class_layout_fields): Add experimental GC aware
14824         auto layout facility. Requires class library changes to work correctly.
14825
14826         (mono_class_setup_vtable): Avoid overriding explicit interface
14827         method implementations. Fixes iface3.exe test.
14828
14829         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
14830         object reference.
14831         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
14832         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
14833
14834         * metadata.h: Add new type classification macro which determines
14835         whenever the type holds an object reference.
14836
14837 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
14838
14839         * marshal.c (mono_marshal_get_native_wrapper): cleanups
14840
14841 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
14842
14843         * gc.c (finalizer_thread): Work around a GC bug.
14844
14845 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
14846
14847         * marshal.c (emit_struct_conv): allow unions
14848
14849         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
14850
14851 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
14852
14853         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
14854
14855 2003-05-06  Martin Baulig  <martin@ximian.com>
14856
14857         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
14858
14859 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14860
14861         * socket-io.c:
14862         (Select_internal): allow NULLs, don't create arrays if not needed.
14863         Coupled with Socket.cs changes.
14864
14865         * threadpool.c:
14866         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
14867         register a finalizer for it that will close the semaphore handle. This
14868         fixes the leak and make Lupus' test run with > 4080 loops.
14869
14870 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
14871
14872         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
14873         Jerome Laban (bug #42287)
14874
14875 2003-05-02  Martin Baulig  <martin@ximian.com>
14876
14877         * debug-mono-symfile.h
14878         (MonoSymbolFile): Moved declaration into mono-debug.h.
14879         (MonoDebugMethodJitInfo): Likewise.
14880         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
14881         argument.
14882         (_mono_debug_address_from_il_offset): Take a
14883         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
14884
14885         * mono-debug.h
14886         (MonoDebugDomainData): New struct.
14887         (mono_debug_get_domain_data): New function.
14888         (mono_debug_add_method): Take an additional `MonoDomain *'
14889         argument.
14890         (mono_debug_source_location_from_address): Likewise.
14891         (mono_debug_il_offset_from_address): Likewise.
14892         (mono_debug_address_from_il_offset): Likewise.
14893
14894 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
14895
14896         * reflection.c: one more check for null type in custom attrs.
14897
14898 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14899
14900         * reflection.c: avoid warning (comparison is always false due to limited
14901         range of data type).
14902
14903 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14904
14905         * icall.c: throw an exception in Type.GetField if the argument 'name'
14906         is NULL.
14907
14908 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
14909
14910         * reflection.c: fixed handling of enums in named arguments to custom
14911         attributes (bug #42123).
14912
14913 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
14914
14915         * reflection.c: use the right array element type and handle
14916         a null for a Type argument, too.
14917
14918 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
14919
14920         * reflection.c: handle arrays as arguments to custom attributes.
14921
14922 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
14923
14924         * reflection.c: handle a string value in a custom attr
14925         ctor that takes an object.
14926
14927 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
14928
14929         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
14930         (fix bug #42063)
14931
14932 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
14933
14934         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
14935
14936 2003-04-27  Martin Baulig  <martin@ximian.com>
14937
14938         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
14939         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
14940         MONO_DEBUGGER_EVENT_BREAKPOINT.
14941         (mono_breakpoint_trampoline_code): Removed.
14942         (mono_debugger_event_handler): The last argument is now a
14943         `guint32'.
14944         (mono_debugger_insert_breakpoint_full): Removed the
14945         `use_trampoline' argument.
14946         (mono_debugger_method_has_breakpoint): Likewise.
14947         (mono_debugger_trampoline_breakpoint_callback): Renamed to
14948         mono_debugger_breakpoint_callback(); take the method and
14949         breakpoint number as arguments.
14950
14951 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
14952
14953         * metadata.c: fix off by one when loading parameters attributes.
14954
14955 2003-04-24  Martin Baulig  <martin@ximian.com>
14956
14957         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
14958
14959 2003-04-24  Martin Baulig  <martin@ximian.com>
14960
14961         * mono-debug-debugger.c: Moved all code which interacts with the
14962         Mono Debugger here.
14963
14964         * debug-mono-symfile.c: This code now just deals with the symbol
14965         file itself, the debugger code is now in mono-debug-debugger.c.
14966
14967 2003-04-23  Martin Baulig  <martin@ximian.com>
14968
14969         * mono-debug.c (mono_debug_source_location_from_il_offset):
14970         New method; like mono_debug_source_location_from_address(), but
14971         takes an IL offset instead of a machine address.
14972
14973 2003-04-23  Martin Baulig  <martin@ximian.com>
14974
14975         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
14976         `line' field; this is now computed by the debugger.
14977
14978 2003-04-23  Martin Baulig  <martin@ximian.com>
14979
14980         * mono-debug.[ch]: New files.  This is the new debugging interface.
14981
14982         * mono-debug-debugger.[ch]: New files.  Moved all code which
14983         interacts with the Mono Debugger here.
14984
14985 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
14986
14987         * domain.c (mono_init): initialize mono_defaults.monitor_class
14988
14989 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
14990
14991         * reflection.c (method_encode_code): Add a spicy exception to help
14992         future compiler authors.
14993
14994 2003-04-21  Martin Baulig  <martin@ximian.com>
14995
14996         * icall.c
14997         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
14998         Make this work with relative pathnames; g_filename_to_uri() needs
14999         an absolute filename.
15000
15001 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
15002
15003         * icall.c: Track name changes in Object and ValueType.
15004
15005 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
15006
15007         * metadata.c (mono_type_stack_size): size should be a multiple of
15008         sizeof (gpointer)
15009
15010 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15011
15012         * gc.c:
15013         (internal_domain_finalize): moved into mono_domain_finalize. No need
15014         to create another thread because the finalizers will be run in the
15015         finalizer thread.
15016         
15017         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
15018         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
15019         to be run (MS does this too).
15020
15021 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
15022
15023         * object.c (mono_class_compute_gc_descriptor): Update comment.
15024
15025         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
15026
15027         * image.h: Add synchronized wrapper cache.
15028
15029         * image.c (do_mono_image_open): Initialize cache.
15030
15031         * reflection.c (create_dynamic_mono_image): Initialize cache.
15032
15033 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15034
15035         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
15036         ves_icall_System_Buffer_ByteLengthInternal.
15037
15038 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15039
15040         * reflection.c: setup klass->nested_in earlier. Allow
15041         a dash in the assembly name.
15042
15043 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
15044
15045         * metadata.c (mono_type_to_unmanaged): dont access
15046         type->data.klass for MONO_TYPE_OBJECT
15047         (mono_type_to_unmanaged): consider System.Delegate class
15048
15049 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
15050
15051         * class.c: just setup supertypes in the proper place instead of
15052         initializing the full element class for arrays.
15053
15054 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
15055
15056         * class.c: ensure the element class of arrays is initialized.
15057         Setup the supertype info for array classes, too.
15058
15059 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
15060
15061         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
15062
15063 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15064
15065         * Makefile.am: re-added -m option when running cygpath. This way,
15066         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
15067         separator.
15068         * mono-config.c: same codepath for locating mono config file for WIN32
15069         and the rest.
15070         * assembly.c: if mono_assembly_setrootdir is called, don't override
15071         the value set.
15072
15073 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15074
15075         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
15076         MONO_ASSEMBLIES variable.
15077
15078 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
15079
15080         * icall.c: added Assembly::GetNamespaces() icall.
15081
15082 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15083
15084         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
15085
15086 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
15087
15088         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
15089         * object.c: fixed bug in the construction of vtable for proxies
15090
15091 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
15092
15093         * object.c (mono_array_new): Mark mono_array_new as an icall.
15094
15095 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15096
15097         * class.c: fixed test for public method when overriding interfaces.
15098         Closes bug #40970.
15099
15100 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
15101
15102         * appdomain.h, domain.c: added mono_domain_foreach() to
15103         be able to access the currently loaded appdomains.
15104         * object.c: make string interning work across sppdomains.
15105         Mark some functions for use as icalls.
15106
15107 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
15108
15109         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
15110
15111         * reflection.h reflection.c: Allocate long living data using 
15112         GC_MALLOC_ATOMIC so the collector does not need to scan it.
15113
15114         * reflection.c: Double the allocation size in streams instead of
15115         increasing it, to prevent unneccesary copying on large assemblies.
15116         
15117         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
15118         creation if the assembly does not have the Run flag set.
15119
15120 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
15121
15122         * class.h: avoid the C++ keywords in header files (Jerome Laban
15123         spotted and fixed this).
15124
15125 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15126
15127         * object.c:
15128         (mono_unhandled_exception): fill in the arguments for the
15129         UnhandledException event. Only trigger that event for the default
15130         domain (as MS does).
15131
15132 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
15133
15134         * object.c: Improve typed allocation stuff based on suggestions from
15135         Paolo. Also turn it on if the GC library supports it.
15136
15137 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
15138
15139         * object.c object.h class.h: Added experimental typed allocation
15140         facility using the interfaces in gc_gcj.h.
15141
15142         * os/gc_wrapper.h: Added new include files.
15143         
15144 2003-04-03  Martin Baulig  <martin@ximian.com>
15145
15146         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
15147         which is not yet enabled by default.
15148
15149         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
15150         functions.
15151         (mono_gc_lock, mono_gc_unlock): New static functions.
15152
15153         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
15154         functions; stop/start the world for the garbage collector.  This
15155         is using the windows API; we need to complete the SuspendThread()/
15156         ResumeThread() implementation in the io-layer to make this work on Unix.
15157         (mono_gc_push_all_stacks): New public function; tells the garbage
15158         collector about the stack pointers from all managed threads.
15159
15160 2003-04-03  Martin Baulig  <martin@ximian.com>
15161
15162         * object.h (MonoThread): Added `gpointer stack_ptr'.
15163
15164         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
15165
15166 2003-04-03  Martin Baulig  <martin@ximian.com>
15167
15168         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
15169
15170 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
15171
15172         * reflection.c (typebuilder_setup_fields): Initialize field.first and
15173         field.last.
15174
15175 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
15176
15177         * loader.c (mono_lookup_internal_call): Report the corlib that is
15178         out of sync.
15179
15180 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
15181
15182         * icall.c (ves_icall_type_GetTypeCode): fixed check for
15183         System.DBNull (it's class not valuetype).
15184
15185 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
15186
15187         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
15188         if the array method was already assigned a token (fixes bug#40646).
15189
15190 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
15191
15192         * reflection.c (mono_reflection_get_type): Attempt type resolve even
15193         if no assembly is given.
15194
15195 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
15196
15197         * metadata.h: Added the new tables.
15198
15199         * row-indexes.h: Added definitions for new tables.
15200
15201         * metadata.c: Add schemas for new tables, and add support for
15202         computing the sizes of them.
15203
15204         * class.c: Update for handling the new type cases.
15205
15206 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
15207
15208         * metadata.h (MONO_TYPE_IS_VOID): new macro
15209
15210 2003-03-31  Martin Baulig  <martin@ximian.com>
15211
15212         * threads.h (MonoThreadCallbacks): Added `thread_created'.
15213
15214         * threads.c (mono_thread_new_init): Call `thread_created' in the
15215         mono_thread_callbacks.
15216
15217 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
15218
15219         * loader.h: added marshalbyrefobject_class to mono_defaults
15220         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
15221         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
15222           generation of output parameters.
15223           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
15224         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
15225           contextbound and the target object belongs to the context of the caller.
15226         * object.h: added context and unwrapped_server variables in MonoRealProxy.
15227         * object.c: Implemented support for interfaces and abstract classes
15228           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
15229           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
15230
15231 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
15232
15233         * class.h class.c (mono_class_is_subclass_of): New function.
15234         
15235         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
15236         routines for most common case (calls from ArrayList::ToArray).
15237
15238         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
15239         routine so programs which call Environment::Exit() can be profiled.
15240
15241         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
15242         Added MONO_ARCH_SAVE_REGS.
15243
15244         * icall.c (ves_icall_type_is_subtype_of): Use new function.
15245
15246 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
15247
15248         * blob.h: Add a couple of new MonoType types definitions.
15249
15250         * tabledefs.h: Add a couple of new call convs.
15251
15252 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
15253
15254         * reflection.h (MonoReflectionDynamicAssembly): track changes in
15255         the layout of the class.
15256
15257         * reflection.c (alloc_table): double the size on overflow to avoid
15258         unnecessary copying.
15259
15260         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
15261         avoid filling out metadata tables and blobs. Also set mb->ilgen to
15262         null so it can be garbage collected.
15263         
15264 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
15265
15266         * reflection.c (mono_reflection_get_type): Return the resolved type
15267         only if it is in the assembly we searched.
15268
15269         * reflection.c (ensure_runtime_vtable): Initialize method slots.
15270
15271         * class.c (mono_class_setup_vtable): Set the slot of the overriding
15272         method.
15273
15274 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15275
15276         * appdomain.c:
15277         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
15278         the right one is 'file:///blah', but MS allows it.
15279         * assembly.c:
15280         (mono_assembly_open): allow 'file://blah'
15281
15282         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
15283
15284 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
15285
15286         * socket-io.c: fixes bug #40310.
15287
15288 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
15289
15290         * reflection.c (mono_reflection_parse_type): handle deeply nested
15291         types correctly.
15292
15293         * reflection.c (mono_image_create_token): Use unique token values
15294         since they will be put into a hash table.
15295
15296         * class.c (mono_class_setup_vtable): If a method occurs in more than
15297         one place in the vtable, and it gets overriden, then change the
15298         other occurances too.
15299
15300         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15301         object as return type.
15302
15303 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15304
15305         * icall.c: Deleted "ToString" implementation for double and float
15306         because they are full implemented in managed code.
15307
15308 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15309
15310         * reflection.c, reflection.h: implemented and exported functions
15311         to retrieve info about custom attributes.
15312
15313 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15314
15315         * appdomain.c: moved Uri handling to assembly.c
15316         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
15317         work when using a file Uri in *nix and windows.
15318
15319         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
15320         GetReferencedAssemblies.
15321
15322 2003-03-18  Dick Porter  <dick@ximian.com>
15323
15324         * icall.c: Rename a couple of internal calls
15325
15326         * threads.c: Set the thread state to Stopped when a thread exits.
15327         Fixes bug 39377.
15328
15329 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
15330
15331         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
15332         New icall.
15333
15334         * object.c (mono_class_vtable): fix warning.
15335
15336 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
15337
15338         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
15339
15340         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
15341         memory.
15342         (method_encode_clauses): Create exception info structures in the right
15343         order.
15344         (mono_reflection_setup_internal_class): Initialize supertypes field.
15345
15346         * class.c object.c: Handle interfaces which implement other interfaces 
15347         correctly.
15348
15349         * class.h class.c: Move the supertypes array initialization code into 
15350         a separate function so it can be used for dynamic types too. Also call
15351         it earlier, in mono_class_init(), since it can be used before the
15352         type is initialized.
15353
15354 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15355
15356         * Makefile.am:
15357         * assembly.c:
15358         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
15359
15360         * appdomain.c:
15361         * appdomain.h:
15362         * marshal.c:
15363         * object.c: remove warnings.
15364
15365 2003-03-13  Martin Baulig  <martin@ximian.com>
15366
15367         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
15368         (MonoDebugLexicalBlockEntry): New types.
15369
15370         * debug-mono-symfile.c
15371         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
15372
15373 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15374
15375         * process.c: ret can be any non-zero value accroding to MS doc.
15376
15377 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
15378
15379         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
15380         fixing a warning for a miss-used prototype, would have cause
15381         random memory corruption.
15382
15383 2003-03-07  Martin Baulig  <martin@ximian.com>
15384
15385         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
15386         getting really annoying ....
15387
15388 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
15389
15390         * reflection.c (fixup_method): added support for array methods.
15391
15392 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
15393
15394         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
15395         (pointed out by Michael Adams).
15396
15397 2003-03-04  Dick Porter  <dick@ximian.com>
15398
15399         * icall.c: Temporarily reverted the Double and Single ToString()
15400         change, because it broke nunit.
15401
15402 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
15403
15404         * object.h, threads.h: make include files compatible with C++
15405         (patch by Jerome Laban <jlaban@wanadoo.fr>).
15406
15407 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15408
15409         * icall.c: Erased ToString helper functions for Double and Single.
15410         Now, that implementations ar all in managed code (Double and Single
15411         Formatters).
15412
15413 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
15414
15415         * appdomain.c: Added method for initializing the default context of
15416         a domain. Added internal call for getting the default context.
15417         * appdomain.h: Added context variable in MonoDomain struct.
15418         * domain.c: mono_domain_set also sets the default context of the domain
15419         * icall.c: Mapped internal method InternalGetDefaultContext.
15420         * object.c: mono_object_get_virtual_method returns always a remoting
15421         wrapper if the object is a transparent proxy.
15422         mono_runtime_invoke_array: when creating an object by calling the
15423         constructor, if the created object is a proxy, then the constructor should
15424         be called using the a remoting wrapper.
15425
15426 2003-03-03  Dick Porter  <dick@ximian.com>
15427
15428         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
15429         variable so it compiles on solaris.  Problem spotted by
15430         Christopher Taylor <ct@cs.clemson.edu>
15431
15432 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15433
15434         * appdomain.c:
15435         (get_info_from_assembly_name): don't leak value.
15436
15437         * icall.c:
15438         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
15439         result.
15440
15441 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
15442
15443         * assembly.c: export mono_image_load_references ().
15444         * class.c: handle function pointers. mono_class_from_name() now
15445         supports nested type names directly.
15446
15447 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
15448
15449         * reflection.h reflection.c: Encode already created dynamic methods 
15450         and fields correctly as a DEF instead of a REF.
15451
15452         * reflection.c: Get rid of the force_ref argument to 
15453         mono_image_typedef_or_ref since it was wrong in the first place.
15454
15455         * string-icalls.c: add error checking to string constructors according
15456         to the MSDN docs.
15457
15458         * reflection.c: Emit types in the order their TypeBuilders were 
15459         created. Previously, a new table index was assigned to each type before
15460         the tables were emitted. This was wrong because the signature blob
15461         might already refer to a type by its original table index.
15462
15463 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
15464
15465         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
15466         change.
15467         
15468 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15469
15470         * Makefile.am: make assemblies dir have \ instead of / on windows.
15471
15472 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
15473
15474         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
15475         iterate over the NESTEDCLASS table using a linear search since the
15476         table is not guaranteed to be sorted by the secondary key.
15477
15478         * class.c (mono_class_create_from_typedef): fixed up call to
15479         mono_metadata_nesting_typedef.
15480         
15481 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
15482
15483         * marshal.c (mono_string_to_byvalstr): clear the memory as
15484         suggested by Jerome Laban <jlaban@wanadoo.fr>
15485
15486 2003-02-26  Dick Porter  <dick@ximian.com>
15487
15488         * process.c: Cope with padding in .rsrc blocks
15489
15490 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
15491
15492         * metadata.h: reverted the filter_len change, it breaks reflection
15493         
15494 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
15495
15496         * metadata.h: added a new field to store the filter_len
15497         
15498
15499 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
15500
15501         * reflection.c: handle custom attributes for types and members
15502         created with Reflection.Emit (bug#38422).
15503
15504 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
15505
15506         * reflection.c: define RTSpecialName automatically for constructors for
15507         compatibility with MS.NET.
15508
15509         * reflection.c (mono_reflection_create_runtime_class): initialize
15510         nested_in field of dynamically created classes.
15511
15512 2003-02-22  Martin Baulig  <martin@ximian.com>
15513
15514         * debug-mono-symfile.h: Incremented version number.
15515
15516 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
15517
15518         * object.h icall.c process.c: fix warnings.
15519
15520 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
15521
15522         * appdomain.h appdomain.c:
15523         (mono_domain_try_type_resolve): split the 
15524         name_or_tb argument into a name and a tb argument.
15525         (mono_domain_has_type_resolve): new function to check whenever the
15526         application has registered a TypeResolve event handler.
15527         
15528         * icall.c reflection.h reflection.c: move the type resolve logic into
15529         mono_reflection_get_type () so it will be invoked when 
15530         Assembly::GetType () is called.
15531
15532         * reflection.c:
15533         (mono_reflection_get_type): renamed to get_type_internal.
15534         (mono_reflection_get_type): fixed type name generation so it works 
15535         for nested types too.
15536         (mono_reflection_get_type): call has_type_resolve () to avoid the 
15537         costly type name generation if there is no resolve event handler.
15538
15539 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15540
15541         * class.c, image.c: load exported types from file references.
15542
15543 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
15544
15545         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
15546           used to cache the managed methods used to create proxies and make 
15547           remote invocation of methods.
15548         * class.h: Added in MonoVTable a flag to indicate that a class needs 
15549           to be remotely created.
15550         * object.c: Modified the method mono_class_vtable(). It now initializes 
15551           the remote flag of the vtable. Modified mono_object_new_specific(), 
15552           so now it checks the remote flag.
15553         * icall.c: Added a couple of internal methods, one for enabling instance 
15554           creation interception for a type, and one for creating objects bypassing
15555           the remote check.
15556
15557 2003-02-18  Martin Baulig  <martin@ximian.com>
15558
15559         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
15560         New interncall to get a method's metadata token.
15561
15562         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
15563         New interncall for the debugger.
15564
15565 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
15566
15567         * class.c (mono_class_setup_vtable): allocate supertype array
15568
15569 2003-02-18  Martin Baulig  <martin@ximian.com>
15570
15571         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
15572
15573 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15574
15575         * reflection.c:
15576         (assembly_name_to_aname): jump over unknown properties (i've found
15577         something like: 'type, assembly, version=xxx, custom=null, public...',
15578         so now will ignore custom=null and still get the rest of the values).
15579
15580 2003-02-17  Dick Porter  <dick@ximian.com>
15581
15582         * threads.c: Have Thread.Start() wait for a semaphore to signal
15583         that the thread has set up all its local data.  This fixes bug
15584         34323, where Abort() raced the new thread's TLS data.
15585
15586         Also removes the handle_store() call from start_wrapper, because
15587         threads are now always created suspended and there is no longer a
15588         race between the parent and child threads to store the info.
15589
15590 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
15591
15592         * image.c: explain the #- heap issue in a message, hopefully
15593         avoiding FAQs on mono-list.
15594
15595 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15596
15597         * icall.c:
15598         (GetEntryAssembly): if the domain has not invoked
15599         AppDomain.ExecuteAssembly yet, return the assembly of the default
15600         AppDomain.
15601
15602 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
15603
15604         * class.c (mono_ldtoken): make it work in dynamic assemblies.
15605
15606 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
15607
15608         * metadata.c, reflection.c: simple speedup to type hash
15609         and equals code.
15610
15611 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
15612
15613         * image.c, image.h, class.c, assembly.c: move module loading
15614         to MonoImage. When loading metadata, consider alignemnet from
15615         the start of metadata, not from the metadata address in memory.
15616
15617 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
15618
15619         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
15620         AssemblyBuilder objects. Factored out custom attribute creation into
15621         a separate function.
15622         (create_custom_attr): new function to create custom attributes.
15623
15624 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
15625
15626         * Makefile.am: Got tired of typing the full pathname to pedump.
15627         Until there is another option, am installing this.
15628
15629 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
15630
15631         * class.c (class_compute_field_layout): always set field->parent 
15632         (mono_ldtoken): use mono_defaults.fieldhandle_class;
15633
15634 2003-02-11  Dick Porter  <dick@ximian.com>
15635
15636         * threads-types.h:
15637         * monitor.c: Rewrote Monitor, making lock much faster and
15638         Pulse/Wait work as specified.  Also uses much fewer handles, and only
15639         creates them as needed.
15640
15641         * exception.c: Added SynchronizationLockException
15642
15643         * threads.c: Deleted old Monitor implementation.  The new one is
15644         in a new file.
15645
15646 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
15647
15648         * class.c: handled TypedReference type code. Set the correct size for
15649         class data. Setup interface_offsets for interface classes, too.
15650
15651 2003-02-09  Martin Baulig  <martin@ximian.com>
15652
15653         * debug-mono-symfile.h: Reflect latest symbol writer changes.
15654
15655 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
15656
15657         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
15658         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
15659         * object.c: fixed mono_object_get_virtual_method () for interfaces.
15660         * verify.c: check for code that runs after the end of the method.
15661
15662 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15663
15664         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
15665         "System.Math::Round2".
15666         * sysmath.h: Added Floor, Round and Round2 definitions.
15667         * sysmath.c: Modified certain functions that were not 100% compliant
15668         with MS.NET (math precision) and added the implementation of Floor,
15669         Round and Round2.
15670
15671 2003-02-07  Martin Baulig  <martin@ximian.com>
15672
15673         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
15674
15675 2003-02-07  Martin Baulig  <martin@ximian.com>
15676
15677         * debug-mono-symfile.c: Reflected latest symwriter changes.
15678         (mono_debug_create_mono_symbol_file): Removed.
15679         (mono_debug_open_mono_symbol_file): Take an argument which
15680         specifies whether to create a dynamic symbol file.
15681
15682 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
15683
15684         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
15685
15686 2003-02-05  Martin Baulig  <martin@ximian.com>
15687
15688         * reflection.c (mono_image_build_metadata): Make this public,
15689         protect it against being called multiple times, don't create
15690         resources and don't build the compressed metadata here.
15691         (mono_image_create_pefile): Do this here.
15692
15693         * icall.c
15694         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
15695
15696 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15697
15698         * socket-io.c: fixed bug #36322.
15699
15700 2003-02-06  Piers Haken <piersh@friskit.com>
15701
15702         * appdomain.[ch]:
15703         * class.h:
15704         * debug-mono-symfile.c:
15705         * icall.c:
15706         * loader.c:
15707         * mono-config.c:
15708         * monosn.c:
15709         * reflection.c:
15710         * socket-io.c: warning cleanups
15711
15712 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
15713
15714         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
15715         function. works like remoting invoke, but does a check for the Proxy first.
15716
15717 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
15718
15719         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
15720
15721 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
15722
15723         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
15724         array of pointers.
15725         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
15726         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
15727
15728         * object.c (mono_store_remote_field_new): used by the new jit
15729         instead of mono_store_remote_field
15730         (mono_load_remote_field_new): used by the new jit
15731         instead of mono_load_remote_field
15732
15733 2003-02-05  Patrik Torstensson
15734
15735         * appdomain.c: changed unload to take the domain id instead
15736         of domain
15737         
15738         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
15739
15740
15741 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15742
15743         * appdomain.c: don't look for assemblies in ApplicationBase if
15744         PrivateBinPathProbe is set.
15745
15746 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15747
15748         * object.c: make the first argument in main_args contain the absolute
15749         path to the assembly. Fixes bug #37511.
15750
15751 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15752
15753         * icall.c: get correct UTC offset for countries not using daylight
15754         time saving. Fixes bug #30030.
15755
15756 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15757
15758         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
15759         and 1 are the family).
15760
15761 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
15762
15763         * icall.c (ves_icall_InternalExecute): removed wrong assertion
15764
15765         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
15766
15767 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
15768
15769         * reflection.c: added support for SignatureHelper tokens, which is
15770         needed by the Calli opcode.
15771
15772         * reflection.h: track changes to SignatureHelper class.
15773
15774         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
15775
15776 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15777
15778         * appdomain.c: fixed loading assemblies from PrivateBinPath.
15779
15780 2003-02-03  Patrik Torstensson
15781         * appdomain.[c|h], domain.c : 
15782          - Added support for getting a domain via domain id
15783          - Support for setting and getting domain from System.AppDomain 
15784            (used in cross appdomain channel)
15785          - Added support for get/set for a MonoAppContext on a thread 
15786            (Context class in System.Runtime.Remoting.Contexts),
15787          - Removed hack in Get/SetData and ExecuteAssembly.
15788         
15789         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
15790         the managed world to get control when a proxy is created.
15791
15792         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
15793         
15794 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
15795
15796         * icall.c
15797         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15798         Populate the codebase field as well.
15799
15800 2003-02-02  Martin Baulig  <martin@ximian.com>
15801
15802         * debug-mono-symfile.c
15803         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
15804         (mono_debug_symfile_add_method): Allow interncalls.
15805
15806 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15807
15808         * icall.c: throw parse exception if strtod fails or the string is empty.
15809
15810 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
15811
15812         * marshal.c: handle object type separately from defined
15813         class types.
15814
15815 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
15816
15817         * marshal.c: handle NATIVE_LPSTR for strings when it's
15818         explicitly specified.
15819
15820 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
15821
15822         * reflection.c, reflection.h, icall.c: setup the reflection
15823         handle cache for ModuleBuilders and AssemblyBuilders.
15824
15825 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
15826
15827         * reflection.c (reflection_methodbuilder_to_mono_method): set
15828         pinvoke flag
15829
15830 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15831
15832         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
15833
15834 2003-01-29  Dick Porter  <dick@ximian.com>
15835
15836         * threads.c: No need for the fake_thread kludge now that Thread
15837         doesn't run a class constructor
15838         
15839 2003-01-29  Dick Porter  <dick@ximian.com>
15840
15841         * threads.c: Use g_direct_hash instead of the rather bogus
15842         g_int_hash
15843
15844 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
15845
15846         * marshal.c (mono_marshal_get_native_wrapper): add check for null
15847         (fix pinvoke12.exe)
15848         (mono_marshal_get_struct_to_ptr): generate valid IL code
15849         (mono_marshal_get_ptr_to_struct): generate valid IL code
15850         (*): correctly set sig->pinvoke, we need to memdup the signature
15851         to do that
15852
15853 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15854
15855         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
15856         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
15857
15858 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
15859
15860         * profiler.c: provide more callers information.
15861
15862 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
15863
15864         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
15865
15866         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
15867
15868         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
15869
15870 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
15871
15872         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
15873         exception instead of going into an infinite loop on dates which it 
15874         can't yet handle.
15875
15876         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
15877         out-of-range exception if needed.
15878
15879         * class.c (mono_class_setup_vtable): allow a virtual method to provide
15880         an implementation for an interface method and to override an inherited
15881         method at the same time. 
15882         Imagine a scenario when a virtual method is used to override a
15883         virtual abstract method in a parent class, and this same method 
15884         provides an implementation for an method inherited from an interface. 
15885         In this case, the interface resolution code will set im->slot, which 
15886         means that the virtual method override pass will skip this method 
15887         which means a pointer to the abstract method inherited from the parent
15888         will remain in the vtable of this non-abstract class.
15889
15890         * class.c: (mono_class_setup_vtable): continue search for a real 
15891         method if only an abstract method is found.     
15892
15893 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
15894
15895         * reflection.c: add size to encoding for ByValStr and ByValArray
15896         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
15897
15898 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
15899
15900         * class.c (mono_class_setup_vtable): pass the override info as an
15901         argument.
15902
15903         * class.c (mono_class_setup_vtable): set the slot of overriding methods
15904         correctly.
15905         
15906         * reflection.c (ensure_runtime_vtable); add support for method 
15907         overrides.
15908         
15909 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
15910
15911         * reflection.c (resolution_scope_from_image): Hack to work to work with
15912         dynamic assemblies.
15913
15914         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
15915         added a 'force_ref' argument to force this function to allways return 
15916         a TypeRef. This is needed by mono_image_get_memberref_token ().
15917         
15918 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
15919
15920         * reflection.c (mono_image_get_type_info): interfaces really don't have
15921         a parent.
15922
15923         * reflection.c (mono_image_basic_init): fill out missing fields of
15924         image structure.
15925
15926         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
15927         dynamic assemblies. This is required so dynamic assemblies show up in
15928         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
15929         Type::GetType() etc. This is consistent with MS behaviour.
15930
15931         * image.c image.h reflection.c: add newly created classes to the name 
15932         cache so mono_class_get () will find them.      
15933
15934 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
15935
15936         First part of changes to get IKVM.NET running under mono.
15937         
15938         * appdomain.h, appdomain.c: added new function 
15939         mono_domain_try_type_resolve() which will emit TypeResolve events. 
15940         This function will call AppDomain::DoTypeResolve to do the actual work.
15941
15942         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
15943         moved existing code dealing with dynamic tokens to a new function 
15944         called mono_reflection_lookup_dynamic_token (). This function will 
15945         raise TypeResolve events when appropriate. Since reflection.c is not 
15946         part of libmetadata, a new hook function called 
15947         mono_lookup_dynamic_token() is added to class.c which will call this.
15948
15949         * assembly.h assembly.c: make the invoke_load_hook function public,
15950         so it can be called for dynamic assemblies.
15951
15952         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
15953
15954         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
15955         type isn't found.
15956
15957         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
15958         MonoGHashTable, since it contains pointers to objects which the GC 
15959         needs to track.
15960
15961         * assembly.c (search_loaded): remove unused variable.
15962         
15963 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
15964
15965         * object.c: fixed issue exposed by gcc-generated IL programs
15966         that use RVA data for pointers.
15967
15968 2003-01-25  Martin Baulig  <martin@ximian.com>
15969
15970         * threads.c (start_wrapper): Moved the initialization of
15971         `start_func' above the mono_new_thread_init() call to which we
15972         pass it as argument.
15973
15974 2003-01-24  Martin Baulig  <martin@ximian.com>
15975
15976         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
15977         the MonoThread pointer.
15978
15979 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
15980
15981         * icall.c: Rename `PowImpl' to Pow.
15982
15983 2003-01-23  Dick Porter  <dick@ximian.com>
15984
15985         * threads.c (start_wrapper): Create a Thread object if needed, so
15986         the Main() thread can do the class initialisation in a subthread
15987         that has been set up to allow managed code execution.
15988
15989         Pass the thread ID instead of the MonoThread pointer to the thread
15990         start and attach callbacks.  This change is required, because the
15991         jit thread start callback must be called _before_ the Thread
15992         object can be created.
15993         
15994         (mono_thread_init): Removed much object creation code that is no
15995         longer needed.  No managed code is called from here now.
15996
15997         * object.c (mono_runtime_exec_managed_code): Create a subthread
15998         for Main, and call back to the runtime to use it.
15999         Set the exit code when Main exits.
16000
16001         * gc.c: Make sure domain finalisation happens in a subthread.
16002         Re-enable threaded GC, fixing bug 31333 (again).
16003
16004         * environment.c: System.Environment internall calls (so far just
16005         ExitCode is here, the others are still in icall.c)
16006
16007         * appdomain.c (mono_runtime_cleanup): All threads running managed
16008         code should have finished before mono_runtime_cleanup() is
16009         reached, so no need to clean up threads.
16010
16011 2003-01-22  Martin Baulig  <martin@ximian.com>
16012
16013         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
16014         `gpointer func' arguments.      
16015         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
16016         but added `MonoThread *thread' argument.
16017         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
16018
16019         * threads.c (mono_new_thread_init): Added `gpointer func' argument
16020         and pass it to the mono_thread_start_cb callback.
16021         (mono_install_thread_callbacks): New public function to install a
16022         set of callbacks which are set by the debugger.
16023         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
16024
16025 2003-01-22  Martin Baulig  <martin@ximian.com>
16026
16027         * Makefile.am: Install debug-mono-symfile.h.
16028
16029 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
16030
16031         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
16032
16033 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
16034
16035         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
16036         * class.c (mono_ptr_class_get): correctly set access levels of pointers
16037         (mono_array_class_get): correctly set access levels of arrays
16038
16039 2003-01-20      Patrik Torstensson
16040         * image.h (MonoAssemblyName): changed major, minor, build, revision
16041         from signed to unsigned.
16042
16043 2003-01-20  sean kasun <skasun@azstarnet.com>
16044
16045         * reflection.c (load_cattr_value): Now this handles
16046         MONO_TYPE_SZARRAY.  Fixes bug #35629
16047
16048 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
16049
16050         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
16051         integer value
16052
16053 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16054
16055         * decimal.c: fixed bug #26056.
16056
16057 2003-01-17  Martin Baulig  <martin@ximian.com>
16058
16059         * gc.c: Raise an ExecutionEngineException instead of using g_error().
16060
16061 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16062
16063         * exception.[ch]:
16064         (mono_get_exception_type_initialization): new function.
16065
16066         * object.c: throw a TypeInitializationException when an exception is
16067         thrown invoking the class constructor.
16068
16069 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16070
16071         * reflection.c: fixed attribute reading.
16072
16073 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16074
16075         * icall.c:
16076         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
16077         provided, look for the type in the calling assembly and then in
16078         mscorlib; if the assembly name is provided, only try that one.
16079
16080 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
16081
16082         * object.c: register the vtable before there is a chance it's
16083         queried again recursively.
16084
16085 2003-01-13  Duncan Mak  <duncan@ximian.com>
16086
16087         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
16088         gc-internal.h. 
16089         
16090 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
16091
16092         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
16093
16094 2003-01-11  Martin Baulig  <martin@ximian.com>
16095
16096         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
16097         this to 20 for the release.
16098
16099 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
16100
16101         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
16102
16103         * loader.c (mono_method_get_marshal_info): bug fix
16104
16105         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
16106         structures with explicit layout
16107
16108 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
16109
16110         * profiler.c: made the output more readable (and sorted). 
16111         Added caller information for the allocation profiler.
16112
16113 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
16114
16115         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
16116
16117 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16118
16119         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
16120         to get value types.
16121         
16122 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
16123
16124         * object.c, profiler.h, profiler.c, profiler-private.h:
16125         Added object allocation profiler.
16126
16127 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
16128
16129         * reflection.h, reflection.c: handle global methods.
16130         Compress blob entries.
16131
16132 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
16133
16134         * marshal.c: fix compilation.
16135
16136 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
16137
16138         * loader.c (mono_method_get_marshal_info): impl.
16139
16140         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
16141
16142 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16143
16144         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
16145         for reference types.
16146
16147 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
16148
16149         * loader.c: fixed off by one error in loaded parameter names.
16150
16151 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
16152
16153         * marshal.c (mono_marshal_get_icall_wrapper): like
16154         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
16155         instead of a MonoMethod.
16156
16157 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16158
16159         * decimal.c: fixed bug #36537.
16160
16161 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
16162
16163         * marshal.c: throw a missing method exception if a
16164         P/Invoke method is not found.
16165
16166 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
16167
16168         * icall.c: allow a null this for constructors.
16169
16170 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
16171
16172         * icall.c: raise the proper exceptions if the arguments to the
16173         internal Invoke are incorrect.
16174
16175 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
16176
16177         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
16178
16179 2003-01-03  Martin Baulig  <martin@ximian.com>
16180
16181         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
16182
16183 2002-12-31  Martin Baulig  <martin@ximian.com>
16184
16185         * debug-mono-symfile.c: Completely rewrote the type section.
16186         Instead of using individual malloc()ed fields, we use one big
16187         continuous memory area and offsets into this area.
16188         See the comments in the source code for details.
16189
16190 2002-12-30  Martin Baulig  <martin@ximian.com>
16191
16192         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
16193
16194 2002-12-30  Martin Baulig  <martin@ximian.com>
16195
16196         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
16197         line number table in this data blob instead of using an external
16198         pointer.
16199
16200 2002-12-28  Martin Baulig  <martin@ximian.com>
16201
16202         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
16203
16204 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
16205
16206         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
16207         as a boxed return type.
16208
16209 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
16210
16211         * appdomain.c
16212         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
16213         g_build_filename to properly get separators on the filename created.
16214
16215         * object.h: Small change, introduce MonoMarshalByRefObject to
16216         track the layout of that structure in the C# universe as we make
16217         changes there.
16218
16219 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
16220
16221         * object.c: removed assert to allow static fields on interfaces.
16222         * loader.c: a TypeSpec may be used for any type, not just arrays.
16223
16224 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
16225
16226         * class.c, class.h: added mono_class_array_element_size ().
16227         Ignore static methods in interfaces.
16228
16229 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16230
16231         * threads.c: fixed the build under cygwin.
16232
16233 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
16234
16235         * reflection.c: handle nullref constants. Allocate keys for
16236         reflection handles with the GC.
16237
16238 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
16239
16240         * threads.c, threads.h: added mono_thread_get_abort_signal()
16241         to get a suitable signal for thread abort.
16242
16243 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
16244
16245         * metadata.c: fix handling of ExportedType table.
16246
16247 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16248
16249         * icall.c: added WriteWindowsDebugString internal call.
16250
16251 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16252
16253         * reflection.h: added fields to match C# implementation.
16254
16255 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16256
16257         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
16258
16259 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
16260
16261         * gc.h, gc-internal.h: Rename header for GC internal calls to
16262         gc-internal.h from gc.h as to not clash with Boehm GC having its
16263         header installed as <gc.h> in outside include paths.
16264         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
16265         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
16266
16267 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16268
16269         * icall.c: assign minor, build and revision in FillName.
16270
16271 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
16272
16273         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
16274         Added support for running code generated by Reflection.Emit.
16275
16276 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16277
16278         * appdomain.c: check for NULL argument in LoadFrom.
16279
16280 2002-12-10  Dick Porter  <dick@ximian.com>
16281
16282         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
16283
16284 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16285
16286         * appdomain.c: fix buglet when building exe file name.  Handle full
16287         assembly name (needed after latest changes to AssemblyName).
16288         * image.c:
16289         (mono_image_close): free some hashtables.
16290
16291 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
16292
16293         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
16294         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
16295         on some systems (redhat 7.3) 
16296
16297 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
16298
16299         * threads.c: delete the critical section of a sync block,
16300         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
16301
16302 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
16303
16304         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
16305
16306 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16307
16308         * appdomain.[ch]: handle the assembly preload event to try loading the
16309         assemblies using the paths we have in the current domain.
16310
16311         * assembly.[ch]: created an assembly preload hook that is called to try
16312         loading the assembly by other means that the ones provided here.
16313
16314         * domain.c: initialize the domain search path.
16315
16316         From now on, assemblies (TODO: except corlib and System) are loaded
16317         according to these rules when using mono_assembly_load ():
16318
16319                 1. It tries to load the assembly from the ApplicationBase
16320                 of the current domain appending .dll and .exe (TODO: have to
16321                 try loading from name/name.dll and name/name.exe).
16322
16323                 2. It tries the search path specified in PrivateBinPath for the
16324                 current domain (if any).
16325
16326                 3. Previous behavior.
16327
16328 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
16329
16330         * icall.c: implemented GetInterfaceMap() related icall.
16331         * domain.c, loader.h: load MethodInfo in mono_defaults.
16332
16333 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
16334
16335         * gc.c: disable the finalizer thread for now, untill all the issues
16336         with it are resolved.
16337
16338 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
16339
16340         * string-icalls.c: handle embedded nulls in string ctor when the
16341         length is specified.
16342
16343 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
16344
16345         * class.c: look for explicit interface implementation in parent
16346         classes, too.
16347
16348 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
16349
16350         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
16351
16352 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
16353
16354         * gc.c: protect handles with a critical section.
16355
16356 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16357
16358         * icall.c:
16359         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
16360         parameters. If no assembly specified, try getting the type from all
16361         the assemblies in the current domain, else, load the assembly and get
16362         the type from it.
16363
16364 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16365
16366         * marshal.c: applied patch from Aleksey Demakov that fixes
16367         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
16368
16369 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16370
16371         * icall.c: fixed get_location.
16372
16373 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
16374
16375         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
16376         declarations to make it work with older gcc. 
16377
16378         * loader.c (mono_get_method): set signature->pinvoke for native calls
16379
16380 2002-11-20  Dick Porter  <dick@ximian.com>
16381
16382         * threads.c (mono_thread_init): Set the main thread's handle
16383
16384 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
16385
16386         * gc.c: allow compilation without GC support. Changed to match the
16387         mono coding style.
16388
16389 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
16390
16391         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
16392
16393 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
16394
16395         * reflection.c: set a public key token on the core assemblies.
16396
16397 2002-11-18  Dick Porter  <dick@ximian.com>
16398
16399         * threads.c: Split out some thread initialisation so that other
16400         files can set the start callback function.
16401
16402         * gc.c: Run finalisers in a separate thread, to avoid stack
16403         overflow.  Fixes bug 31333.
16404
16405         * appdomain.c: Set up GC finalisation thread.
16406
16407         * reflection.c: 
16408         * object.c: 
16409         * domain.c: Use gc.h macros for GC_malloc
16410         
16411 2002-11-15  Dick Porter  <dick@ximian.com>
16412
16413         * threadpool.c: 
16414         * threads.c:
16415         * appdomain.c: Removed mono_runtime_init_with_attach(),
16416         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
16417         merging the extra parameter with the existing function.  Removed
16418         unneeded code in mono_thread_attach().
16419
16420 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
16421
16422         * image.c (mono_image_loaded_by_guid): a method to get loaded
16423         images by guid. 
16424         (load_metadata_ptrs): we store the guid as string.
16425
16426 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
16427
16428         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
16429
16430         * metadata.c (mono_guid_to_string): imported method form Zoltan
16431         Varga (slightly modified)
16432
16433         * assembly.c (mono_assembly_open): load precompiled code
16434
16435         * loader.h (MonoMethod): we store the method token for use in the
16436         aot compiler. 
16437
16438 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16439
16440         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
16441         the hook function called when an assembly is loaded.
16442         
16443         * domain.c: Modified file.
16444         (mono_domain_assembly_load): removed hash table insertion of assemblies.
16445
16446         Fixes bug #33196.
16447
16448 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
16449
16450         * reflection.c: Map PEFileKind to the value expected by the WinNT
16451         image loader. 
16452
16453 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16454
16455         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
16456         Read until the buffer is filled completely.
16457
16458 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16459
16460         * icall.c: implemented MonoType.InternalGetEvent ().
16461
16462 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16463
16464         * appdomain.c: implemented InitAppDomainSetup. Delayed
16465         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
16466         the entry_assembly.
16467
16468         * assembly.c: base_dir is now an absolute path ending with
16469         G_DIR_SEPARATOR.
16470
16471         * icall.c: modified get_location according to the above changes.
16472
16473         * object.c: init AppDomain.SetupInformation for the default domain after
16474         we have the entry assembly.
16475
16476         * domain.c: when unloading a domain, setup = NULL.
16477
16478 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
16479
16480         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
16481
16482 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
16483
16484         * object.h, object.c: introduced mono_object_get_virtual_method ()
16485         to lookup the method invoked on an object when a callvirt is done on
16486         a method.
16487         * icall.c: make MethodInfo::Invoke() always do a virtual call.
16488
16489 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16490
16491         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
16492         current domain when loaded an assembly and failed to load it.
16493
16494         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
16495
16496 2002-10-31  Dick Porter  <dick@ximian.com>
16497
16498         * icall.c: 
16499         * file-io.h: 
16500         * file-io.c: Return the error status in a parameter, as the
16501         GetLastError() value has long since been blown away if we try and
16502         look it up in a subsequent internal call invocation.  Delete the
16503         GetLastError() internal call, because it's useless.
16504
16505 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
16506
16507         * class.[ch]: added cast_class to fix bug 29517
16508
16509 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
16510
16511         * marshal.c: create valid IL code in the filter clause:
16512         the new JIT is less forgiving:-)
16513
16514 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16515
16516         * icall.c: removed get_property internal call.
16517
16518 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
16519
16520         * appdomain.h domain.c: Added an ID to appdomains.
16521         
16522         * threads.c threads.h icall.c: Implement icall
16523         Thread:GetDomainID(), and remove unused icall 
16524         CurrentThreadDomain_internal.
16525
16526 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16527
16528         * icall.c: Don't recurse through the base types in GetConstructor.
16529         Fixes bug #32063. 
16530
16531 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
16532
16533         * mempool.h, mempool.c: added mono_mempool_empty() and
16534         mono_mempool_stats().
16535
16536 2002-10-23  Dick Porter  <dick@ximian.com>
16537
16538         * file-io.c: 
16539         * file-io.h: 
16540         * icall.c: Added MonoIO.GetFileType internal call
16541
16542 2002-10-17  Dick Porter  <dick@ximian.com>
16543
16544         * appdomain.c (mono_runtime_cleanup): Don't signal the async
16545         delegate semaphore before waiting for all threads to finish,
16546         because new threads can also call async delegates.  Fixes bug
16547         32004.
16548
16549         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
16550         of 3 seconds, in case another async job is queued.  (This part is
16551         needed because the bug fix reintroduced the 3s exit lag.)  This
16552         makes the mono_runtime_shutdown flag superfluous.
16553
16554 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
16555
16556         * reflection.c: include ehader size in method section headers.
16557         Really check for suplicated modules entries.
16558
16559 2002-10-17  Martin Baulig  <martin@gnome.org>
16560
16561         * debug-mono-symfile.c: Added back support for locals.
16562
16563 2002-10-14  Martin Baulig  <martin@gnome.org>
16564
16565         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
16566         MONO_TYPE_VOID.
16567
16568 2002-10-14  Martin Baulig  <martin@gnome.org>
16569
16570         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
16571         mono_class_get() instead of looking in the class cache. 
16572
16573 2002-10-13  Martin Baulig  <martin@gnome.org>
16574
16575         * debug-mono-symfile.c: Set version number to 28, include the
16576         signature in method names.
16577
16578 2002-10-13  Martin Baulig  <martin@gnome.org>
16579
16580         * debug-mono-symfile.h: Set version number to 27.
16581
16582 2002-10-11  Martin Baulig  <martin@gnome.org>
16583
16584         * gc.c: Don't register/unregister NULL pointers as disappearing links.
16585
16586 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
16587
16588         * metadata.c, metadata.h: added helper function to allocate signatures.
16589
16590 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16591
16592         * icall.c: added internal call to get the location of machine.config.
16593
16594 2002-10-08  Martin Baulig  <martin@gnome.org>
16595
16596         * debug-mono-symfile.c: Ignore classes with a pending init for the
16597         moment.
16598
16599 2002-10-03  Dick Porter  <dick@ximian.com>
16600
16601         * threads.c: Freebsd pthread_t is a pointer
16602
16603 2002-10-03  Dick Porter  <dick@ximian.com>
16604
16605         * socket-io.c: Implemented GetHostName_internal
16606
16607 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16608
16609         * mono-config.c:
16610         (mono_config_parse_file): don't leak the text.
16611
16612 2002-10-02  Martin Baulig  <martin@gnome.org>
16613
16614         * debug-mono-symfile.c: Added support for methods.
16615
16616 2002-10-01  Martin Baulig  <martin@gnome.org>
16617
16618         * debug-mono-symfile.c: Don't emit methods and line numbers for
16619         the dynamic symbol file, just write the type table.  We can easily
16620         have an external helper program which creates a symbol file for an
16621         IL file.        
16622
16623 2002-10-01  Dick Porter  <dick@ximian.com>
16624
16625         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
16626         Only add the handle to the cleanup array when we're about to
16627         launch the thread.  Bug 31425 deadlocked when the test was run on
16628         mono under w32.
16629
16630 2002-10-01  Martin Baulig  <martin@gnome.org>
16631
16632         * debug-mono-symfile.c: Added support for properties.
16633
16634 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
16635
16636         * reflection.c: unaligned store fix from Mark Crichton
16637         <crichton@gimp.org>.
16638
16639 2002-09-27  Martin Baulig  <martin@gnome.org>
16640
16641         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
16642         New interncall.
16643
16644 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
16645
16646         * assembly.h, assembly.c: use a sane API to hook into the assembly
16647         loading process instead of a useless special-purpouse hack
16648         (ngen needs a hook, too, for example).
16649
16650 2002-09-27  Dick Porter  <dick@ximian.com>
16651
16652         * threads.c (mono_thread_init): Call GetCurrentProcess() so
16653         io-layer can set up some process handle info.  Not needed on w32,
16654         but doesn't hurt either.
16655
16656         * process.c: Pass the program name in the second parameter to
16657         CreateProcess, so the path is searched.  Include the working
16658         directory. Implemented process name, process enumeration, and some
16659         process detail internal calls.
16660         
16661         * icall.c: Added internal calls for process lookup, and some
16662         process details
16663
16664 2002-09-26  Martin Baulig  <martin@gnome.org>
16665
16666         * assembly.c (mono_install_open_assembly_hook): New global
16667         function to install a function to be invoked each time a new
16668         assembly is loaded.
16669         (mono_assembly_open): Run this callback function if set.
16670
16671         * debug-mono-symfile.c: Put back line numbers for the dynamic
16672         symbol file and also record the .il file as source file.  This
16673         allows us to install the temporary symbol file as `file.dbg' just
16674         like a compiler-generated one.
16675
16676 2002-09-26  Nick Zigarovich <nick@chemlab.org>
16677
16678         * Corrected typo in gc.c (BOHEM vs BOEHM).
16679
16680 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16681
16682         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
16683         GetProperties. Also avoid calling g_slist_length in GetProperties and
16684         GetMethods.
16685
16686 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
16687
16688         * reflection.c: avoid unaligned stores (bug spotted by
16689         Mark Crichton  <crichton@gimp.org>).
16690
16691 2002-09-25  Martin Baulig  <martin@gnome.org>
16692
16693         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
16694         instead of guint64 for addresses and added prologue/epilogue info.
16695
16696 2002-09-25  Martin Baulig  <martin@gnome.org>
16697
16698         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
16699         store line number info.  For the dynamic symbol file, we only need
16700         to provide the JIT generated dynamic line number info for the dynamic
16701         symbol file.
16702
16703 2002-09-25  Martin Baulig  <martin@gnome.org>
16704
16705         * debug-mono-symfile.h: Incremented version number.
16706
16707 2002-09-24  Martin Baulig  <martin@gnome.org>
16708
16709         * class.c (mono_debugger_class_init_func): New global function
16710         pointer variable.
16711         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
16712         call it.
16713
16714         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
16715         function.  This is called via the mono_debugger_class_init_func
16716         hook to add all types to the dynamic type table.
16717         (ves_icall_MonoDebugger_GetType): New interncall to get a class
16718         from its metadata token.
16719
16720         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
16721         New interncall for the debugger.
16722
16723 2002-09-24  Nick Drochak <ndrochak@gol.com>
16724
16725         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
16726         before using it in case it is null.
16727         
16728 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16729
16730         * metadata.c: allow custom modifiers in local var signatures
16731         (bug spotted by Zoltan Varga).
16732
16733 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
16734
16735         * class.c: deal with the <Module> class that may have a NULL vtable.
16736         Eliminate warnings.
16737
16738 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
16739
16740         * image.c, image.h: more strong name helpers.
16741         * monosn.c: more work: convert pem keys to cryptoapi format.
16742
16743 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
16744
16745         * string-icalls.c: speedup IndexOf.
16746
16747 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
16748
16749         * icall.c: updates from Zoltan.2.Varga@nokia.com.
16750
16751 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
16752
16753         * icall.c: cleanup: use mono_object_domain ().
16754
16755 2002-09-23  Martin Baulig  <martin@gnome.org>
16756
16757         * debug-mono-symfile.c: Improved type support.
16758
16759 2002-09-22  Martin Baulig  <martin@gnome.org>
16760
16761         * debug-mono-symfile.c: Added support for reference types and strings.
16762
16763 2002-09-22  Martin Baulig  <martin@gnome.org>
16764
16765         * debug-mono-symfile.c: Started to work on the type table.
16766
16767 2002-09-21  Martin Baulig  <martin@gnome.org>
16768
16769         * debug-mono-symfile.c: Largely reworked the symbol table format.
16770         The symbol table is now incrementally updated each time a new
16771         method is added.  We're now also using our own magic and version
16772         so that you don't need to recompile all your classes if the
16773         dynamic table changes.
16774         (mono_debug_update_mono_symbol_file): Removed.
16775         (mono_debug_symfile_add_method): New function to add a method.
16776
16777 2002-09-21  Martin Baulig  <martin@gnome.org>
16778
16779         * icall.c
16780         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
16781         New interncall.
16782
16783         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
16784         New interncall to get a method from its metadata token.
16785
16786 2002-09-21  Martin Baulig  <martin@gnome.org>
16787
16788         * debug-mono-symfile.c: Create type table.
16789
16790 2002-09-20  Martin Baulig  <martin@gnome.org>
16791
16792         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
16793
16794 2002-09-20  Martin Baulig  <martin@gnome.org>
16795
16796         * debug-mono-symfile.c: Provide information about params and locals.
16797
16798 2002-09-20  Martin Baulig  <martin@gnome.org>
16799
16800         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
16801         New interncall.
16802
16803         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
16804         interncall to get a method from its metadata token.
16805
16806 2002-09-20  Martin Baulig  <martin@gnome.org>
16807
16808         * debug-mono-symfile.c: Added a few checks for method->header
16809         being non-NULL.  This should never happen, but for the moment
16810         let's use a g_warning() rather than a g_assert().
16811
16812 2002-09-19  Mark Crichton  <crichton@gimp.org>
16813
16814         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
16815         even if support for it isn't present.  Added an #ifdef to fix this.
16816
16817         * socket-io.c: Added checks back for Solaris support.
16818
16819 2002-09-19  Martin Baulig  <martin@gnome.org>
16820
16821         * debug-mono-symfile.c (read_string, write_string): Reflect latest
16822         changes in the symbol file format.
16823
16824 2002-09-18  Martin Baulig  <martin@gnome.org>
16825
16826         * debug-mono-symfile.c: Set version number to 21.
16827
16828 2002-09-18  Dick Porter  <dick@ximian.com>
16829
16830         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
16831         on netbsd.  Fixes bug 30051.
16832
16833 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16834
16835         * reflection.c:
16836         (set_version_from_string): little fix.
16837
16838 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
16839
16840         * monosn.c, Makefile.am: added strong name utility.
16841         * reflection.h, reflection.c: implemented delayed signing,
16842         locale, version and hash id assembly attributes.
16843
16844 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
16845
16846         * loader.c, metadata.c: load param attributes in signatures.
16847
16848 2002-09-16  Martin Baulig  <martin@gnome.org>
16849
16850         * debug-mono-symfile.c: Added string table with all method names.
16851
16852 2002-09-14  Martin Baulig  <martin@gnome.org>
16853
16854         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
16855         fast method lookup.
16856
16857 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
16858
16859         * reflection.c: record the public key token of referenced assemblies.
16860
16861 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
16862
16863         * image.c, image.h: added functions to get the strong name and the
16864         public key of an assembly.
16865         * pedump.c: use them.
16866
16867 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
16868
16869         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
16870
16871 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
16872
16873         * marshal.c (mono_marshal_get_managed_wrapper): Added
16874         MONO_TYPE_BOOLEAN 
16875
16876 2002-09-11  Martin Baulig  <martin@gnome.org>
16877
16878         * gc.c: Call GC_unregister_disappearing_link() on all links when
16879         finalizing them, this is necessary to aviod a crash in boehm's
16880         finalize handler.
16881
16882 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
16883
16884         * gc.c: handle GetTarget for finalized objects spotted and fixed by
16885         nick@chemlab.org.
16886
16887 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
16888
16889         * icall.c: implemented MonoType::Module.
16890         * reflection.c, reflection.h: mono_module_get_object () from
16891         Tomi Pakarinen <tomi.pakarinen@welho.com>.
16892
16893 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
16894
16895         * icall.c: ignore overridden methods in GetMethods ().
16896         Fix for FieldInfo::SetValue().
16897         * object.c: handle float/double in runtime invoke.
16898
16899 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
16900
16901         * object.c: allow a constructor to be called again on an object.
16902
16903 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
16904
16905         * class.h, class.c: move field layout code to it's own function and
16906         export it. Get an interface id earlier. Move fields in MonoClass
16907         so they are more cache friendly and align the bitfields.
16908         * loader.c: temporary handle get_param_names() for a runtime method.
16909         * reflection.c, reflection.h: more code to handle runtime creation of
16910         types.
16911
16912 2002-09-09  Martin Baulig  <martin@gnome.org>
16913
16914         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
16915         signature with the pinvoke field being set for the actual call.
16916
16917 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
16918
16919         * icall.c: removed some unused icalls. Start of map of glib charsets
16920         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
16921
16922 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
16923
16924         * debug-helpers.c: break infinite loop (found and fixed by
16925         Holger Arnold <harnold@gmx.de>).
16926
16927 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
16928
16929         * icall.c: target may be null in create_delegate.
16930
16931 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
16932
16933         * marshal.c: handle a boolean return type.
16934
16935 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
16936
16937         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
16938
16939 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
16940
16941         * gc.c: fix weakreferences.
16942
16943 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
16944
16945         * icall.c: added icall to get default codepage.
16946
16947 2002-09-03  Dick Porter  <dick@ximian.com>
16948
16949         * threads.h: 
16950         * threads.c: Use MonoThread instead of MonoObject where
16951         apropriate.
16952
16953         Store running thread objects in a hash table, so that we have all
16954         the info to hand when waiting for them to finish
16955         (means we don't need OpenThread() any more, so mingw builds should
16956         be fully functional again.)
16957
16958         * verify.c:
16959         * object.h: Added thread ID to MonoThread
16960
16961 2002-09-03  Martin Baulig  <martin@gnome.org>
16962
16963         * icall.c (System.Reflection.Assembly::get_location): New interncall.
16964
16965 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16966
16967         * icall.c: fixed leak in get_temp_path. Thanks lupus.
16968
16969 2002-09-03  Martin Baulig  <martin@gnome.org>
16970
16971         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
16972         argument to store the end address of the disassembled instruction.
16973
16974         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
16975         here from debug-symfile.h.
16976         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
16977         JIT into this struct.
16978         (MonoSymbolFile): Added `char *image_file' field.
16979         (MonoDebugGetMethodFunc): Removed.
16980         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
16981         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
16982         (mono_debug_find_method): New method.
16983
16984         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
16985         create a full symbol file.
16986         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
16987         and static symbol files.
16988         (mono_debug_find_method): The symbol file keeps an internal method hash,
16989         call this to get a MonoDebugMethodInfo from a MonoMethod.
16990
16991         * debug-symfile.[ch]: Removed.
16992
16993 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
16994
16995         * image.c (do_mono_image_open): Remove linker version check.
16996
16997 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
16998
16999         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
17000         wrappers for instance methods.
17001         
17002 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17003
17004         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
17005
17006 2002-08-28  Dick Porter  <dick@ximian.com>
17007
17008         * Makefile.am: Export HOST_CC for w32 builds
17009
17010 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17011
17012         * file-io.c process.c: MonoString are null terminated, no
17013         need for mono_string_to_utf16() anymore.
17014
17015 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17016
17017         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
17018
17019 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
17020
17021         * icall.c, reflection.h: speedup System.MonoType.
17022
17023 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17024
17025         * reflection.c: allow null as the value of a string argument in
17026         custom attributes constructors.
17027
17028 2002-08-27  Martin Baulig  <martin@gnome.org>
17029
17030         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
17031         `trampoline_address' field.
17032
17033 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
17034
17035         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
17036         check (fixes bug #29486) 
17037
17038 2002-08-27  Martin Baulig  <martin@gnome.org>
17039
17040         * debug-mono-symfile.c: Changed the file format in a way that allows us
17041         open it read-only and to use a specially malloced area for all the
17042         dynamic data.  We can now also generate a symbol file on-the-fly if we're
17043         debugging IL code and there is no MCS generated symbol file for it.
17044
17045 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
17046
17047         * object.c: added a define for a good string and array
17048         creation speedup (not enabled by default because we need to deal with
17049         the synch stuff).
17050
17051 2002-08-26  Martin Baulig  <martin@gnome.org>
17052
17053         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
17054         function to create a dynamic symbol file.  This is used by the
17055         debugger to create a symbol file for IL code on-the-fly.
17056
17057 2002-08-26  Martin Baulig  <martin@gnome.org>
17058
17059         * loader.c (mono_lookup_pinvoke_call): Include the error message
17060         from g_module_error() in the error message.
17061
17062 2002-08-24  Martin Baulig  <martin@gnome.org>
17063
17064         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
17065         function to update the symbol file.  The symbol file is mmap()ed
17066         writable, but private.  This allows us to install the symbol file
17067         together with the assembly.
17068
17069 2002-08-24  Martin Baulig  <martin@gnome.org>
17070
17071         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
17072         but they can read the new symbol file format which mcs is now creating.
17073
17074         * debug-symfile.c (mono_debug_find_source_location): Moved to
17075         debug-mono-symfile.c; this is now operating on the new symbol file.
17076
17077 2002-08-23  Martin Baulig  <martin@gnome.org>
17078
17079         * debug-helpers.c (mono_method_desc_from_method): New function to get
17080         a MonoMethodDesc from a MonoMethod.
17081
17082 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17083
17084         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
17085         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
17086
17087 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
17088
17089         * string-icalls.[ch]: make helper methods static.
17090
17091 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17092
17093         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
17094         types to it and to SetValueInternal.
17095
17096         * object.c: Moved handle_enum label to its proper place. This was the
17097         f... bug! ;-)
17098
17099         This time i compiled mcs and gtk-sharp and they both work.
17100
17101 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17102
17103         * icall.c: reverted partially my previous patch until 
17104         object.c:set_value handles enums correcly.
17105
17106 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17107
17108         * icall.c:
17109         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
17110         (ves_icall_System_Environment_get_MachineName): removed warning when
17111         compiling under cygwin.
17112
17113 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
17114
17115         * object.c: fixed field_get_value() for reference types.
17116
17117 2002-08-22  Dick Porter  <dick@ximian.com>
17118
17119         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
17120         Don't free a buffer while it's still needed.  Patch from Jonathan
17121         Liger <Jonathan.liger@wanadoo.fr>
17122
17123 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
17124
17125         * icall.c (ves_icall_System_Environment_get_Platform): Add new
17126         internal call.
17127
17128 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
17129
17130         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
17131         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
17132
17133         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
17134         we call unmanaged code which throws exceptions.
17135
17136 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17137
17138         * appdomain.h: added per-domain entry_assembly.
17139         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
17140         arguments.
17141         * icall.c: Assembly::GetEntryAssembly icall.
17142         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
17143         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
17144
17145 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17146
17147         * appdomain.h, gc.c: added mono_domain_finalize ().
17148
17149 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17150
17151         * object.c:
17152         (mono_print_unhandled_exception): changed g_warning by g_printerr
17153         because g_log has a 1024 characters limit (yeah, i got a big stack
17154         trace). Don't print exception name, that should be in ToString 
17155         returned string.
17156
17157 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17158
17159         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
17160         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
17161
17162 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17163
17164         * object.c:
17165         (mono_print_unhandled_exception): after previous commit, i realized
17166         that MS calls ToString on the exception. I changed this function to
17167         do that. This way we get stack_trace for free.
17168
17169 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17170
17171         * object.c:
17172         (mono_print_unhandled_exception): invoke Message property instead of
17173         getting 'message' field from Exception. Don't allocate memory for
17174         'trace' and 'message' if not needed.
17175
17176 2002-08-18  Dick Porter  <dick@ximian.com>
17177
17178         * unicode.c: Fix asserts to match Encoder.cs checks
17179
17180 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17181
17182         * marshal.c: fix unaligned store issue and a few wrong
17183         opcode argument types.
17184
17185 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17186
17187         * icall.c: added GetUninitializedObjectInternal internal call.
17188
17189 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
17190
17191         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
17192         to the right domain.
17193
17194 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
17195
17196         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
17197
17198         * class.c (class_compute_field_layout): set blittable to false for Strings
17199
17200         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
17201
17202 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17203
17204         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
17205         first chunk of code to create types at runtime. Code to
17206         handle ReflectedType/DeclaringType. Make reflection handles
17207         domain specific.
17208
17209 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
17210
17211         * class.c: set correct name in arrays.
17212
17213 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
17214
17215         * appdomain.c (mono_domain_transfer_object): make it work with
17216         valuetypes. bug fixes.
17217
17218 2002-08-12  Dick Porter  <dick@ximian.com>
17219
17220         * object.h: Rename some parameters to avoid c++ keywords (Patch
17221         from Joseph Wenninger <kde@jowenn.at>)
17222
17223 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
17224
17225         * icall.c: added icall to implement Assembly.GetFile*.
17226
17227 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17228
17229         * reflection.h, reflection.c: code to embed managed resources.
17230
17231 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17232
17233         * class.c: move all the type size stuff into
17234         class_compute_field_layout().
17235
17236 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17237
17238         * class.c: ensure enums have always the correct instance size.
17239         * unicode.c: remove wrong assert.
17240
17241 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
17242
17243         * assembly.c: fix mem corruption issue.
17244         * image.h, image.c: added mono_image_get_resource () to access
17245         managed resources.
17246         * icall.c: implemented Assembly.EntryPoint property and some
17247         Managed Resources related internalcalls.
17248
17249
17250 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17251
17252         * image.c, image.h: impemented mono_image_get_entry_point ().
17253         * appdomain.c: use mono_image_get_entry_point.
17254
17255 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17256
17257         * reflection.c: support the object type argument when loading
17258         custom attributes.
17259
17260 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
17261
17262         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
17263         String as return type.
17264
17265 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
17266
17267         * reflection.c: fix encoding of named args for custom attrs to match
17268         the ms implementation. Read them back when instantiating custom
17269         attributes.
17270
17271 2002-08-02  Radek Doulik  <rodo@ximian.com>
17272
17273         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
17274         by Dietmar as quick fix
17275         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
17276         16 as stack size, used on more places as quick fix before Dietmar
17277         will fix it properly
17278
17279 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17280
17281         * object.h, object.c: added accessors for fields and properties.
17282
17283 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17284
17285         * class.c, class.h: made mono_class_get_field_from_name ()
17286         loop on parent types.
17287         Added mono_class_get_property_from_name ().
17288
17289 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17290
17291         * class.c, class.h: move the code to setup the type vtable in its own
17292         function so that it can be reused also for types created at runtime.
17293         Eliminate the "class" identifier from the header file.
17294         * reflection.c: setup the vtable for enums so that we can create
17295         objects for use in SetConstant ().
17296
17297 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
17298
17299         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
17300         instead of the delegate itself as this pointer (bug #28383)
17301
17302 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
17303
17304         * marshal.c (mono_marshal_get_managed_wrapper): added return type
17305         conversions.
17306
17307 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17308
17309         * loader.c: don't set the pinvoke bit on icalls.
17310
17311 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
17312
17313         * debug-helpers.c (mono_method_full_name): only print a number to
17314         indicate wrapper type (so that the output is more readable in traces).
17315
17316 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
17317
17318         * class.c (mono_class_init): include method override patch from Paolo
17319
17320 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
17321
17322         * icall.c: fixed GetTypeCode().
17323
17324 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
17325
17326         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
17327         use real delegate invoke function to make it work with multicast
17328         delegates (fix bug# 28291).
17329
17330 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
17331
17332         * object.c: load constant strings.
17333
17334 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17335
17336         * reflection.c: no magic numbers.
17337         * tabledefs.h: security action enum.
17338
17339 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
17340
17341         * assembly.c: fix possible memory corruption.
17342
17343 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17344
17345         * reflection.h, reflection.c: added support for linking resources.
17346         * verify.c: check we have an updated corlib.
17347
17348 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
17349
17350         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
17351         string arrays.
17352         (mono_marshal_string_array): null terminate unmanaged string arrays.
17353         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
17354
17355 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
17356
17357         * icall.c: Type.GetType () can now return also types from the
17358         calling assembly.
17359
17360 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
17361
17362         * loader.h, loader.c: stack walking support.
17363         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
17364         GetCallingAssembly.
17365
17366 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
17367
17368         * marshal.c: added optimisations for blittable types 
17369
17370         * class.c (mono_array_class_get): do not set blittable attribute on arrays
17371         (mono_class_setup_mono_type): set blittable attribute for single
17372         and double.
17373
17374         * marshal.c (mono_string_utf8_to_builder): impl.
17375         (mono_string_builder_to_utf8): impl.
17376         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
17377
17378 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
17379
17380         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
17381         (mono_marshal_get_managed_wrapper): impl. byref types
17382
17383 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17384
17385         * icall.c:
17386         (search_method): don't display debug message. 
17387
17388 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
17389
17390         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
17391
17392 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
17393
17394         * appdomain.c: set the missing filename when throwing exception.
17395
17396 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
17397
17398         * metadata.c (mono_type_size): code cleanup
17399         (mono_type_stack_size): removed some test code
17400
17401 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
17402
17403         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
17404         mono_get_exception_file_not_found now.
17405
17406         * exception.c (mono_exception_from_name_two_strings): New version
17407         that will call a constructor with two string arguments. 
17408         (mono_get_exception_file_not_found): New helper routine, used to
17409         report file-not-found errors.
17410
17411 2002-07-20  Dick Porter  <dick@ximian.com>
17412
17413         * process.h:
17414         * process.c: Pass file handles to CreateProcess
17415         
17416         * icall.c:
17417         * file-io.h:
17418         * file-io.c: Implemented CreatePipe
17419
17420 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
17421
17422         * metadata.c (mono_get_param_info): set alignment for value types
17423
17424 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17425
17426         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
17427         Constify mono_domain_assembly_open().
17428         * loader.c: handle null namespace in icalls.
17429
17430 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
17431
17432         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
17433         (emit_str_to_ptr_conv): marshal object as structs
17434
17435         * metadata.c (mono_type_to_unmanaged): marshal object as structs
17436
17437         * marshal.c (mono_marshal_get_runtime_invoke): support value types
17438
17439 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
17440
17441         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
17442         (mono_marshal_get_native_wrapper): we an now return value types
17443
17444 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17445
17446         * verify.c: more checks implemented.
17447
17448 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
17449
17450         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
17451         (fix bug #27695)
17452         (mono_marshal_get_native_wrapper): allow byref arguments
17453         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
17454         impl. PtrToStringXXX methods
17455         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
17456         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
17457         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
17458         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
17459         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
17460
17461 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17462
17463         * reflection.c: fix buglet in parsing an assembly name.
17464
17465 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
17466
17467         * marshal.c (emit_ptr_to_str_conv): first impl.
17468
17469 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
17470
17471         * object.c, class.h: cache the vtable in the class as suggested by
17472         vargaz@freemail.hu (Zoltan Varga).
17473
17474 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17475
17476         * class.h, loader.c: added mono_field_from_token().
17477         * verify.c: first cut of type checking code.
17478
17479 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
17480
17481         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
17482
17483 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
17484
17485         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
17486         (fix bug #27782)
17487         (mono_marshal_get_remoting_invoke): impl.
17488         (mono_delegate_begin_invoke): impl.
17489         (mono_mb_emit_save_args): impl.
17490         (mono_delegate_end_invoke): impl.
17491         (mono_marshal_get_delegate_begin_invoke):
17492         (mono_marshal_get_delegate_end_invoke):
17493         (mono_marshal_get_delegate_invoke): generate a special name for
17494         those methods (including the signature) and associate them whith
17495         the delegate class. 
17496
17497 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
17498
17499         * reflection.[ch]: 
17500         (mono_reflection_type_from_name): now it has a MonoImage parameter
17501         which is used as the default image to search the type in. If the image
17502         is NULL or getting the type from it fails, it defaults to corlib.
17503
17504         * icall.c: changed 1 call to mono_reflection_type_from_name to match
17505         new parameter.
17506
17507 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17508
17509         * reflection.c: update the parameter table index.
17510
17511 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17512
17513         * domain.c: don't include the mark byte in the string hash.
17514
17515 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17516
17517         * icall.cs: icall for Type.GetTypeCode ().
17518         * verify: a couple of fixes and disabled local initialization checks.
17519
17520 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
17521
17522         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
17523
17524         * debug-helpers.c (mono_method_full_name): print the type of the
17525         runtime wrapper
17526
17527         * metadata.c (mono_signature_hash): a hash function for signatures
17528         (mono_signature_hash): better hash algorithm
17529
17530         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
17531
17532         * debug-helpers.c (mono_method_full_name): this can now generate
17533         method names with signatures
17534
17535         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
17536         method dont have this pointers.
17537
17538 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
17539
17540         * reflection.c: fixup typebuilder tokens.
17541         * image.c: fix buglet.
17542         * marshal.h: remove whitespace.
17543         * metadata.h, metadata.c: reinstate code that was removed.
17544         * verify.c: handle catch directives and fix another couple of bugs.
17545
17546 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
17547
17548         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
17549         (mono_marshal_get_native_wrapper): make it comp. with the old code
17550         (mono_marshal_get_native_wrapper): support boolean
17551         (mono_marshal_get_managed_wrapper): support more types
17552
17553 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
17554
17555         * class.c (class_compute_field_layout): compute class->blittable attribute.
17556
17557 2002-07-09  Dick Porter  <dick@ximian.com>
17558
17559         * threads.c: Make the thread cleaning up cope with threads that
17560         call ExitThread()
17561
17562 2002-07-08  Radek Doulik  <rodo@ximian.com>
17563
17564         * reflection.c (method_encode_code): use non-translated values to
17565         compute finally_start, this fixes exception handling on ppc, yay!
17566
17567         * decimal.h (struct signscale): fix endianess
17568
17569 2002-07-07  Radek Doulik  <rodo@ximian.com>
17570
17571         * reflection.c: swap box_val and not val
17572
17573 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
17574
17575         * reflection.c, reflection.h: handle full assembly info in type name.
17576         Handle Type arguments when loading custom attributes.
17577         * icall.c: updated to use new mono_reflection_type_from_name () method.
17578
17579 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17580
17581         * loader.c:
17582         (method_from_memberref): also print assembly name when method not found.
17583
17584 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17585
17586         * icall.c:
17587         (ves_icall_TypeGetProperties): fixed bug #27473. 
17588
17589 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17590
17591         * reflection.c: display image name and token when cannot find the
17592         .ctor for an attribute.
17593
17594 2002-07-05  Martin Baulig  <martin@gnome.org>
17595
17596         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
17597
17598 2002-07-04  Dick Porter  <dick@ximian.com>
17599
17600         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
17601         compile on mingw.  This will cause mingw builds to not wait for
17602         subthreads to terminate after the main thread does.  I've lodged a
17603         bug with the mingw developers for them to wrap OpenThread().
17604
17605 2002-07-03  Dick Porter  <dick@ximian.com>
17606
17607         * threads.c: Store thread IDs instead of handles, because
17608         GetCurrentThread() returns a pseudohandle and therefore stores
17609         useless values.  mono_thread_cleanup() continues checking the
17610         array of threads until it is empty, to cope with subthreads
17611         spawning new threads after the main thread has finished.
17612
17613         * profiler.h:
17614         * profiler.c:
17615         * profiler-private.h: Pass the thread ID to thread profiler
17616         functions, instead of a handle
17617
17618 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
17619
17620         * verify.c: fixes to make it more usable.
17621         * pedump.c: added --verify code to verify IL code in an assembly.
17622
17623 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17624
17625         * reflection.c: turn errors into warnings to allow compiling corlib.
17626
17627 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
17628
17629         * reflection.c: add special cases to compile corlib.
17630
17631 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17632
17633         * reflection.c: handle properties with only a set method.
17634
17635 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
17636
17637         * opcodes.h: add enum with opcodes in opval order.
17638
17639 2002-07-01  Dick Porter  <dick@ximian.com>
17640         
17641         * object.h:
17642         * object.c (mono_runtime_run_main): Removed unneeded argument
17643
17644 2002-06-28  Martin Baulig  <martin@gnome.org>
17645
17646         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
17647
17648 2002-06-27  Dick Porter  <dick@ximian.com>
17649
17650         * threads.c: Store the handle in both the parent thread and in the
17651         subthread, to minimise the time between starting a new thread and
17652         storing its ID.
17653
17654 2002-06-26  Dick Porter  <dick@ximian.com>
17655
17656         * appdomain.c (mono_runtime_cleanup): Close the socket library
17657         after all the threads have finished, not before
17658
17659 2002-06-26  Martin Baulig  <martin@gnome.org>
17660
17661         * debug-symfile.c (mono_debug_find_source_location): Added
17662         `guint32 *line_number' argument.  If it's not NULL, store the line number
17663         there and return the file name without the line number.
17664
17665 2002-06-25  Dick Porter  <dick@ximian.com>
17666
17667         * icall.c:
17668         * process.h:
17669         * process.c: Process forking and other support functions
17670
17671 2002-06-25  Dick Porter  <dick@ximian.com>
17672
17673         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
17674         things dont happen when the image is closed.
17675         (mono_image_lookup_resource): Walk the resource section looking
17676         for a particular entry
17677
17678         * cil-coff.h: PE resource section decoding
17679
17680 2002-06-25  Dick Porter  <dick@ximian.com>
17681         
17682         * assembly.h:
17683         * assembly.c: 
17684         (mono_assembly_foreach): Accessor functions to walk the list of
17685         loaded assemblies
17686         (mono_assembly_set_main):
17687         (mono_assembly_get_main): Process methods need to know which
17688         assembly is the "main" one
17689
17690         * object.c (mono_runtime_run_main): Record the main assembly
17691
17692         * debug-helpers.c: Fix typo
17693
17694 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
17695
17696         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
17697         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
17698
17699 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
17700
17701         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
17702
17703 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
17704
17705         * image.c (do_mono_image_open): Initialize reference count,
17706         otherwise we leak the MonoImage.
17707
17708 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17709
17710         * reflection.c: small tweak to handle self-hosting.
17711
17712 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17713
17714         * reflection.c: fix type name parse code.
17715
17716 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17717
17718         * reflection.c: break out of the loop.
17719         * image.c: special case corlib.
17720
17721 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17722
17723         * reflection.c: add all the custom attrs at the end to ensure the
17724         ctors have been properly initialized when the attributes are defined
17725         in the current assembly.
17726
17727 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17728
17729         * reflection.c: handle correctly multiple-nested types.
17730
17731 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
17732
17733         * row-indexes.h: fix typos.
17734         * reflection.c: adjust for typos and fix method_def_or_ref
17735         encoding in MethodImpl table.
17736
17737 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
17738
17739         * reflection.c: fix entry point patching (thanks Serge!).
17740
17741 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
17742
17743         * verify.c: add check for System.Exception
17744
17745 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17746
17747         * image.c, class.c: minifix for code just c&p'ed.
17748         * reflection.c: warning fix.
17749         * object.h, loader.h, domain.c: load also StringBuilder.
17750
17751 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17752
17753         * marshal.h, marshal.c: some support code to handle complex marshaling.
17754
17755 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17756
17757         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
17758         Better signatures with vtable error dump.
17759
17760 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
17761
17762         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
17763
17764 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
17765
17766         * icall.c (ves_icall_Type_GetField): impl.
17767
17768 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17769
17770         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
17771         to retrieve a marshal description blob for a field or param.
17772
17773 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17774
17775         * reflection.h, reflection.c: change order of nested type emission
17776         to avoid table corruption. The NestedTypes table is sorted.
17777         * icall.c: change order of GetConstructor results to workaround mcs bug.
17778
17779 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
17780
17781         * reflection.h, reflection.c: handle field and param marshal
17782         information.
17783
17784 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17785
17786         * icall.c, marshal.c marshal.h: more Marshal class implementation.
17787
17788 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17789
17790         * reflection.c: fix call convention.
17791
17792 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17793
17794         * reflection.h, reflection.c: mono_image_get_memberref_token()
17795         takes a type instead of a class, now. Added
17796         mono_image_get_array_token() to create tokens for the special
17797         multi-dim array methods.
17798
17799 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17800
17801         * assembly.c: handle modules (no assembly table). Split
17802         loading references in its own function.
17803         * class.c: handle moduleref resolution scope.
17804         * image.c, image.h: cache module name in image.
17805
17806 2002-06-07  Martin Baulig  <martin@gnome.org>
17807
17808         * reflection.c (mono_image_get_type_info): Only add a class layout entry
17809         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
17810
17811 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
17812
17813         * icall.c: more signature fixes that used uint instead of int.
17814
17815 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17816
17817         * reflection.c: fixed signature of field refs.
17818
17819 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17820
17821         * class.c, reflection.c: handle typerefs of nested types
17822         (both on read and when writing files).
17823
17824 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
17825
17826         * icall.c: fix method signatures that tried to workaround the previous
17827         typo, d'oh!
17828
17829 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
17830
17831         * debug-helpers.c: fix typo.
17832
17833 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
17834
17835         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
17836         rewrote the PE/COFF writing code (our programs are understood by the
17837         ms runtime, now).
17838
17839 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17840
17841         * gc.c, gc.h, icall.c: weakreference support.
17842
17843 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17844
17845         * Makefile.am, mono-config.c: use $(sysconfdir).
17846
17847 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17848
17849         * icall.c: changed default precision of Double.ToString() to 15.
17850         Fixed memory leak. Unified with Single.ToString.
17851
17852 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
17853
17854         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
17855
17856 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17857
17858         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
17859         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
17860         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
17861         and myself.
17862
17863 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
17864
17865         * debug-symfile.c, sysmath.c: yet more compilation fixes.
17866
17867 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17868
17869         * reflection.c, socket-io.c: more compilation fixes.
17870
17871 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
17872
17873         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
17874         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
17875         unicode.c: warning and compiler compatibility fixes.
17876
17877 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
17878
17879         * class.h, metadata.c: fixed warnings/compilation errors.
17880
17881 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
17882
17883         * Makefile.am, mono-config.c, mono-config.h: configuration file
17884         support routines.
17885         * loader.c, loader.h: make Dll mapping configurable at runtime in the
17886         config file. Export methods to insert and lookup mappings.
17887
17888 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17889
17890         * reflection.c: handle types and boxed objects in custom attr
17891         constructors.
17892
17893 2002-05-30  Martin Baulig  <martin@gnome.org>
17894
17895         * debug-symfile.c
17896         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
17897
17898 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
17899
17900         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
17901         to lookup the implmap row for a P/Invoke method.
17902         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
17903         P/Invoke method from the runtime on an as needed basis.
17904
17905 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
17906
17907         * metadata.c (mono_metadata_parse_signature): impl.
17908
17909 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17910
17911         * class.c: handle .pack directive.
17912
17913 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17914
17915         * object.c: initialize static fields with RVA data.
17916
17917 2002-05-25  Martin Baulig  <martin@gnome.org>
17918
17919         * debug-symfile.c
17920         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
17921
17922 2002-05-24  Martin Baulig  <martin@gnome.org>
17923
17924         * debug-symfile.c
17925         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
17926         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
17927         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
17928
17929 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
17930
17931         * object.c: special case string ctros in invoke.
17932         * gc.c: silly whitespace changes.
17933
17934 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
17935
17936         * threadpool.[ch]: impl. a threadpool that can
17937         be used by mint and mono.
17938
17939 2002-05-22  Martin Baulig  <martin@gnome.org>
17940
17941         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
17942         The first argument is now a `MonoReflectionModuleBuilder *', the return
17943         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
17944         `methods' field to get the method builder.  The `token' argument is the
17945         unfixed token.
17946
17947         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
17948         invalid characters instead of g_assert_not_reached()ing.  This seems
17949         to be the behaviour of mscorlib.
17950
17951 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
17952
17953         * object.c (mono_runtime_invoke_array): applied patch from Rachel
17954         Hestilow to fix bug #25104
17955
17956 2002-05-21  Martin Baulig  <martin@gnome.org>
17957
17958         * debug-symfile.c (mono_debug_find_source_location): New function.
17959         Looks up an IL offset in the line number table and returns the source
17960         location as a string.
17961
17962 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17963
17964         * icall.c:
17965         (mono_double_ToStringImpl): changed %f by %g until we have something
17966         better.
17967
17968 2002-05-21  Nick Drochak  <ndrochak@gol.com>
17969
17970         * icall.c : Use different name for Math.Pow's icall.  Needed to check
17971         parameters first in C#.
17972
17973 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
17974
17975         * icall.c, reflection.h: added icall to get info about an event.
17976
17977 2002-05-20  Radek Doulik  <rodo@ximian.com>
17978
17979         * object.c (mono_value_box): don't use memcpy for boxing on BIG
17980         endian
17981         (mono_value_box): don't use memcpy for small sizes on
17982         architectures with unaligned access
17983
17984 2002-05-20  Martin Baulig  <martin@gnome.org>
17985
17986         * reflection.c (mono_reflection_setup_internal_class): Don't crash
17987         if `tb->parent == NULL'.
17988         (mono_reflection_create_internal_class): New function.  This is
17989         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
17990         for enum types.
17991
17992         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
17993         New interncall.
17994
17995 2002-05-19  Martin Baulig  <martin@gnome.org>
17996
17997         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
17998         argument to get the length, don't default to the array length.
17999
18000 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
18001
18002         * assembly.c (mono_assembly_setrootdir): New function used to
18003         override the MONO_ASSEMBLIES directory.
18004
18005 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18006
18007         * icall.c: ValueType_GetHashCode() initialize local var.
18008
18009 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18010
18011         * reflection.c: sort custom attributes table.
18012
18013 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18014
18015         * reflection.c: support named args in custom attributes (write support).
18016
18017 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
18018
18019         * reflection.c: fix finally position calculation.
18020
18021 2002-05-15  Radek Doulik  <rodo@ximian.com>
18022
18023         * reflection.c: fixed endianess at many places
18024
18025         * icall.c (ves_icall_InitializeArray): comment out debug msg
18026
18027 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
18028
18029         * object.c (mono_unhandled_exception): new function to handle
18030         unhandled exceptions.
18031         (mono_unhandled_exception): call the UnhandledException event.
18032         (mono_runtime_delegate_invoke): impl.
18033
18034 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
18035
18036         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
18037         returns the RVA, not the direct pointer to the data. Handle the case
18038         when the class size is fixed.
18039
18040 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18041
18042         * reflection.c: fix some endianess issues.
18043
18044 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
18045
18046         * object.c (mono_runtime_invoke): is now able to catch exceptions.
18047
18048         * threads.c (mono_thread_init): added a callback which is invoked
18049         at thread start.
18050
18051 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
18052         
18053         * icall.c: make GetHashCode return non-negative values.
18054
18055 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
18056
18057         * object.c, icall.c, gc.c: revert to address-based hashcode.
18058
18059 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
18060
18061         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
18062
18063 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18064
18065         * icall.c, class.c: special case <Module>.
18066
18067 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
18068
18069         * icall.c: fix bug in GetNow().
18070
18071 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
18072
18073         * object.c (mono_runtime_class_init): make sure that we call all
18074         static class constructors.
18075
18076 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18077
18078         * reflection.c: sort methodsemantics table.
18079
18080 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18081
18082         * reflection.h, reflection.c: honour init locals setting.
18083
18084 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
18085
18086         * icall.c: copied Double ToStringImpl for Single ToStringImpl
18087
18088 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18089
18090         * reflection.c: support ContructorBuilders in attribute blob creation.
18091
18092 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18093
18094         * reflection.c: some changes to build a binary that can be run
18095         directly in windows.
18096
18097 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
18098
18099         * loader.c: print a big message when an icall can't be found.
18100
18101 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18102
18103         * string-icalls.c: fix bug 24248.
18104
18105 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18106
18107         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
18108         icall.c, reflection.h: separate assembly loading by pathname and by
18109         assembly name. Use the MONO_PATH env var to search for assemblies.
18110
18111 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18112
18113         * assembly.c, image.h: add some support for assemblies
18114         with multiple modules.
18115         * class.c, class.h: export mono_class_from_typeref().
18116         * loader.c: remove duplicated code and use mono_class_from_typeref(),
18117         instead.
18118
18119 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18120
18121         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
18122         documentation says (the ECMA one is correct).
18123
18124 2002-05-02  Dick Porter  <dick@ximian.com>
18125
18126         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
18127         Don't name the synchronisation mutex.
18128
18129 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
18130
18131         * rand.c
18132         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
18133         Make the prototypes match.
18134         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
18135         Same.
18136
18137         * icall.c
18138         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
18139         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
18140         all systems have tm.tm_zone, so use strftime() with %Z to print
18141         the timezone abreviation into a temp string.
18142
18143         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
18144         rather than mono_array_addr() on a MonoString on Big Endian
18145         machines.
18146
18147 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
18148
18149         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
18150         fix bug 24041
18151
18152 2002-04-30  Dick Porter  <dick@ximian.com>
18153
18154         * socket-io.c: Cope with SOCKET being an integer rather than a
18155         pointer now.
18156
18157         * threads.c: Added Thread_free_internal, to deal with thread
18158         handle cleanup.  Moved calls to handle_store() and handle_remove()
18159         to start_wrapper(), so each can only be called once.  Allocate
18160         synchronisation blocks with GC_malloc(), and use GC finalisation
18161         to close the handles.
18162
18163         * icall.c: added System.Threading.Thread::Thread_free_internal
18164
18165 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18166
18167         * icall.c: support Environment.Exit, CommandLineArgs().
18168
18169 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18170
18171         * object.c, object.h: added mono_runtime_run_main () and
18172         mono_runtime_get_main_args () for use in System.Environment.
18173
18174 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18175
18176         * gc.c: fix thinko, enable actual finalization since the jit is now
18177         fixed.
18178
18179 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18180
18181         * gc.c, object.c: take into account that an object may be offset wrt the address
18182         returned by GC_malloc().
18183
18184 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18185
18186         * image.c: handle files without entries in the assembly table (modules).
18187
18188 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
18189
18190         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
18191         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
18192         allowed to be null when it's System.Object class setup.
18193
18194 2002-04-27  Martin Baulig  <martin@gnome.org>
18195
18196         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
18197         if `tb->parent == NULL' rather than crashing.
18198
18199 2002-04-28  Nick Drochak  <ndrochak@gol.com>
18200
18201         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
18202         calling acos() where asin() should have been called.
18203
18204 2002-04-26  Martin Baulig  <martin@gnome.org>
18205
18206         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
18207         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
18208         there's a subdirectory called `System', but we don't want to read that
18209         subdirectory as an assembly.
18210
18211 2002-04-25  Martin Baulig  <martin@gnome.org>
18212
18213         * debug-symfile.c: Reflect latest MonoString changes.
18214
18215 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18216
18217         * rand.c, rand.h: instance method icalls need to have an explicit
18218         this pointer as first argument in the C implementation.
18219
18220 2002-04-25  Nick Drochak <ndrochak@gol.com>
18221
18222         * icall.c: Fix typo in map for GetNonZeroBytes
18223
18224 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18225
18226         * string-icalls.c : String does now passes unit tests without any 
18227         errors, the following changes has been made:
18228         
18229         Implemented replace methods.
18230         Renaming of methods to (try) follow the standard.
18231         Fixed compare ordinal
18232         Made all memory allocated directly to function instead of via icall function.
18233         Small performance fix in is_in_array function
18234                         
18235  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
18236
18237         c (mono_string_Internal_ctor_charp_int_int):
18238         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
18239         sindex < 0, throw ArgumentOutOfRangeException instead of
18240         ArgumentNullException.
18241
18242         Added new check for length == 0, however
18243         I need to make it return String.Empty from the C code.
18244         
18245         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
18246         that calculate the length for us here.
18247         
18248         (mono_string_Internal_ctor_sbytep_int_int): Replaced
18249         mono_string_new_utf16 with mono_string_new, since value is utf8.
18250
18251 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18252
18253         * object.c: register the object for finalization if needed.
18254         Allocate one more char in the string for the terminating 0 char.
18255
18256 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18257
18258         * class.c, class.h, image.c: check if a type implemenst a destructor.
18259         Use the proper key for array class lookups.
18260         * icall.c: register the icalls in the System.GC class.
18261         * gc.c, gc.h: GC-related functions and icalls.
18262
18263 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18264
18265         * icall.c:
18266         * socket-io.c:
18267         * unicode.c: free some strings gotten from mono_string_to_utf8 and
18268         changed a couple of free () by g_free ().
18269
18270         * decimal.c: one-liner in the comments for decimal2string ().
18271
18272 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18273
18274         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
18275
18276 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18277
18278         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
18279         * object.c (mono_runtime_invoke_array) : handle null in params
18280
18281 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18282
18283         * string-icalls.c: fixed bug in split (one off bug)
18284
18285 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18286
18287         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
18288         * icalls.c: added String::Equals as internal method
18289
18290 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18291
18292         * threads.c: fixed bug in the double interlocked functions
18293
18294 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
18295
18296         * threads.c: implemented all of the new interlocked icalls.
18297         * string-icalls.c: fix a bug in insert.
18298         * icalls.c: added the icalls for interlocked, removed old string functions.
18299         
18300 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18301
18302         * loader.c: fix off-by-one error when reading argument names.
18303
18304 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18305
18306         * profiler.c: win32 counter implementation (untested).
18307         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
18308         (the latter needs testing and more complete impl. from win32 folks).
18309
18310 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
18311
18312         * object.c: mono_array_new_full workaround mono_array_class_get
18313         problem.
18314
18315 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18316
18317         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
18318         * object.h (mono_string_chars): Changed casting type.
18319
18320 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18321
18322         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
18323                            method signatures to use gunichar2 instead of gint16.
18324
18325 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
18326
18327         * object.h, object.c: domain-specific versions of mono_object_new and
18328         mono_array_new.
18329
18330 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
18331
18332         * object.c: changed String layout
18333
18334         * string-icalls.c (mono_string_Internal_ctor_chara): added
18335         internal string constructors.
18336
18337 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
18338
18339         * threads.c: pass 'this' to the thread start routine.
18340
18341 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18342
18343         * string-icalls.c: fix IndexOf and LastIndexOf. Now
18344         InternalCompareStr don't call twice mono_string_cmp_char for the last
18345         character. Improved performance in mono_string_cmp_char.
18346
18347 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18348
18349         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
18350         code into its own library: libmonoruntime.
18351
18352 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
18353
18354         * object.h, object.c: changed array format so that szarrays do not
18355         require a bounds structure.
18356         * icall.c, appdomain.c: support for new szarray format.
18357
18358 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
18359
18360         * metadata.c: compare also the retuns type when comparing signatures:
18361         we didn't do this as an optimization since really overloaded methods
18362         must differ also in the arguments, but this doesn't work with
18363         low-level IL code (or when using explicit conversion operators: see
18364         bug#23498 for an example).
18365
18366 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18367
18368         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
18369
18370 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18371
18372         * icall.c: make MonoType::GetElementType its own icall.
18373
18374 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18375
18376         * icall.c: remove MonoMethod_get_Name().
18377         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
18378         object.
18379
18380 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18381
18382         * string-icalls.c: optimized a few methods.
18383
18384 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18385
18386         * icall.c: added all new string internal calls
18387         * string-icalls.c: added, new string internal call implementation.
18388         * object.c: added mono_string_new_size for allocating a string a size
18389
18390 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
18391
18392         * object.c (mono_object_isinst): use the same code as in the
18393         optimized x86 version.
18394
18395 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18396
18397         * profiler.c: TSC-based timer code (faster and more accurate).
18398         Not hooked up in configure, yet (set USE_X86TSC to 1).
18399
18400 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
18401
18402         * profiler.c, profiler.h: track time spent compiling methods.
18403         * threads.c: track thread creation/destruction.
18404
18405 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
18406
18407         * profiler.c, profiler.h, profiler-private.h: profiling interface
18408         and sample implementation. Moved here so that it can be used also by
18409         the jit.
18410
18411 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
18412
18413         * reflection.c, reflection.h: keep types and other handles separate in
18414         the hash tables for referred tokens. Add guid for modules.
18415
18416 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18417
18418         * assembly.c: fix bugs found with valgrind.
18419         * metadata.h, metadata.c: added mono_metadata_guid_heap().
18420
18421 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
18422
18423         * threads: added icall support for getting current domain for
18424                    the thread.
18425  
18426 2002-04-13  Martin Baulig  <martin@gnome.org>
18427
18428         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
18429         (MonoDebugVarInfo): Added `index' field for register based addresses.
18430         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
18431         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
18432         `MonoDebugVarInfo *params' and `guint32 this_offset' with
18433         `MonoDebugVarInfo *this_var'.
18434
18435         * debug-symfile.c (relocate_variable): New static function to write
18436         a location description for a local variable or method parameter.
18437
18438 2002-04-12  Martin Baulig  <martin@gnome.org>
18439
18440         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
18441         stack offset and begin/end scope address of a local variable.
18442         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
18443         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
18444         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
18445
18446         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
18447         Added new relocation types for start/end scope of a local variable.
18448
18449 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18450
18451         * object.h: add mono_object_domain() macro.
18452         * reflection.c: handle typespecs.
18453         * icall.c: MonoMethod::get_Name() implementation.
18454
18455 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18456
18457         * icall.c: String::GetHashCode() icall implementation.
18458
18459 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18460
18461         * icall.c: String::IndexOfAny icall.
18462         * object.c, object.h: make array->max_length more useful.
18463         Intrduced mono_object_class() and mono_string_length() macros.
18464
18465 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18466
18467         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
18468         instead of g_unichar_isdigit.
18469
18470 2002-04-11  Nick Drochak  <ndrochak@gol.com>
18471
18472         * icall.c: Implement a simple Double.ToString().
18473
18474 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18475
18476         * appdomain.h: only io-layer.h is supposed to be included.
18477         * icall.c: explicitly import environ. Fix warning.
18478
18479 2002-04-10  Nick Drochak  <ndrochak@gol.com>
18480
18481         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
18482                 return true even if it's not Daylight Savings time.
18483                 Only return false for the case where the function isn't
18484                 implemented for a plaform (read Windows).
18485
18486 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18487
18488         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
18489         data with a mutex.
18490
18491 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
18492
18493         * mempool.c (mono_mempool_alloc): only use g_malloc when
18494         absolutely necessary.
18495
18496 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
18497
18498         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
18499
18500         * class.c (mono_class_vtable): use domain mempool to allocate vtable
18501         (mono_class_proxy_vtable): use domain mempool
18502
18503 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18504
18505         * appdomain.h, appdomain.c: split initialization that requires the
18506         execution engine support into mono_runtime_init().
18507
18508 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
18509
18510         * class.c (mono_class_init): don't include vtable inside MonoClass
18511         to save some memory, gather some statistics.
18512         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
18513
18514 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18515
18516         * icall.c: internalcall implementation for ValueType.Equals().
18517
18518 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
18519
18520         * object.c (mono_message_init): moved 
18521         (mono_runtime_exec_main): new arch. independent impl.
18522         (mono_runtime_invoke_array): new method - like
18523         mono_runtime_invoke, but you can pass an array of objects.
18524         (mono_remoting_invoke): new arch. independent impl.
18525         (mono_message_invoke): new arch. independent impl.
18526         (mono_runtime_class_init): new arch. independent impl.
18527         (mono_runtime_object_init): new arch. independent impl.
18528
18529 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18530
18531         * metadata.c, object.c, reflection.c: documented the exported
18532         functions.
18533
18534 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
18535
18536         * icall.c: simpler code to pass the assembly builder data to corlib.
18537         Implement GetNestedTypes() internalcall.
18538
18539 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18540
18541         * class.c: warn if a type can't be loaded.
18542
18543 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
18544
18545         * image.h: typedef MonoImageOpenStatus
18546         * types.h: removed unused file
18547         
18548 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
18549
18550         * icall.c: Enum_ToObject accepts enum value arguments.
18551
18552 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18553
18554         * class.c: move initialization of properties, events and nested
18555         classes, so that they happen for interfaces, too.
18556
18557 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18558
18559         * icall.c: cleanup some ugly casts in Array_SetValue*.
18560
18561 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18562
18563         * icall.c: the values array fro enums is of the correct type, now.
18564         Implement (correctly) getFullName instead of assQualifiedName for
18565         MonoType.
18566         * reflection.h, reflection.c: added mono_type_get_name ().
18567
18568 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18569
18570         * assembly.c, image.h: for each MonoImage, record from wich assembly
18571         it was loaded.
18572         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
18573         Make Type.Assembly work.
18574
18575 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
18576
18577         * debug-symfile.h: use char* instead of gpointer to avoid
18578         unnecessary casts.
18579
18580         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
18581
18582         * icall.c (ves_icall_InternalExecute): impl. FielSetter
18583         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
18584
18585 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
18586
18587         * icall.c (mono_message_init): impl. (code cleanup)
18588         (ves_icall_InternalExecute): impl. FieldGetter
18589
18590         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
18591         defined we call all (non-static)methods through the vtable. 
18592
18593 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
18594
18595         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
18596         finalizer even though the memory is still referenced (and the chunk of
18597         memory is not freed).
18598
18599 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
18600
18601         * assembly.c: fix brokeness.
18602
18603 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
18604
18605         * class.c: kill some warnings. Check explicit interface method
18606         implementation also without considering the namespace.
18607         Load also literal strings in static class data.
18608
18609 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
18610
18611         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
18612         (default_assembly_name_resolver): Make the resolver take the
18613         "base" directory where the assembly was originally defined, so we
18614         can load DLLs that are in the same directory as the assembly that
18615         is being referenced.
18616
18617 2002-03-28  Dick Porter  <dick@ximian.com>
18618
18619         * file-io.h: 
18620         * file-io.c:
18621         * socket-io.c: 
18622         * unicode.h: 
18623         * unicode.c: Warning cleanups
18624
18625 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
18626
18627         * object.h, reflection.h: use the correct type instead of MonoObject.
18628
18629 2002-03-28  Martin Baulig  <martin@gnome.org>
18630
18631         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
18632         (mono_debug_update_symbol_file): Initialize classes if necessary.
18633
18634 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
18635
18636         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
18637         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
18638
18639 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
18640
18641         * assembly.h: fix function prototype.
18642         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
18643         * mono-endian.h: use const cast.
18644
18645 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
18646
18647         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
18648
18649 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
18650
18651         * loader.c: don't assert when a typeref can't be loaded, give
18652         a chance to the runtime to trow an exception instead.
18653         * loader.h: fix warning.
18654
18655 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
18656
18657         * class.c (mono_class_proxy_vtable): added proxy support
18658
18659 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
18660
18661         * icall.c: removed last of PAL calls, added System.Environment
18662         * file-io.h, file-io.c: MonoIO implementation
18663         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
18664
18665 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
18666
18667         * appdomain.c: do not use the byte marker in ldstr table lookup.
18668         * debug-helpers.c: allow two ':' to separate class and method name.
18669         * object.c: allocate arrays bounds with the GC, too.
18670         * verify: add a few more checks.
18671
18672 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
18673
18674         * reflection.c: output also literal strings. Allocate parameter data
18675         with GC_malloc() (thanks, Martin, for catching this!).
18676
18677 2002-03-26  Martin Baulig  <martin@gnome.org>
18678
18679         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
18680         include the `this' offset in the `param_offsets'.
18681
18682 2002-03-25  Martin Baulig  <martin@gnome.org>
18683
18684         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
18685         mono_debug_get_class() function to get the classes. Added new
18686         relocation types for arrays and strings.
18687         (mono_debug_get_class): New static function to search in all
18688         referenced assemblies for a metadata token.
18689
18690         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
18691
18692 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18693
18694         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
18695         hold gc-allocated objects. Make the string heap a stream like the
18696         others. Removed duplicated code when writing stream info.
18697         Added asserts to catch possible buffer overflows. Set the sorted map
18698         for tables that need sorting. Added some documentation.
18699
18700 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
18701
18702         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
18703         for interned strings and vtables.
18704
18705 2002-03-24  Martin Baulig  <martin@gnome.org>
18706
18707         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
18708         it in the array since it was created with g_slist_prepend().
18709
18710 2002-03-24  Martin Baulig  <martin@gnome.org>
18711
18712         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
18713         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
18714         (mono_debug_method_from_token): Renamed to
18715         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
18716         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
18717
18718         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
18719         relocation types.
18720
18721         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
18722
18723 2002-03-24  Martin Baulig  <martin@gnome.org>
18724
18725         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
18726         (mono_debug_method_from_token): New func.
18727
18728         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
18729         New interncall, calls mono_debug_local_type_from_signature().
18730         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
18731         calls mono_debug_method_from_token().
18732
18733 2002-03-23  Martin Baulig  <martin@gnome.org>
18734
18735         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
18736         specifies the number of bytes to be converted, not the array size.
18737         Return the number of chars, not the number of bytes.
18738         (ves_icall_iconv_get_chars): The `byteCount' argument
18739         specifies the number of bytes to be converted, not the array size.
18740
18741 2002-03-23  Martin Baulig  <martin@gnome.org>
18742
18743         * reflection.h (MonoReflectionSigHelper): New type.
18744
18745         * reflection.c (mono_reflection_sighelper_get_signature_local),
18746         (mono_reflection_sighelper_get_signature_local): New functions.
18747
18748         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
18749         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
18750         interncalls.
18751
18752 2002-03-23  Martin Baulig  <martin@gnome.org>
18753
18754         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
18755         is_writeable is set.
18756         (mono_raw_buffer_update): New function to write the modified map
18757         back to disk.
18758
18759         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
18760
18761         * debug-symfile.c (mono_debug_update_symbol_file): Call
18762         mono_raw_buffer_update() when done writing.
18763
18764 2002-03-23  Martin Baulig  <martin@gnome.org>
18765
18766         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
18767
18768         * debug-symfile.c: Added support for arguments and local variables.
18769
18770 2002-03-23  Dick Porter  <dick@ximian.com>
18771
18772         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
18773         protected by ifdefs, hence breaking the w32 build.
18774
18775 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18776
18777         * object.c: implement is_interned() the right way.
18778
18779 2002-03-21  Martin Baulig  <martin@gnome.org>
18780
18781         * debug-symfile.[ch]: New files to handle debugging information
18782         files. There's also support to dynamically update these symbol
18783         files to include machine dependent information.
18784
18785 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
18786
18787         * threads.c (mono_thread_create): new function to create thread
18788         from C
18789
18790 2002-03-20  Martin Baulig  <martin@gnome.org>
18791
18792         * icall.c (ves_icall_InternalInvoke): Create a new object if the
18793         method is a constructor.
18794         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
18795         points to ves_icall_InternalInvoke().
18796
18797 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
18798
18799         * file-io.c: Flush shouldn't throw exceptions.
18800
18801 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
18802
18803         * file-io.c: FileStream flush support; FileSetLength now
18804         restores file pointer.
18805
18806 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
18807
18808         * class.c: set image for pointer classes.
18809
18810 2002/03/19  Nick Drochak <ndrochak@gol.com>
18811
18812         * sysmath.c: Forgot one.
18813
18814 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
18815
18816         * sysmath.c: Avoid redefining existing names.
18817
18818 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
18819
18820         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
18821         handled by runtime as icall rather than dllimport from libm.so
18822         * file-io.c, file-io.h: fixed handle argument type.
18823
18824 2002-03-18  Dick Porter  <dick@ximian.com>
18825
18826         * reflection.c (mono_image_get_type_info): rename interface to
18827         iface, because of "#define interface struct" on windows.
18828
18829 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
18830
18831         * class.c, class.h: rename and export mono_ptr_class_get().
18832         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
18833         * reflection.c, reflection.h, icall.c: better/saner type name
18834         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
18835         method signatures.
18836
18837 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
18838
18839         * class.c (mono_class_init): removed hardcoded GHC_SLOT
18840
18841         * icall.c (ves_icall_InternalInvoke): impl.
18842
18843 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
18844
18845         * reflection.c: output the interface map table, too.
18846
18847 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
18848
18849         * class.c (class_compute_field_layout): separate computation of 
18850         static field layout
18851
18852 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
18853
18854         * icall.c: added System.Buffer support.
18855         * file-io.c: moved file icalls from PAL to FileStream.
18856
18857 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
18858
18859         * icall.c (ves_icall_System_Object_GetHashCode): impl.
18860
18861 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
18862
18863         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
18864
18865 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
18866
18867         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
18868
18869 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
18870
18871         * debug-helpers.{c,h}: moved here from monograph some useful functions
18872         to locate a method by name/signature in a class or image. Included
18873         also a small and flexible IL disassembler.
18874
18875 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
18876
18877         * reflection.c: fixup tokens in methods with small header size, too.
18878
18879 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
18880
18881         * object.c (mono_string_to_utf8): remove assert(!error), instead
18882         print a warning. 
18883
18884 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
18885
18886         * icall.c: update to the new mono_Array_class_get interface.
18887
18888 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
18889
18890         * appdomain.c, object.c: Boehm-GC enable.
18891         * icall.c: make get_data_chunk() support split data requests.
18892         Ensure a class is initialized in more cases. Return only the first
18893         property found in GetProperties() or the compiler gets confused. 
18894         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
18895         * reflection.h, reflection.c: add fixup mechanism for field and method
18896         tokens. Initialize assembly->typeref in a single place. Output
18897         properties after events. Support custom attributes for events, too.
18898         Typo fix for paramter custom attrs.
18899
18900 2002-03-07  Martin Baulig  <martin@gnome.org>
18901
18902         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
18903
18904 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
18905
18906         * class.c (mono_array_class_get): fix. for multi. dim. arrays
18907
18908 2002-03-06  Martin Baulig  <martin@gnome.org>
18909
18910         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
18911         non-zero lower bounds. See testcases #F10-#F13.
18912
18913 2002-03-05  Martin Baulig  <martin@gnome.org>
18914
18915         * exception.c (mono_get_exception_argument_out_of_range): New exception.
18916
18917         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
18918         ves_icall_System_Array_GetValue(), only calculate the absolute array position
18919         here.
18920         (ves_icall_System_Array_SetValue): Likewise.
18921         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
18922         as argument and does the actual work. This function is used when copying a
18923         multi-dimensional array.
18924         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
18925         now do all the widening conversions of value types.
18926         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
18927
18928 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18929
18930         * class.c: remove some magic numbers and use the smbolic names,
18931         instead. Added init_events() to load event info at class init time.
18932         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
18933         and mono_metadata_methods_from_event().
18934         * reflection.h, reflection.c: added support for writing out the evnets
18935         related information.
18936
18937 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
18938
18939         * reflection.h, icall.c: use a different method (GetInterfaces)
18940         to gather interface info and add isbyref, isprimitive and
18941         ispointer to the ves_icall_get_type_info() return value.
18942
18943 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
18944
18945         * class.h: stared adding support for events.
18946         * icall.c: split find_members implementation. Added debug icall to get
18947         the address of an object.
18948         * reflection.c: handle TypeBuilders in mono_type_get_object().
18949
18950 2002-03-01  Martin Baulig  <martin@gnome.org>
18951
18952         * icall.c (ves_icall_System_Array_GetLength): This must throw an
18953         ArgumentOutOfRangeException(), not an ArgumentException().
18954         (ves_icall_System_Array_GetLowerBound): Likewise.
18955         (ves_icall_System_Array_GetValue): Improved argument checking.
18956         (ves_icall_System_Array_SetValue): Improved argument checking.
18957
18958 2002-03-01  Martin Baulig  <martin@gnome.org>
18959
18960         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
18961         called with invalid arguments rather than just dying with g_assert().
18962         (ves_icall_System_Array_SetValue): Likewise.
18963         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
18964         raise a NotImplementedException instead.
18965         (ves_icall_System_Array_GetLength): Added argument checking.
18966         (ves_icall_System_Array_GetLowerBound): Added argument checking.
18967
18968 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
18969
18970         * object.h (mono_assert): new macros mono_assert and
18971         mono_assert_not_reached
18972
18973 2002-02-28  Martin Baulig  <martin@gnome.org>
18974
18975         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
18976         and "System::String::IsInterned" to "System::String::_IsInterned".
18977
18978 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
18979
18980         * icall.c: remove hacks for typebuilder. Added icall to create a
18981         modified type from a tybebuilder.
18982         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
18983         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
18984         to create a backing MonoClass for a TypeBuilder.
18985
18986 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
18987
18988         * class.c, class.h: more refactoring of class init.
18989         Export mono_class_setup_mono_type() and mono_class_setup_parent().
18990
18991 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
18992
18993         * marshal.c, marshal.h: start of marshaling interface.
18994
18995 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
18996
18997         * icall.c: fix order in assembly qualified name icall.
18998
18999 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19000
19001         * class.c: do not free str, since we store it in the hash table.
19002         * reflection.h: add label field to MonoILExceptionInfo.
19003         * reflection.c: handle references to more than one assembly. Handle
19004         case when there isn't a module created in the assembly.
19005
19006 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19007
19008         * class.c: Fix typo. Start refactoring of class init code.
19009
19010 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
19011
19012         * appdomain.c: exit with 1 on error.
19013         * class.c: we already have the name in MonoClassField.
19014         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
19015         MonoStreamHeader instead of an offset of image->raw_metadata.
19016
19017 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
19018
19019         * appdomain.c (mono_init): Be even more descriptive about the error.
19020
19021 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
19022
19023         * appdomain.c: give the user an informative message when corlib can't
19024         be loaded.
19025
19026 2002-02-26  Martin Baulig  <martin@gnome.org>
19027
19028         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
19029         New icall to get the time zone data.
19030
19031 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19032
19033         * reflection.c: set virtual and raw size of section correctly.
19034         * threads.c: transfer domain information to newly created threads.
19035
19036 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
19037
19038         * class.c: when instancing a class in a domain, load the default
19039         vaules for static fields from the constant table. Fix System.Enum to
19040         not be an enum.
19041         * icall.c: implement Object::GetType() internalcall. Implemented
19042         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
19043         Fixed checking of binding flags in find_members().
19044         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
19045         * reflection.c: handle enumerations when writing to the constant
19046         table. Use a different object cache for types.
19047
19048
19049 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
19050
19051         * object.c (mono_object_isinst): fix for arrays
19052
19053         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
19054
19055 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
19056
19057         * object.c: don't use mprotect ()  and fix intern pool hash table
19058         lookup for big endian systems.
19059
19060 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19061
19062         * icall.c: change type_is_subtype_of () signature.
19063
19064 2002-02-21  Mark Crichton  <crichton@gimp.org>
19065
19066         * rand.c, rand.h: Added random number generator for
19067         System.Security.Cryptography classes.
19068
19069         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
19070
19071         * icall.c: Added System.Security.Cryptography calls.
19072
19073 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
19074
19075         * class.c, icall.c, metadata.c: better support for pointer types.
19076         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
19077         * reflection.c: Add support for getting custom attrs for properties
19078         and simplify some code.
19079
19080 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19081
19082         * icall.c: change getToken () and add custom attribute GetBlob()helper
19083         method.
19084         * reflection.h: add custom attrs array to the reflection builder structures.
19085         * reflection.c: encode and emit custom attributes for all the relevant
19086         reflection objects. Cache fieldref and methodref tokens. Change
19087         mono_image_create_token() interface to take a MonoDynamicAssembly.
19088         More complete custom attributes decoder. Load custom attributes for
19089         Assembly, Field, Method and Constructor objects, too. Make the
19090         returned array an Attribute[] one, not object[]. Added
19091         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
19092         custom attribute constructor.
19093
19094 2002-02-20  Dick Porter  <dick@ximian.com>
19095
19096         * icall.c:
19097         * rawbuffer.c:
19098         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
19099         problem code out for now).
19100
19101 2002-02-19  Radek Doulik  <rodo@ximian.com>
19102
19103         * object.c (mono_ldstr): use hash table to avoid multiple swapping
19104
19105 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
19106
19107         * icall.c: register the GetCustomAttributes method.
19108         * object.c, object.h: add mono_string_new_len ().
19109         * reflection.h, reflection.c: added mono_runtime_invoke(),
19110         mono_install_runtime_invoke(). Added
19111         mono_reflection_get_custom_attrs () to load custom attributes and
19112         create the attribute objects.
19113
19114 2002-02-19  Dick Porter  <dick@ximian.com>
19115         * threads-dummy-types.c:
19116         * threads-dummy-types.h:
19117         * threads-dummy.c:
19118         * threads-dummy.h:
19119         * threads-pthread-types.c:
19120         * threads-pthread-types.h:
19121         * threads-pthread.c:
19122         * threads-pthread.h:  Deleted obsolete files
19123
19124 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
19125
19126         * class.c (mono_class_vtable): runtime init the class when we
19127         allocate static class data.
19128
19129         * icall.c (ves_icall_System_Array_SetValue): check for null values.
19130
19131         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
19132         and String - but we will need generic marshalling support in the
19133         future. 
19134         (mono_init): set the domain name in a ms compatible way
19135
19136         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
19137         String[].
19138
19139 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
19140
19141         * object.c (mono_array_clone): use alloca() instead of g_malloc  
19142         for sizes
19143
19144         * appdomain.c (mono_domain_unload): impl.
19145
19146 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19147
19148         * appdomain.c, object.c: fix intern pool implementation.
19149         * class.c: fix alignment code.
19150
19151 2002-02-16  Radek Doulik  <rodo@ximian.com>
19152
19153         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
19154         and s2 > s1, just copy lower bytes to be compatible with little
19155         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
19156         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
19157
19158         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
19159         force big_endian to be 1 for big endian machines 
19160         (ves_icall_iconv_new_decoder): ditto
19161
19162 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
19163
19164         * socket-io.c (convert_sockopt_level_and_name): If the system
19165         doesn't define SOL_IP or SOL_TCP, get them by hand using
19166         getprotobyname() and caching the values (because this could be a
19167         slow operation).
19168         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
19169         Use the appropriate struct when the system does support it. Ie,
19170         not all systems have struct ip_mreqn so use struct ip_mreq when
19171         appropriate.
19172
19173 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
19174
19175         * reflection.c: handle finally clauses.
19176
19177 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
19178
19179         * socket-io.c: use g_snprintf() instead of snprintf.
19180
19181 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
19182
19183         * reflection.c (mono_param_get_objects): Cast second argument to
19184         mono_method_get_param_names to a const char** to silence the
19185         compiler warning.
19186
19187         * appdomain.c (mono_domain_assembly_open): Put parens around the
19188         truth statement in the for-loop.
19189
19190         * unicode.c (iconv_convert): Got rid of a compiler warning about
19191         int i being unused when the system has a new iconv.
19192         (iconv_get_length): Same.
19193
19194         * image.c (load_class_names): Cast the second argument to
19195         g_hash_table_insert() to char* to hush compiler warnings about the
19196         arg being a const.
19197         (mono_image_open): Same here.
19198
19199         * socket-io.c: Don't conditionally include sys/filio.h or
19200         sys/sockio.h here anymore since we now get them from
19201         io-layer/io-layer.h
19202         (inet_pton): If the system doesn't support inet_aton, implement
19203         using inet_addr and also #define INADDR_NONE if it isn't defined
19204         by the system.
19205
19206 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
19207
19208         * metadata.c, metadata.h: added function to get packing and size info
19209         of a typedef.
19210         * reflection.h, reflection.c: handle field RVA data. Save info about
19211         the table layout if needed. Assign typedef indexes to all the types
19212         before dumping the info about them to avoid forward reference problems.
19213
19214 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
19215
19216         * socket-io.c (convert_sockopt_level_and_name): ifdef
19217         SO_ACCEPTCONN because it is not defined on my system (old debian)
19218
19219 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19220
19221         * opcode.c: use stddef.h to get NULL.
19222
19223 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
19224
19225         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
19226         for FIONBIO, FIONREAD and SIOCATMARK.
19227         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
19228         define INADDR_NONE and besides, inet_addr() is deprecated and
19229         should not be used. Use inet_pton() instead - it also has the
19230         added bonus that it can easily handle IPv6 addresses as well.
19231         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
19232
19233 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
19234
19235         * decimal.c: remove _MSC_VER conditional.
19236
19237 2002-02-13  Dick Porter  <dick@ximian.com>
19238
19239         * socket-io.c: 
19240         * icall.c: Internal calls for Blocking, Select, Shutdown,
19241         GetSocketOption and SetSocketOption
19242
19243 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19244
19245         * assembly.cs: better resolver: use it instead of some kludgy
19246         code.
19247
19248 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
19249
19250         * reflection.c: the best way to speed-up the compiler is to avoid
19251         infinite loops.
19252
19253 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
19254
19255         * class.c (mono_class_vtable): changed the object layout
19256         (obj->vtable->class). 
19257         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
19258
19259 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19260
19261         * assembly.c: look for assemblies in the assembly dir, too.
19262
19263 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19264
19265         * class.c: fix thinko in mono_class_from_type().
19266
19267 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19268
19269         * exception.h, exception.c: added TypeLoadException.
19270         * object.h, object.c: added mono_array_clone ().
19271         * icall.c: handle throwOnError in AssemblyGetType().
19272         Added Array.Clone().
19273         * opcode.h, opcode.c: use a single value for the opcode val.
19274         Compile fix for non-gcc compilers.
19275
19276 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
19277
19278         * opcodes.c, opcodes.h: export interesting info about opcodes.
19279
19280 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
19281
19282         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
19283         icalls. 
19284
19285         * class.c (class_compute_field_layout): set element_class for enums
19286         (mono_class_create_from_typedef): set element_class for normal classes
19287
19288         * icall.c (ves_icall_System_Enum_get_value): impl.
19289
19290         * class.c (mono_class_create_from_typedef): do not set valuetype
19291         flag for System.ValueType and System.Enum
19292
19293 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
19294
19295         * unicode.c (iconv_convert): fix big endian problem.
19296
19297 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19298
19299         * class.c: add asserts if we are ever going to scribble over memory.
19300         * socket-io.c: not all systems have AF_IRDA defined.
19301
19302 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
19303
19304         * class.c (class_compute_field_layout): do not consider static
19305         fields to compute alignment
19306
19307 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
19308
19309         * appdomain.c (mono_appdomain_get): impl.
19310         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
19311
19312 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19313
19314         * icall.c: ignore "file://" prefix when loading an assembly.
19315
19316 2002-01-23  Dick Porter  <dick@ximian.com>
19317
19318         * socket-io.c:
19319         * icall.c:
19320         * Makefile.am: Added socket support
19321
19322 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
19323
19324         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
19325         code back.  This should return the assemblies that are loaded by
19326         the runtime on behalf of an application domain. 
19327
19328         The current implementation is still broken, it just returns every
19329         assembly loaded, but until we get real applications domain this
19330         will do.
19331
19332 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
19333
19334         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
19335         AppDomain object.
19336
19337 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
19338
19339         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
19340         the mono_class_from_name lookup.
19341         (ves_icall_get_parameter_info): ditto.
19342         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
19343         method.
19344         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
19345
19346 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
19347
19348         * class.c: load also nested classes on class init.
19349         System.ValueType instance methods gets passed boxed
19350         values, unless methods in derived classed that get a pointer to the
19351         data.
19352         * icall.c: use better name parsing code in GetType().
19353         * image.c, image.h: add mono_image_loaded ().
19354         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
19355         * reflection.c, reflection.h: added mono_reflection_parse_type().
19356
19357 2002-01-22  Veronica De Santis <veron78@interfree.it>
19358
19359         * icall.c : Added mapping of internal calls for Manual and Auto reset events
19360         * threads.c : Added the implementation of internal calls for events
19361         * threads.h : Added prototypes of internal calls for events
19362         
19363 2002-01-21  Radek Doulik  <rodo@ximian.com>
19364
19365         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
19366
19367 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
19368
19369         * class.c (mono_class_init): set min_align to 1 (instead of 0)
19370         (mono_class_value_size): use min_align
19371
19372 2002-01-20  Dick Porter  <dick@ximian.com>
19373
19374         * threads.h:
19375         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
19376         so it compiles on w32.
19377
19378 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
19379
19380         * metadata.c (mono_type_stack_size): impl.
19381
19382         * class.c (mono_class_get_field): impl. memberref token
19383
19384 2002-01-16 Veronica De Santis <veron78@@interfree.it>
19385
19386         * icall.h : Added the internal calls mapping for CreateMutex_internal
19387                     and ReleaseMutex_internal.
19388         * threads.h : Added the prototype of mutexes internal calls.
19389         * threads.c : Added the implementations of mutexes internal calls.
19390
19391 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
19392
19393         * metaparse.h: removed unused file.
19394         * reflection.c, reflection.h: added stream_data_align () function 
19395         to align data in streams and keep stream aligned. Add support for
19396         exception support in method headers.
19397
19398 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
19399
19400         * unicode.c: make iconv_convert () return the number of bytess written
19401         in the output buffer.
19402
19403 2002-01-15  Dick Porter  <dick@ximian.com>
19404         * threads.c: Make the runtime's idea of infinite timeouts coincide
19405         with the class library's
19406
19407         Fix a particularly egregious bug in mono_thread_cleanup(). That
19408         code was so utterly bogus it must have been written on a Monday.
19409
19410 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19411
19412         * reflection.h: add subtypes field to TypeBuilder.
19413         * reflection.c: encode constants for literal fields.
19414         Handle subtypes. Fix user string token (and add a zero byte)
19415         at the end.
19416         
19417 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
19418
19419         * class.c (mono_class_init): bug fix: assign slot numbers for
19420         abstract methods.
19421
19422 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19423
19424         * reflection.c: don't try to output a code RVA for abstract methods.
19425         Small fixes for method header format. Output parameter info to the
19426         ParamDef table. Save method overriding info to MethodImpl table.
19427         Fix property support. Allow typedef.extends to be a type in the
19428         building assembly.
19429         * verify.c: fix off-by-one error.
19430
19431 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
19432
19433         * class.c: fix mono_class_from_mono_type () for szarray types.
19434         Remove unused cache check in mono_class_from_type_spec().
19435         * icall.c: *type_from_name () functions handle simple arrays and byref.
19436         * reflection.c: handle byref and szarray types. Handle methods without
19437         body (gets P/Invoke compilation working). Handle types and fields in
19438         get_token ().
19439         * reflection.h: add rank to MonoTypeInfo.
19440
19441 2002-01-10  Dick Porter  <dick@ximian.com>
19442
19443         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
19444         internal calls
19445
19446 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
19447
19448         * icall.c: initialize class in type_from_handle ().
19449         Loop also in parent classes for get_method ().
19450         * reflection.c: properly encode class and valuetype types.
19451         Start on encoding TypeBuilder types. Handle fieldrefs.
19452         Use correct length when registering a user string.
19453         Handle ConstructorBuilder and MonoMethod in get_token ().
19454         Make mono_type_get_object () aware of cached types.
19455         * object.c: back out change to mono_string_new ().
19456
19457 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
19458         * object.c: mono_string_new should return a NULL when the string 
19459         passed in is NULL -- not try to deference it.
19460         
19461 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
19462
19463         * icall.c: hack to make IsSubType work for TypeBuilders.
19464         * reflection.c: emit constructors before methods.
19465         Retrieve param names in mono_param_get_objects().
19466
19467 2002/01/05  Nick Drochak  <ndrochak@gol.com>
19468
19469         * Makefile.am: fix list of headers and sources so automake 1.5
19470         doesn't complain. Removed \# at end of list.
19471
19472 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19473
19474         * reflection.c: get token for a method ref. Set return type of
19475         constructor to void.
19476         * loader.c: debug message.
19477         * class.c: typo fix.
19478
19479 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
19480
19481         * icall.c: fix array init with rank > 1. FindMembers
19482         loops in parent class as well.
19483         * image.c: do not insert nested types in name cache.
19484         * reflection.c: warning fix.
19485         * reflection.h: add override method (for interface impl).
19486
19487 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
19488
19489         * metadata.c: fix customattr decoding.
19490
19491 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
19492
19493         * rawbuffer.cs: Added native Win32 implementation, avoids using
19494         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
19495
19496 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
19497
19498         * class.c: make the low-level routines handle the cache.
19499
19500 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
19501
19502         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
19503
19504 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
19505
19506         * class.c: fix mono_array_element_size() for objects.
19507         * class.h, class.c: add properties to MonoClass and load them
19508         at init time.
19509         * icall.c: check with isinst() when assigning a value to an array
19510         instead of requiring the classes to match exactly.
19511         Implemented icall for System.Type::GetType().
19512         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
19513         enums. Handle bindingflags when looking for methods and fields.
19514         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
19515         and mono_metadata_methods_from_property().
19516         * reflection.h, reflection.c: added structures for propreties,
19517         parameters and enums. Implemented mono_property_get_object() and
19518         mono_param_get_objects().
19519
19520 2001-12-18  Dick Porter  <dick@ximian.com>
19521
19522         * file-io.c: Use mono_string_to_utf16() instead of
19523         mono_string_chars()
19524
19525         * object.c: Added mono_string_to_utf16(), which copies the non
19526         NULL-terminated MonoString into a new double-null-terminated
19527         buffer.
19528
19529 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
19530
19531         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
19532
19533 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
19534
19535         * file-io.c: raise exceptions if handle is invalid.
19536
19537 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
19538
19539         * assembly.c: yet another check for mscorlib.
19540         * class.c, class.h: load nesting info for classes.
19541         * icall.c: many new functions to support the Reflection classes.
19542         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
19543         * reflection.h, reflection.c: mono_image_create_token(),
19544         mono_assembly_get_object(), mono_type_get_object(),
19545         mono_method_get_object(), mono_field_get_object(): methods to return
19546         objects that parallel the C representation of assemblies, types,
19547         methods, fields.
19548
19549 2001-12-11  Dick Porter  <dick@ximian.com>
19550
19551         * icall.c:
19552         * file-io.c: Internal calls for file IO.
19553
19554 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
19555
19556         * tabledefs.h: missing FileAttributes.
19557         * verify.h, verify.c: use is_valid_string () to simplify and check for
19558         valid strings more correctly. Fix warnings and speeling.
19559         Check more tables: Filed, File, ModuleRef, StandAloneSig.
19560         Check code: branches, maxstack, method calls.
19561
19562 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
19563
19564         * object.c (mono_object_allocate): removed static, so that the jit
19565         can allocate value types.
19566
19567         * icall.c (ves_icall_System_DateTime_GetNow): impl.
19568
19569 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19570
19571         * class.c: init enum types right away and register the
19572         token->MonoClass map in mono_class_create_from_typedef ().
19573         * verify.h, verify.c: first cut of the verifier.
19574         * pedump.c: add --verify switch to verify metadata tables.
19575         * tabledefs.h: add some missing enums.
19576
19577 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
19578
19579         * class.c (mono_install_runtime_class_init): impl.
19580         (mono_class_init): renamed mono_class_metadata_init to
19581         mono_class_init, also removed the metadata_inited flag
19582
19583         * object.c (mono_object_isinst): use faster algorithm
19584
19585 2001-11-30  Radek Doulik  <rodo@ximian.com>
19586
19587         * mono-endian.h: reverted last change
19588         added function prototypes
19589
19590         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
19591         add mono-endian.c back
19592
19593         * mono-endian.c: returned back, as Paolo pointed out, it's needed
19594         for unaligned access, I've mistaked it with endianess. I am
19595         sorry.
19596         (mono_read16): fix reverted endianess
19597         (mono_read64): ditto
19598         (mono_read32): ditto
19599
19600 2001-11-30  Dick Porter  <dick@ximian.com>
19601
19602         * exception.c: Implement mono_exception_from_name()
19603
19604 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
19605
19606         * metadata.h, metadata.c: remove params_size and locals_size and their
19607         calculation from the metadata code: they are only usefult to the
19608         interp.
19609
19610 2001-11-29  Radek Doulik  <rodo@ximian.com>
19611
19612         * object.c (mono_ldstr): swap bytes here, it's probably not the
19613         best place, but works for me now, I'll redo it once I know mono
19614         better, also note that I add PROT_WRITE and don't reset back, also
19615         note that it's only affects big endians, so x86 should be OK
19616
19617         * mono-endian.h (read16): use just glib macros for both endians
19618
19619         * mono-endian.c: removed as glib macros are used in in
19620         mono-endian.h so we don't need to care about endianess for read
19621         macros as glib does that for us already
19622
19623 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
19624
19625         * class.h, class.h: take minimum alignment into consideration so
19626         that the fields of a class remain aligned also when in an array.
19627
19628 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19629
19630         * loader.h, loader.c: add mono_method_get_param_names().
19631         * class.c: 0-init class fields.
19632
19633 2001-11-26  Dick Porter  <dick@ximian.com>
19634
19635         * icall.c:
19636         * threads-types.h:
19637         * threads.c: New file that handles System.Threading on all platforms
19638
19639         * object.c: 
19640         * object.h: Remove the synchronisation struct from MonoObject,
19641         replace it with a pointer that gets initialised on demand
19642
19643         * Makefile.am: Replace all the system-specific threading code with
19644         a single file that uses the new wrapper library
19645
19646 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
19647
19648         * class.c, class.h: add mono_install_trampoline() so that the runtime
19649         can register a function to create a trampoline: removes the ugly
19650         requirement that a runtime needed to export arch_create_jit_trampoline.
19651         * object.h, object.c: added mono_install_handler() so that the runtime
19652         can install an handler for exceptions generated in C code (with
19653         mono_raise_exception()). Added C struct for System.Delegate.
19654         * pedump.c: removed arch_create_jit_trampoline.
19655         * reflection.c: some cleanups to allow registering user strings and
19656         later getting a token for methodrefs and fieldrefs before the assembly
19657         is built.
19658         * row-indexes.h: updates and fixes from the new ECMA specs.
19659
19660 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
19661
19662         * class.h, class.c: add enum_basetype field to MonoClass.
19663         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
19664         to get index in the constant table reated to a field, param or
19665         property.
19666         * reflection.h, reflection.c: handle constructors. Set public-key and
19667         version number of the built assembly to 0.
19668         * row-indexes.h: update from new ECMA spec.
19669
19670 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
19671
19672         * class.h, class.c: add a max_interface_id to MonoClass.
19673         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
19674         since it's used to do that. Added mono_type_type_from_obj().
19675         Make GetType() return NULL instead of segfaulting if the type was not
19676         found. Handle simple arrays in assQualifiedName.
19677         * object.h: add a struct to represent an Exception.
19678         * reflection.c: output call convention in method signature.
19679         Add code to support P/Invoke methods and fixed offsets for fields.
19680
19681 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
19682
19683         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
19684         the value.
19685         * icall.c: use mono_array_addr instead of array->vector: fixes the
19686         reflection image writing.
19687         * reflection.c: init call convention byte to 0 in method signature.
19688         Encode the property signature. Don't output property-related methods
19689         twice. Really process the properties for a type (don't cast a field to
19690         a property, my mom always told me that).
19691         Fix 64 bit issues in pointer alignment in a different and more
19692         readable way.
19693
19694 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
19695
19696         * loader.h: Removed type class from MonoDefaults, added monotype
19697
19698         * loader.c: Loaded MonoType, removed loading of Type
19699
19700         * icall.c (my_mono_new_object): Now returns a System.MonoType,
19701         and fills in System.Type._impl with a RuntimeTypeHandle rather
19702         than the actual MonoClass *
19703
19704         (ves_icall_type_from_handle): change from type_class to
19705         monotype_class
19706
19707         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
19708         implemented
19709
19710         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
19711         implemented
19712
19713         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
19714
19715         (ves_icall_System_Reflection_Assembly_GetType): implemented
19716
19717         (ves_icall_System_MonoType_assQualifiedName): implemented
19718
19719         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
19720
19721 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
19722
19723         * assembly.c (mono_assembly_open): Implement a cache for the
19724         assemblies. 
19725
19726         (mono_assembly_close): only destroy the assembly when the last
19727         reference is gone.
19728         
19729 2001-11-09  Dick Porter  <dick@ximian.com>
19730
19731         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
19732
19733 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
19734
19735         * class.c (mono_class_metadata_init): bug fix: compute the right slot
19736
19737 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
19738
19739         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
19740         from Martin Weindel.
19741         * object.h: add mono_string_chars ().
19742
19743 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
19744
19745         * reflection.c (build_compressed_metadata): Eliminates warnings
19746         and uses 64-bit clean code.
19747
19748         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
19749         (mono_type_equal): Change signature to eliminate warnings.
19750
19751 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19752
19753         * icall.c, loader.c: remove the internalcall array constructors.
19754         Changes to match the new MonoArray structure.
19755         * object.h, object.c: an array object doesn't allocate an extra
19756         vector. Add mono_array_new_full () to create jagged arrays easily.
19757
19758 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
19759
19760         * metadata.h, metadata.c: add mono_metadata_field_info () to
19761         retreive all the info about a field from vairous tables.
19762         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
19763         * class.h, class.c: augment MonoClassField with more info.
19764         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
19765         policy and load a field's RVA if needed.
19766
19767 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
19768
19769         * class.c (mono_class_metadata_init): create a trampoline for all
19770         virtual functions instead of actually compiling them.
19771
19772 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
19773
19774         * class.h, class.c: include name in MonoClassField.
19775         * class.c: fix fundamental type of System.Object and System.String.
19776         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
19777         tokens in ldtoken.
19778         * icall.c: remove internalcalls for the Reflection stuff that is now
19779         done in C# code.
19780         * loader.c: mono_field_from_memberref () implementation.
19781         * mono-endian.c: thinko (s/struct/union/g).
19782         * object.c, object.h: make the mono_string_* prototypes actually use
19783         MonoString instead of MonoObject.
19784         * reflection.c, reflection.h: updates for changes in the reflection
19785         code in corlib: we use C structures that map to the actual C# classes.
19786         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
19787         fat method header if needed and use the info from the ILGenerator for
19788         methods. Handle fields in types. Misc fixes.
19789
19790 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
19791
19792         * class.c (mono_class_metadata_init): bug fix: always allocate
19793         space for static class data
19794
19795 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
19796
19797         * class.c (mono_compute_relative_numbering): use relative
19798         numbering to support fast runtime type checks.
19799
19800 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
19801
19802         * class.c (mono_class_create_from_typeref): added debugging output
19803         to print class name when MonoDummy is returned instead of real class
19804
19805 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
19806
19807         * class.c (mono_class_metadata_init): interface offset table now
19808         contains pointers into the vtable - this is more efficient for the jit
19809
19810 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
19811
19812         * class.c (mono_class_metadata_init): use a temporary vtable (the
19813         old algorithm only worked for the interpreter, but not for the jit)
19814
19815 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
19816
19817         * loader.c (method_from_memberref): use mono_class_get to get the
19818         class of an array instead of using System.Array directly.
19819         (mono_get_method): also add MEMBERREF methods to the method cache
19820         which usefull for arrays.
19821
19822 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
19823
19824         * pedump.c (arch_compile_method): added to compute vtable entry
19825
19826         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
19827         number of interfaces.
19828         
19829         * class.h: merged MonoArrayClass into MonoClass
19830
19831         * class.c (mono_class_create_from_typedef): compute the vtable size and
19832         allocate space to include the vtable inside MonoClass
19833         (mono_class_metadata_init): initialize the vtable
19834
19835 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
19836
19837         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
19838         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
19839         * image.c: endian fixes by Laurent Rioux.
19840         * object.h, object.c: rename MonoStringObject to MonoString and
19841         MonoArrayObject to MonoArray. Change some function names to conform to
19842         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
19843         guint16* as first argument, so don't use char*.
19844         Provide macros to do the interesting things on arrays in a portable way.
19845         * threads-pthread.c: updates for the API changes and #include <sched.h>
19846         (required for sched_yield()).
19847         * icall.c: updates for the API changes above.
19848         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
19849         platforms that need them.
19850
19851 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
19852
19853         * class.c: set the correct type for all the fundamental
19854         type when loading the class.
19855
19856 2001-10-05  Dick Porter  <dick@ximian.com>
19857
19858         * threads-pthread.c (pthread_mutex_timedlock): Simple
19859         compatibility version for C libraries that lack this call.
19860
19861 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
19862
19863         * class.c: MonoTypes stored in MonoClass are stored as
19864         fundamental MonoTypes when the class represents a
19865         fundamental type (System.Int32, ...).
19866         The TypeHandle return by ldtoken is a MonoType*.
19867         * icall.c: ves_icall_get_data_chunk () write out all the
19868         PE/COFF stuff. Implement ves_icall_define_method (),
19869         ves_icall_set_method_body (), ves_icall_type_from_handle ().
19870         * image.c: properly skip unknown streams.
19871         * loader.h, loader.c: add type_class to mono_defaults.
19872         * metadata.c, metadata.h: export compute_size () as
19873         mono_metadata_compute_size () with a better interface.
19874         Typo and C&P fixes.
19875         * pedump.c: don't try to print the entry point RVA if there is no entry point.
19876         * reflection.c, reflection.h: many cleanups, fixes, output method
19877         signatures and headers, typedef and typeref info, compress the metadata
19878         tables, output all the heap streams, cli header etc.
19879         * row-indexes.h: typo fixes.
19880
19881 2001-10-04  Dick Porter  <dick@ximian.com>
19882
19883         * object.h: Add a synchronisation mutex struct to MonoObject
19884
19885         * object.c (mono_new_object): Initialise the object
19886         synchronisation mutexes
19887
19888         * icall.c: System.Threading.Monitor internal calls
19889         
19890         * threads-pthread.h:
19891         * threads-pthread.c: System.Threading.Monitor internal calls
19892
19893         * threads-types.h: New file, includes the system-specific thread
19894         structures
19895         
19896         * threads-pthread-types.h:
19897         * threads-pthread-types.c: New files, handle pthread-specific
19898         synchronisation types
19899
19900         * threads-dummy-types.h: 
19901         * threads-dummy-types.c: New files of dummy support for
19902         thread-specific types
19903
19904         * metadata.c:
19905         * image.c:
19906         * pedump.c: include mono-endian.h not endian.h
19907         
19908         * Makefile.am: More threads files.
19909         Name mono-endian.h not endian.h
19910
19911 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
19912
19913         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
19914         stuff and implement a few more bits.
19915         * icall.c: a field needs to be dereferenced twice. Do not use the same
19916         name for two variables in the same scope.
19917         * image.c, image.h: cleanups.
19918
19919 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
19920
19921         * class.c (mono_class_metadata_init): bug fix: compute the right size
19922
19923 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
19924
19925         * icall.c: implemented some of the Reflection internalcalls.
19926         * image.c, image.h: start writing out the PE/COFF image.
19927         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
19928         that does the reverse than decode_blob_size ().
19929         * object.c: use mono_metadata_encode_value (). Move here
19930         temporary implementation of mono_string_to_utf8 ().
19931         * rawbuffer.c: make malloc_map static.
19932
19933 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
19934
19935         * metadata.c: fix type comparison for arrays.
19936         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
19937         Added a couple of new classes to monodefaults.
19938         * icall.c: added a couple of Reflection-related internalcalls.
19939         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
19940         Added a byval_arg MonoType to MonoClass.
19941
19942 2001-09-28  Dick Porter  <dick@ximian.com>
19943
19944         * icall.c:
19945         * threads-pthread.h: 
19946         * threads-pthread.c: Implemented internal calls for
19947         LocalDataStoreSlot operations.  Applied mutexes around all shared
19948         data.  Reworked the thread creation and Start() operations to
19949         avoid a race condition.
19950         
19951         * threads-dummy.h:
19952         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
19953
19954 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
19955
19956         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
19957
19958 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
19959
19960         * class.c, loader.c: warn and return NULL instead of erroring out.
19961         * icall.c: added System.AppDomain::getCurDomain().
19962         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
19963
19964 2001-09-25  Dick Porter  <dick@ximian.com>
19965
19966         * threads-pthread.h:
19967         * threads-pthread.c: Implemented timed thread joining and added
19968         System.Threading.Thread::Join_internal internal call
19969
19970         * icall.c: Added System.Threading.Thread::Join_internal internal call
19971
19972         * threads-dummy.h:
19973         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
19974
19975 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
19976
19977         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
19978         mono_string_intern () to implement the semantics of the ldstr opcode
19979         and the interning of System.Strings.
19980         * icall.c: provide hooks to make String::IsIntern and String::Intern
19981         internalcalls.
19982
19983 2001-09-23  Dick Porter  <dick@ximian.com>
19984
19985         * threads-dummy.c: 
19986         * threads-dummy.h: New files of dummy threading routines
19987
19988         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
19989         support code based on system specifics
19990
19991         Rename PTHREAD_LIBS to THREAD_LIBS
19992         
19993 2001-09-23  Dick Porter  <dick@ximian.com>
19994
19995         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
19996         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
19997         internal calls.
19998         (mono_thread_init): Set up a Thread object instance to return when
19999         the main thread calls Thread.CurrentThread
20000         (mono_thread_cleanup): Wait for all subthreads to exit
20001
20002         * icall.c: New internal calls for System.Threading.Thread::Sleep
20003         (including Schedule) and CurrentThread
20004
20005         * threads.h: New file, to insulate thread-specific stuff from the
20006         rest of the code
20007
20008 2001-09-21  Dick Porter  <dick@ximian.com>
20009
20010         * threads-pthread.h: 
20011         * threads-pthread.c: New file, for handling pthreads-style
20012         threading support.  Start() now starts a new thread and executes
20013         the ThreadStart delegate instance.
20014
20015         * icall.c: Added the internalcall for
20016         System.Threading.Thread::Start_internal
20017
20018         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
20019
20020 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
20021
20022         * loader.c: work around the different signatures for delegates
20023         constructors csc generates in compiled code vs the ones compiled in mscorlib.
20024
20025 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20026
20027         * class.h, class.c: add mono_class_get_field_from_name ().
20028         * *: Fix C comments and other ANSI C issues.
20029
20030 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
20031
20032         * endian.h, assembly.c: fix some endianness issues.
20033
20034 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
20035
20036         * loader.h, load.c: add delegate_class to mono_defaults.
20037         Handle runtime provided methods in mono_get_method ().
20038
20039 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
20040
20041         * loader.c (mono_get_method): use pinvoke for internal call
20042
20043         * icall.c: use pinvoke for internal call
20044
20045         * loader.c (method_from_memberref): set the method name
20046
20047 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
20048
20049         * metadata.c: help the compiler generate better code for
20050         mono_class_from_mono_type ().
20051
20052 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
20053
20054         * class.c (mono_class_metadata_init): delayed computing of the
20055         class size to mono_class_metadata_init ()
20056
20057 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
20058
20059         * class.c, class.h: add an interfaces member to MonoClass.
20060         * image.c, image.h: add assembly_name field to MonoImage
20061         from the assembly table.
20062         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
20063
20064 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
20065
20066         * class.c: Handle Array in mono_class_from_mono_type ().
20067         * metadata.c, pedump.c: some endian fixes.
20068
20069 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
20070
20071         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
20072         * metadata.c: fix small problem introduced with the latest commit.
20073
20074 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
20075
20076         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
20077         We don't need a MonoMetadata pointer anymore to compare signatures in
20078         mono_metadata_signature_equal (), update callers.
20079         Reduced memory usage an number of allocations for MonoMethodHeader and
20080         MonoMethodSignature.
20081
20082 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
20083
20084         * metadata.c: added compare for szarray.
20085
20086 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
20087
20088         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
20089         and add a couple more types to it and mono_defaults. Give an hint on
20090         classes that need implementing in our corlib and are referenced
20091         in mscorlib.
20092
20093 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
20094
20095         * class.h, class.c: keep track if a class is also an Enum.
20096         * loader.c: Implement a couple more types for use in libffi
20097         marshalling. Gives better diagnostics when failing to dlopen
20098         a library. Set method->klass for P/Invoke methods, too.
20099
20100 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
20101
20102         * class.c, class.h: add a MonoType this_arg to MonoClass that
20103         represents a pointer to an object of the class' type that
20104         can be used by the interpreter and later the type cache.
20105         Add best guess alignment info for valuetype objects.
20106
20107 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
20108
20109         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
20110         into MonoType: one less level of indirection and allocation and
20111         simplifies quite a bit of code. Added cache for MonoTypes that are
20112         used frequently, so that we don't need to allocate them all the time.
20113
20114 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
20115
20116         * class.c (mono_class_create_from_typedef): System.Enum is also a
20117         value type, although it does not derive from System.ValueType
20118         (maybe a bug in the ms compiler?)
20119
20120         * metadata.c (mono_type_size): return the right size for value types
20121
20122         * loader.c (mono_get_method): only initialize method header if not abstract
20123
20124         * class.c (mono_class_from_mono_type): use mono_default values. 
20125
20126 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
20127
20128         * *: use MonoClass pointers instead of <type_tokens>
20129         
20130         * class.h: new flag: metadata_inited.
20131
20132         * class.c (mono_class_metadata_init): impl.
20133         (mono_class_instance_size): impl.
20134         (mono_class_data_size): impl.
20135
20136 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20137
20138         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
20139         MonoClass now has the name and name_space fields. 
20140         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
20141         mono_get_method () takes and optional MonoClass as argument.
20142         Removed mono_typedef_from_name() and added mono_class_token_from_name()
20143         instead that takes advantage of a map from class names to typedef
20144         tokens in MonoImage.
20145
20146 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
20147
20148         * metadata.c: zero is not a valid alignment boundary.
20149         Merge MONO_TYPE_VOID in default decoding code.
20150
20151 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
20152
20153         * image.h: merged MonoMetadata into MonoImage
20154
20155         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
20156         identify the type of elements.
20157
20158 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
20159
20160         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
20161         * cil-coff.h: split MonoMSDOSHeader and add size info.
20162         * image.c: add some consistency checks.
20163         * metadata.c: fix row size computation: one programmer
20164         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
20165         add explanation for the locator routine.
20166         Fix decoding of size in method header.
20167         
20168 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
20169
20170         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
20171         (g_concat_dir_and_file): Bring g_concat_dir_and_file
20172         function from gnome-libs.  This uses the right path separator
20173         based on the OS, and also works around a bug in some systems where
20174         a double slash is not allowed. 
20175         (default_assembly_name_resolver): Use g_concat_dir_and_file
20176         (mono_assembly_open): ditto.
20177
20178 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
20179
20180         * metadata.c (mono_metadata_signature_equal): impl.
20181
20182         * *: void is now a realy MonoType (instead of using NULL)
20183         
20184         * metadata.c (do_mono_metadata_parse_type): use
20185         mono_metadata_parse_type to parse void value.
20186
20187 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
20188
20189         * metadata.c, metadata.h: in the signature and method header store
20190         only the space required for holding the loca vars and incoming arguments.
20191
20192 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
20193
20194         * metadata.c (do_mono_metadata_parse_type): treat void like any
20195         other type (instead of assigning NULL);
20196
20197 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
20198
20199         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
20200
20201 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
20202
20203         * image.c (do_mono_image_open): added a cache for arrays.
20204
20205 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
20206
20207         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
20208         decode a single column from a row in a metadata table and changes
20209         to take advantage of it in the typedef locator (gives a nice speed up).
20210         Store offset info for function params.
20211
20212 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
20213
20214         * image.h (MONO_IMAGE_IS_CORLIB): removed 
20215
20216 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
20217
20218         * assembly.c: how could mono_assembly_close () had ever worked?
20219         * metadata.c, metadata.h: provide offset info for local vars.
20220         Implement mono_type_size () to take care of alignment as well
20221         as size (it was mono_field_type_size in cli/class.c before).
20222
20223 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
20224
20225         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
20226
20227         * assembly.h (CORLIB_NAME): set to corlib.dll
20228
20229         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
20230
20231 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
20232
20233         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
20234         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
20235         tokentype.h: massive namespace cleanup.
20236
20237 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
20238
20239         * metadata.h, metadata.c: decode exception clauses when parsing method header.
20240
20241 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
20242
20243         * metadata.c (mono_metadata_free_type): added check for type !=
20244         NULL (void) before calling mono_metadata_free_type()
20245
20246 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
20247
20248         * metadata.h, row_indexes.h: added header with enumerations to use
20249         to index in the columns from tables in metadata and to decode coded
20250         tokens: we should start using this instead of embedding magic numbers
20251         all over the code.
20252
20253 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
20254
20255         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
20256         Move metadata_t info from cli_image_info_t to MonoImage, where
20257         it's easily accessible. Changed all the uses accordingly.
20258         Added the method and class caches to MonoImage.
20259         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
20260         and mono_metadata_decode_value () signature to be more consistent
20261         with the other parse functions (and simplify code). Taken advantage
20262         of zero-length array allocation with GCC. Removed reduntant (and
20263         wrong) MonoFieldType struct and use MonoParam instead. Changed
20264         mono_metadata_parse_field_type () to use common code for parsing.
20265         Added mono_metadata_typedef_from_field () and
20266         mono_metadata_typedef_from_method () to lookup a typedef index from a
20267         field or method token.
20268         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
20269
20270 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
20271
20272         * metadata.c (mono_metadata_parse_field_type): Implement. 
20273         (do_mono_metadata_parse_type): Split engine from
20274         mono_metadata_parse_type, so that we can create smaller structures
20275         for things that just have one pointer to the MonoType (look at
20276         the MonoFieldType)
20277
20278 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
20279
20280         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
20281         as Jan Gray found out, it is incorrect. 
20282
20283 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
20284
20285         * assembly.c: Implement asssembly loading.  This loads an image
20286         and loads all the referenced assemblies.  Come to think of it, we
20287         could always do lazy loading of the assemblies. 
20288
20289         * image.c (mono_image_open): Keep loaded images in a hashtable.
20290
20291         * image.h (MonoImage): Add reference count.
20292
20293 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
20294
20295         * assembly.c (mono_assembly_open): Keep track of the file name in
20296         case the assembly has no ASSEMBLY table.
20297
20298         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
20299         from get.c here.
20300
20301 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
20302
20303         * metadata.c, metadata.h: decode local vars in method header
20304         parse function. Change callers accordingly.
20305
20306 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
20307
20308         * metadata.h, cil-coff.h: protect against multiple inclusion.
20309         Added some new structures to hold information decoded from metadata:
20310         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
20311         and relevant decoding/free functions.
20312         * metadata.c: implement decoding functions. Add warning for out of bounds
20313         index in mono_metadata_locate(). Implement mono_get_method () to retreive
20314         all the info about a method signature and invocation. Remove check on
20315         uninitialized local var in parse_mh() and fix memory leak.
20316
20317 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
20318
20319         * metadata.h: More macros.
20320
20321         * tokentype.h: New file.
20322
20323 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
20324
20325         * assembly.c: added a consistency check and initialize
20326         some structures with g_new0().
20327         * metadata.c: fixed a couple more bugs in table size computation
20328         and add other checks for out-of bound access to metadata.
20329
20330 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
20331
20332         * metatada.c: fix bugs computing table sizes. Spew a
20333         warning when index in string heap is out of bounds.
20334
20335 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
20336
20337         * metadata.h: Add a couple of macros to manipulate tokens. 
20338
20339 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20340
20341         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
20342         cli_section_tables).
20343
20344 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
20345
20346         * metadata.c (mono_metadata_user_string): New function, provides
20347         access to the UserString heap. 
20348
20349 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
20350
20351         * metadata.c: Add inline documentation.
20352
20353 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
20354
20355         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
20356         files. 
20357
20358 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
20359
20360         * typeattr.h: New file, TypeAttribute flags. 
20361
20362 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
20363
20364         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
20365         mono_assembly_ensure_section): Section loading code.
20366         (load_section_tables): Load the sections.
20367
20368         * mono/metadata/metadata.c (mono_metadata_locate_token,
20369         mono_metadata_locate): Functions to locate the information
20370         definition given a token or a table and an index.
20371         (mono_metadata_compute_table_bases): New.
20372         (compute_size): New function to compute the sizes of the various
20373         tables.
20374
20375         * mono/metadata/metadata.h: Finish listing the different index
20376         types. 
20377
20378         * mono/metadata/pedump.c: Improve to dump new information.
20379
20380 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
20381
20382         * mono/metadata/metadata.c: Entered all the tables matching
20383         Beta2. 
20384
20385         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
20386
20387
20388