Ongoing work to avoid redundant data and simplify invariants.
[mono.git] / mono / metadata / ChangeLog
1 2007-01-05  Raja R Harinath  <rharinath@novell.com>
2
3         Ongoing work to avoid redundant data and simplify invariants.
4         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
5         'generic_class', and change type to a GenericInst.
6         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
7         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
8
9 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
10
11         * class.c : skip io-layer under PLATFORM_WIN32.
12
13 2007-01-03  Tor Lillqvist  <tml@novell.com>
14
15         Fix #80305: In a bundled executable, look in the bundled exe
16         assembly to determine the runtime version. Add the possibility to
17         bundle also the machine.config file.
18         
19         * assembly.c (mono_assembly_open_from_bundle): Make
20         non-static. Allow being called even if we have no bundled
21         assemblies, and return NULL right away in that case.
22
23         * domain-internals.h: Declare mono_assembly_open_from_bundle()
24         here.
25
26         * domain.c (app_config_parse): Take an assembly exe file name as
27         parameter instead of a config file name. Check for a bundled
28         config file for that assembly by calling
29         mono_config_string_for_assembly_file() (see below) before looking
30         for one in the file system.
31         (get_runtimes_from_exe): Corrsponding change to call of
32         app_config_parse().
33         (get_runtimes_from_exe): Check for bundled assembly exe file first
34         by calling mono_assembly_open_from_bundle(). If no bundled
35         assembly exe file is found, call mono_image_open() as before to
36         look it up in the file system.
37
38         * mono-config.c: Add variable bundled_machinec_onfig.
39         (mono_config_string_for_assembly_file): New function.
40         (mono_config_for_assembly): Move code snippet that looks for a
41         bundled assembly .config file into the above new function. Call
42         it.
43         (mono_register_machine_config, mono_get_machine_config): New
44         functions to set and retrieve
45
46         * assembly.h: Declare mono_register_machine_config().
47
48         * mono-config.h: Declare mono_get_machine_config() and
49         mono_config_string_for_assembly_file().
50
51         * icall.c: No declaration of environ necessary on Win32. It is
52         declared (as a macro expanding to a function call) in stdlib.h.
53         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
54         New internal mono function. Returns the value of
55         mono_get_machine_config() as a Mono string.
56
57         * icall-def.h: Add get_bundled_machine_config().
58
59 2007-01-04  Raja R Harinath  <rharinath@novell.com>
60
61         Remove redundant field
62         * class-internals.h (_MonoGenericContext.container): Remove field.
63         * loader.c (mono_method_get_signature_full): Don't parse a
64         "container" for a signature parse when the signature is inflated
65         immediately.
66         (method_from_methodspec): Likewise, for a generic_inst.
67         * class.c, metadata.c, reflection.c: Update to changes.
68
69 2006-01-04  Raja R Harinath  <rharinath@novell.com>
70
71         * class-internals.h (_MonoGenericClass): Rename 'context' field to
72         'cached_context', and change semantics -- it starts off NULL, and
73         is initialized on demand.
74         * class.c (mono_generic_class_get_context): New accessor to
75         replace 'context' field accesses.
76         (mono_class_get_context): New helper.
77         (*): Update to changes.
78         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
79
80 2007-01-03  Miguel de Icaza  <miguel@novell.com>
81
82         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
83         before the memcpy.   Fixes Marshal2 regression.
84
85 2007-01-02  Jb Evain  <jbevain@gmail.com>
86
87         * blob.h: add a MONO_TYPE_ENUM definition
88         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
89         fix the encoding of arrays of enums in custom attributes.
90
91         Fixes #79666.
92
93 2007-01-01  Miguel de Icaza  <miguel@novell.com>
94
95         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
96         string is null terminated, but only cut the string short if it
97         overflows the buffer.   
98         
99         (mono_string_to_byvalstr): Also fix this routine.   The code here
100         was not properly terminating a string (it was only terminated
101         because of the previous catch-all memset). 
102
103         I left the memset, because I do not know if applications expect
104         the runtime to clear this region. 
105
106         Fixes #79944.
107
108         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
109         Clear the error before returning to unmanaged code to prevent the
110         runtime from being confused later on (fixes  80420).
111         (ves_icall_type_from_name): Always call mono_loader_clear_error
112         after parsing a type that could have failed.
113         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
114
115         * loader.c (mono_loader_clear_error): Fix indentation.
116
117 2006-12-28  Martin Baulig  <martin@ximian.com>
118
119         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
120
121 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
122
123         * reflection.c: patch from Rolf Bjarne Kvinge to fix
124         getting a token for an EnumBuilder.
125
126 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
127
128         * reflection.c: be more careful in case resource generation
129         fails to create the data array.
130
131 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
132
133         * sgen-gc.c: write barrier for clone and fix unregister handles.
134
135 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
136
137         * reflection.c: some fixes needed in the generics code for the moving GC.
138
139 2006-12-22  Robert Jordan  <robertj@gmx.net>
140
141         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
142         account. Fixes bug #80299.
143
144 2006-12-21  Raja R Harinath  <rharinath@novell.com>
145
146         Fix WaitHandle usage in delegates.
147         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
148         * object.c (mono_wait_handle_new): Use the property set method to
149         initialize the handle.
150         (mono_wait_handle_get_handle): New.
151         * threadpool.c (mono_async_invoke): Use it.
152         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
153         Likewise.
154         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
155
156 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
157
158         * marshal.c (emit_marshal): Call emit_marshal_variant and
159         emit_marshal_com_interface when applicable.
160         (emit_marshal_variant, emit_marshal_com_interface): Add
161         methods for this case and remove if's from emit_marshal_object.
162         
163 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
164
165         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
166
167 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
168
169         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
170         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
171         and GlobalFree on Windows. Remove FIXME.
172
173 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
174
175         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
176         implementation for managed objects.
177
178 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
179
180         * object.c: implemented code to be used for checking
181         that no reference field overlaps with non-references.
182
183 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
184
185         * threadpool.c: fix queue code to be compatible with the
186         moving GC.
187
188 2006-12-18  Miguel de Icaza  <miguel@novell.com>
189
190         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
191         in structures by throwing ArgumentNullException.
192
193         (emit_marshal_safehandle): Also when they are null parameters.
194
195         (emit_marshal_safehandle): Add support for ref
196         SafeHandles parameters
197
198 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
199
200         * profiler.c: updated to use the mono-dl API instead of
201         gmodule.
202
203 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
204
205         * profiler.c: updated to use the mono-dl dynamic loading
206         API instead of gmodule.
207
208 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
209
210         * profiler.c: use readlink, older versions of glib don't have
211         g_file_read_link ().
212
213 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
214
215         * profiler.c: try to detect the path to mono if libc fails to provide
216         a useful name (bug #80286).
217
218 2006-12-16  Raja R Harinath  <rharinath@novell.com>
219
220         Fix #80242
221         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
222         instance, use the generic type definition instead.
223         (ves_icall_Type_GetNestedTypes): Likewise.
224         * class.c (mono_class_create_generic): Always set the
225         nested_classes of a generic instance to NULL, even if the generic
226         type definition has nested types.
227
228 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
229
230         * marshal.c (mono_string_from_bstr): Revert previous Windows change
231         and fix on Linux.
232         
233 2006-12-15  Miguel de Icaza  <miguel@novell.com>
234
235         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
236         my arguments were in the wrong order.   I also fixed the Windows
237         version which seems to have had the same issue.
238
239         (mono_free_bstr): On Unix, this is g_free.
240         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
241         conversions (for the tests in corlib to pass).
242
243 2006-12-14  Miguel de Icaza  <miguel@novell.com>
244
245         * marshal.c (emit_ptr_to_object_conv): For now, ignore
246         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
247         exception if a ref SafeHandle in a struct has changed).
248         
249         (emit_struct_conv): Do not perform layout checks for classes
250         derived from SafeHandle, as those are specially handled. 
251
252         (emit_object_to_ptr_conv): Add support for
253         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
254
255         (emit_marshal_safehandle): Implement conversion of return values
256         of safehandles (MARSHAL_ACTION_CONV_RESULT).
257         
258         * threads.c: WaitHandle now is compiled with two different handles
259         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
260         for 2.0.
261         
262         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
263         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
264         these routines to cope with both kinds of fields.
265
266 2006-12-12  Miguel de Icaza  <miguel@novell.com>
267
268         * metadata.c (mono_type_to_unmanaged): Handle the case where
269         type->data.klass is a SafeHandle, and in that case, return the
270         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
271         MONO_MARSHAL_CONV_SAFEHANDLE. 
272
273 2006-12-11  Miguel de Icaza  <miguel@novell.com>
274
275         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
276         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
277         calling emit_marshal_object.
278
279         (emit_marshal_safehandle): Implement marshalling of
280         SafeHandle parameters (no ref support yet).
281
282         (MarshalAction): Document the defines as I implement
283         them for SafeHandle.
284
285         (emit_marshal_object): indentation police.
286
287         * class-internals.h: Define MonoSafeHandle.
288         Add safehandle_class to MonoDefaults type.
289
290         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
291         list of classes to check for fields. 
292
293         * domain.c (mono_init_internal): Add SafeHandle to the list of
294         mono_defaults loaded.
295
296 2006-12-15  Raja R Harinath  <rharinath@novell.com>
297
298         Fix #80253
299         * reflection.c (mono_reflection_bind_generic_parameters): If the
300         generic type definition is a type builder, ensure that it is fully
301         initialized before instantiating it.  Kill some dead code.
302
303 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
304
305         * object.c: clear the loader_error () before loading
306         more metadata stuff (bug #80258).
307
308 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
309
310         * icall.c, icall-defs.h: type modifiers icalls for
311         parameters and properties.
312
313 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
314
315         * object.c, icall.c: fixed warnings.
316
317 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
318
319         * marshal.c: fixed a couple of leaks and coding style in a few places.
320
321 2006-12-08  Dick Porter  <dick@ximian.com>
322
323         * process.c: Cope with NULL ProcessStartInfo arguments on windows
324         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
325         80173.
326
327 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
328
329         * process.c: ProcessStartInfo may have only filename set and
330         arguments can be NULL.
331
332 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
333
334         * icall.c: fix leak found by Robert Jordan.
335
336 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
337
338         * marshal.c, marshal.h: generate managed method to access an element
339         of a multi-dimensional array.
340
341 2006-11-30  Paolo Molaro (lupus@ximian.com)
342
343         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
344
345 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
346
347         * icall.c: back out GetFields () fix until the serialization code is
348         fixed to not depend on the incorrect behaviour.
349
350 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
351
352         * profiler.c: provide defaults if none are set.
353
354 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
355
356         * Makefile.am, attrdefs.h: new public header file with
357         constants for attributes for use by embedders.
358
359 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
360
361         * icall.c: GetFields () fix for bug #80064.
362
363 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
364
365         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
366         removed long unused icalls.
367
368 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
369   
370         * marshal.c: 
371                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
372                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
373                 can be generated without a delegate class.
374                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
375         
376         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
377
378 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
379
380         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
381         #80069.
382
383 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
384
385         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
386         icall-def.h: added icalls needed by System.GC.
387
388 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
389
390         * loader.c: ensure the class in catch clauses is handled
391         correctly for generics methods (fixes bug#79980).
392
393 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
394
395         * monitor.h, monitor.c: added mono_locks_dump () function
396         to help debug deadlocks involving managed locks.
397
398 2006-11-13  Dick Porter  <dick@ximian.com>
399
400         * file-io.c (get_file_attributes): If the file is a symlink try
401         and get the stat data for the target, but also add the
402         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
403         the specs for the windows symlink support, but will probably have
404         to be reworked when I have test data from a vista machine.  Fixes
405         bug 79887.
406
407 2006-11-13  Dick Porter  <dick@ximian.com>
408
409         * gc.c (mono_domain_finalize): 
410         * marshal.c (mono_delegate_begin_invoke): 
411         * threadpool.c (socket_io_init, mono_thread_pool_init)
412         (mono_thread_pool_finish): 
413         * monitor.c (mono_monitor_try_enter_internal): 
414         * threads.c (mono_thread_resume, mono_thread_init)
415         (mono_thread_suspend_all_other_threads)
416         (mono_thread_execute_interruption): 
417         * appdomain.c (mono_domain_unload): Check for NULL error returns
418         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
419         75733.
420
421 2006-11-11  Miguel de Icaza  <miguel@novell.com>
422
423         * process.c
424         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
425         Only close the handle if the value of the handle is not
426         INVALID_HANDLE_VALUE.  This just makes the process a bit more
427         robust.
428
429         Improvement for #75733, so that we do not run into this problem. 
430
431         
432         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
433         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
434         internal variables.  Fixes #79462 
435         
436
437 2006-11-09  Dick Porter  <dick@ximian.com>
438
439         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
440         Use poll() not select().  Fixes bug 79397.
441
442 2006-11-09  Raja R Harinath  <rharinath@novell.com>
443
444         Fix #79872
445         * assembly.c (mono_assembly_load_from_full): Check that the given
446         image has an assembly manifest.
447
448 2006-11-09  Ankit Jain  <jankit@novell.com>
449
450         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
451         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
452         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
453
454 2006-11-07  Dick Porter  <dick@ximian.com>
455
456         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
457         Put the old resolver behaviour back for pre-2.0 profiles.
458
459 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
460
461         * threadpool.c: precise GC and locking fixes.
462
463 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
464
465         * class.c: don't load types that have an explicit unaligned
466         managed reference. Provide better info in the TypeLoad exception.
467         Part of the fix for bug #79744.
468         * object.c: use the correct check for class type load issues.
469
470 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
471
472         * class.c: enforce alignment of fields with managed references
473         even when Pack=1 is forced by the user (bug #77788).
474
475 2006-11-03  Dick Porter  <dick@ximian.com>
476
477         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
478         If the address reverse lookup fails, return it as the hostname
479         anyway.  Fixes bug 79721.
480
481 2006-11-03  Dick Porter  <dick@ximian.com>
482
483         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
484         Fix build on Windows.
485
486 2006-11-02  Dick Porter  <dick@ximian.com>
487
488         * icall-def.h: 
489         * object-internals.h: 
490         * exception.c (mono_get_exception_thread_interrupted): 
491         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
492         Fixes bug 74525.
493
494         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
495         Check for pending Thread.Interrupt.
496
497 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
498         * loader.c: Fixed bug 79684.
499
500 2006-10-27  Dick Porter  <dick@ximian.com>
501
502         * file-io.c (get_file_attributes): Force symlinks to directories
503         to be returned as a regular file.  Fixes bug 79733.
504 2006-10-26  Dick Porter  <dick@ximian.com>
505
506         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
507         CreateFile to open a directory then we need to set the
508         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
509
510 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
511
512         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
513         friends.
514
515 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
516
517         * sgengc.c: small cleanup of timer code.
518
519 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
520
521         * sgen-gc.c: fix some warnings and start adding support for
522         complete object removal on domain unload.
523
524 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
525
526         * assembly.c: build_assembly_name should not consider a version
527         number without build or revision number invalid. Fixes bug #79715.
528
529 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
530
531         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
532         call kernel32 function OutputDebugString directly.
533         
534         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
535         
536 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
537
538         * reflection.c: small cleanup, using a function to insert a MonoString
539         in the string heap.
540
541 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
542
543         * reflection.c: moving GC fixes.
544
545 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
546
547         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
548         all the objects with finalizers belonging to an unloading appdomain.
549
550 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
551
552         * sgen-gc.c: added ability to allocate even when the nursery is fully
553         pinned and fixed a couple of bugs.
554
555 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
556
557         * threads.h: Revert the last change for now.
558
559         * threads.h (mono_thread_get_pending_exception): Rename this to
560         mono_thread_get_undeniable_exception ().
561
562 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
563
564         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
565         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
566         when fname does not refer to valid assembly. This result in a more
567         meaningful error message.
568         * exception.c: added mono_get_exception_bad_image_format2 which 
569         constructs a BadImageFormatException using the ctor taking a custom
570         message and the file name. Passing in a NULL msg results in a default
571         message.
572         * exception.h: define mono_get_exception_bad_image_format2 function.
573         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
574         when file name pointed to an invalid IL image. Use 
575         mono_get_exception_file_not_found2 to construct FileNotFoundException,
576         as this results in a more meaningful error message.
577
578 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
579
580         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
581         #79465.
582
583 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
584
585         * metadata.c (mono_type_size): Change the align parameter to guint32 for
586         consistency with the other _size functions.
587         (mono_type_stack_size): Ditto.
588
589         * class.c object.c icall.c: Fix warnings caused by the above change.
590
591         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
592
593         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
594
595         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
596
597 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
598
599         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
600         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
601         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
602         threadpool.h, threads-types.h: mark more internal functions.
603
604 2006-10-11  Dick Porter  <dick@ximian.com>
605
606         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
607         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
608         reproduce the bug even before applying the fix.)
609
610 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
611
612         * reflection.c: allow retrieving attributes for arguments in generic
613         methods (bug #79241).
614
615 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
616
617         * debug-mono-symfile.c: properly check fopen () result (found by
618         coverity).
619
620 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
621
622         * reflection.c: make error message clearer and fixed two
623         issuelets found by Coverity.
624
625 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
626
627         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
628
629 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
630
631         * object-internals.h, gc-internal.h, profiler-private.h:
632         mark internal functions.
633
634 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
635
636         * reflection.c: put data in the text section.
637         * icall.c: recognize more types in type_from_typename ().
638         * process.c, marshal.c: added some GC FIXMEs.
639
640 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
641
642         * loader.c: check for NULL before initializing.
643
644 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
645
646         * gc.c (finalizer_thread): Use a non-alertable wait here.
647
648         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
649         until the correct solution is found.
650
651 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
652
653         * reflection.c (mono_module_get_object): Avoid an assert when operating on
654         modules with no metadata. Fixes #79596.
655
656         * image.c (load_metadata_ptrs): Put back the error message when
657         the #- heap is encountered since the support is not complete yet.
658
659 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
660
661         * gc.c: do not allow the user to SuppressFinalize () a
662         delegate because it would leak the trampoline if present.
663
664 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
665
666         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
667         PropertyPtr table.
668
669 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
670
671         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
672
673         * metadata.c (mono_metadata_get_param_attrs): Ditto.
674
675         * row-indexes.h: Add definitions for *Ptr tables.
676
677         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
678
679         * metadata.c (mono_metadata_translate_token_index): New helper function to
680         translate table indexes used in uncompressed metadata.
681         (mono_metadata_decode_table_row): Ditto.
682         (mono_metadata_decode_table_row_col): Ditto.
683
684         * metadata.c: Add table schema for *Ptr tables.
685
686         * class.c loader.c: Use the new helper function to access the affected metadata
687         tables.
688         
689         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
690         #38532.
691         
692 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
693
694         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
695         sequences which can be unbounded in size. Fixes #79583.
696
697 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
698
699         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
700         static initialization.
701
702         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
703
704         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
705
706         * domain.c (mono_domain_free): Free up type_init_exception_hash.
707
708         * object.c (mono_runtime_class_init): Implement correct semantics when a static
709         ctor fails, i.e. throw the same exception on subsequent accesses.
710         
711 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
712
713         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
714         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
715         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
716         Handle marshalling of interfaces and VARIANTs contained in structs.
717         
718         Code is contributed under MIT/X11 license.
719         
720 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
721
722         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
723         
724         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
725         mempool.
726
727 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
728
729         * console-io.c: ignore previous SIGINT handler.
730
731 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
732
733         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
734         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
735         #79460, #79461, #79485.
736
737         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
738
739         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
740         #79217.
741
742 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
743
744         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
745         could be generated from it.
746
747 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
748
749         * rand.c: fix read loop to correctly handle EINTR.
750
751 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
752
753         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
754         internal calls are defined to keep methods closer to the declaring
755         type and allow a significant reduction in runtime relocations and
756         memory usage.
757
758 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
759
760         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
761         exception message to have FileNotFoundException use the default
762         assembly load error message. Fixes bug #79426.
763         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
764
765 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
766
767         * threadpool.c: (start_thread_or_queue) use the root domain when
768         creating the thread instead of the async object one.
769
770 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
771
772         * class.c, object.c, class-internals.h, reflection.c:
773         for arrays, store element_size inside MonoClass (speedup
774         for array object creation).
775
776 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
777
778         * icall.c: fixed CodeBase to use the file name and not the module
779         name (bug #79365).
780
781 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
782
783         * mono-debug.c, mono-debug.h: export find_method as
784         mono_debug_find_method ().
785
786 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
787
788         * debug-helpers.c, class-internals.h: added a few functions useful
789         when debugging under gdb.
790
791 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
792
793         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
794         characters that need special handling.
795
796 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
797
798         * mono-config.c: make the os/cpu specification more flexible,
799         allowing lists and negation.
800
801 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
802
803         * marshal.c: COM Interop fixes. Handle case where method->klass.
804         is interface. Handle BSTR/MonoString when null. Use CDECL as 
805         calling convention on non-windows platforms. This is for
806         compatibility with XPCOM and MainWin COM.
807         
808         Code is contributed under MIT/X11 license.
809         
810
811 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
812
813         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
814         correctly. Fixes #79217.
815
816         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
817
818 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
819
820         * mono-config.c: allow both an os and cpu attribute for dllmap
821         and dllentry elemnets to enable a single config file to be used
822         for multiple architectures.
823
824 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
825
826         * loader.c: MonoLoaderError was cleared too soon on load failure.
827         Fixes bug #79424.
828
829 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
830
831         * icall.c: use the defining class vtable when accessing a
832         static field, not a pobblibly derived class.
833
834 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
835
836         * icall.c string-icalls.c: Remove references to unicode.h.
837
838         * unicode.h unicode.c Makefile.am: Remove these unused source files.
839
840         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
841
842         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
843         indicating the image where custom marshaller types should be looked up.
844         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
845         custom marshallers, instead of corlib. Fixes #79425.
846
847 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
848
849         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
850
851 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
852
853         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
854         Implement Environment.ProcessorCount.
855         
856         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
857         Implement Environment.ProcessorCount.
858         
859         * icall.c: 
860         Add Environment.ProcessorCount icall.
861         
862         Patch by Jason McFall.
863
864 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
865
866         * assembly.c: don't append .exe/.dll when the filename already contains
867         one of those extensions.
868
869 2006-09-12  Martin Baulig  <martin@ximian.com>
870
871         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
872         to array interfaces.
873
874 2006-09-11  Martin Baulig  <martin@ximian.com>
875
876         * reflection.c (mono_image_build_metadata): Create the
877         MethodImpl's after emitting all types and methods, so we don't
878         need another fixup pass for them.
879
880 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
881
882         * class.c (mono_class_from_name_case): Fix regression introduced by the last
883         change.
884
885 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
886
887         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
888         unload.
889
890 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
891
892         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
893         args is not set. Fixes #78926.
894
895 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
896
897         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
898
899         * image.c (load_class_names): Move this to class.c, and rename it to 
900         'mono_image_init_name_cache'.
901         (load_modules): Fix a warning.
902
903         * class.c icall.c image.c: Initialize image->name_cache lazily.
904
905         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
906         on its name using information in the AOT file.
907
908         * class.c (mono_class_from_name): Use the new hook function.
909
910 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
911
912         * reflection.c (mono_param_get_objects): Handle enum default parameter values
913         correctly.
914
915         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
916         Fixes #79289.
917         
918 2006-09-06  Martin Baulig  <martin@ximian.com>
919
920         * icall.c (mono_lookup_internal_call): Small fix.
921
922 2006-09-05  Raja R Harinath  <rharinath@novell.com>
923
924         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
925         double g_free.
926
927 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
928
929         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
930         when --debug is specified.
931
932 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
933
934         * class.c (setup_generic_array_ifaces): Fix a warning.
935
936 2006-09-04  Miguel de Icaza  <miguel@novell.com>
937
938         * Temporarily remove the patch to assemly.c that checks the
939         assembly versions as it breaks our gacutil.
940
941 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
942
943         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
944
945         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
946         a net 1.0 runtime.
947
948         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
949         created using the default ctor. Fixes #79152.
950         (mono_string_builder_to_utf16): Ditto.
951
952 2006-09-01  Martin Baulig  <martin@ximian.com>
953
954         Fix handling of the generic array interfaces.
955
956         * class-internals.h
957         (MonoDefaults): Removed `generic_array_class' and added
958         `generic_ilist' class.
959
960         * class.c
961         (mono_bounded_array_class_get): Add the new generic array interfaces.
962         (setup_generic_array_ifaces): New static method; create vtable
963         entries for each method in the generic array interfaces.
964
965         * metadata.c
966         (select_container): Allow "parent-less" generic methods.
967
968         * marshal.c
969         (mono_marshal_get_generic_array_helper): New public method.
970
971         * icall.c
972         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
973         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
974         moved the interncall into System.Array.
975
976 2006-09-01  Raja R Harinath  <rharinath@novell.com>
977
978         A few more cases of avoiding work on types with ->byref set.
979         Has the real fix for #79238
980         * icall.c (is_generic_parameter): New helper.
981         (ves_icall_Type_GetGenericParameterPosition): Use it.
982         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
983         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
984         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
985         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
986         reference types.
987         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
988         reference types.
989         (ves_icall_Type_get_IsGenericInstance): Likewise.
990         (ves_icall_Type_get_IsGenericType): Likewise.
991
992 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
993
994         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
995         class if possible.
996
997         * mempool.h (mono_mempool_get_allocated): New helper function.
998
999         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
1000         change.
1001
1002         * mempool.c: Fix warnings and the calculation of stats.
1003
1004         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
1005
1006         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
1007
1008         * loader.c (mono_get_method_from_token): Update method_count stat.
1009
1010         * class-internals.h (MonoStats): Add some stats.
1011
1012 2006-08-31 Robert Jordan  <robertj@gmx.net>
1013
1014         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
1015         with managed variants.
1016         All code is contributed under the MIT/X11 license.
1017         
1018 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
1019
1020         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
1021         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
1022
1023         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
1024
1025         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
1026         with cycles in classes.
1027
1028         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
1029
1030         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
1031         missing a [MarshalAs] directive. Fixes #79203.
1032
1033         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
1034         klass->marshal_info. Fixes #79217.
1035
1036 2006-08-30  Martin Baulig  <martin@ximian.com>
1037
1038         Committing a patch from Joachim Ante <joe@otee.dk>:
1039         Add support for binary data symbol stores.
1040
1041         * debug-mono-symfile.c
1042         (mono_debug_open_mono_symbol_file): Renamed into
1043         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
1044         arguments.
1045
1046         * mono-debug.c
1047         (mono_debug_open_image): Added `raw_contents' and `size' args.
1048         (mono_debug_init_2_memory): New public function.
1049
1050 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
1051
1052         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
1053
1054 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1055
1056         * appdomain.c: implement support for ShadowCopyFiles.
1057
1058 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
1059
1060         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
1061         when value is NULL (and should remove CID #51).
1062
1063 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1064
1065         * image.c: moved 2 functions to ../utils.
1066
1067 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
1068
1069         * gc.c: cope with the target object of a GC handle being NULL
1070         (bug #78877).
1071
1072 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
1073
1074         * class.c: recursively check parent's explicit implementations
1075         of interface methods (fixes bug #79125).
1076
1077 2006-08-19  Miguel de Icaza  <miguel@novell.com>
1078
1079         * filewatcher.c: Avoid warnings when building, do not redefine
1080         constants that are defined.
1081
1082         Remove warnings.
1083
1084 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1085
1086         * image.c: don't fail when the link points to an absolute path.
1087
1088 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
1089
1090         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
1091         Fix CID #3.
1092
1093 2006-08-17  Miguel de Icaza  <miguel@novell.com>
1094
1095         * image.c (full_path): A new method used to obtain the actual path
1096         of an assembly even in the presence of symbolic links.  
1097
1098         This is necessary for the case where we are running a binary that
1099         has been GACed, but we are using the "published" path name
1100         ($prefix/mono/1.0/blah.exe) which happens to point to the real
1101         file in the GAC.
1102
1103         This was the source of the failure for the `xsp' command with the
1104         recent AppDomain changes, as far as the runtime was concerned,
1105         there were two different assemblies: $prefix/mono/1.0/blah.exe and
1106         $prefix/mono/gac/blah/version/blah.exe.
1107
1108         (do_mono_image_open): use full path
1109
1110 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1111
1112         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
1113
1114 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
1115
1116         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
1117         domain_id is supplied. Fix CID #241 and corlib's unit tests.
1118
1119 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1120
1121         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
1122         small structures. Fixes #78990.
1123
1124 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1125
1126         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
1127
1128         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
1129
1130 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1131
1132         * appdomain.c:
1133         * marshal.c: don't load all the assemblies from a domain into newly
1134         created ones. The new domains might have different rules and load
1135         assemblies from different locations. Fixes bug #76757.
1136
1137         Patch by Lluis. Conflicts resolved by Brian Crowell.
1138
1139 2006-08-16  Alp Toker  <alp@atoker.com>
1140
1141         * socket-io.c: First half of the fix for #79084.
1142         Set sa_size to the length of the content, not that of the struct.
1143         Don't add NULL suffix to the content, this should be done in
1144         managed code if needed.
1145
1146 2006-08-14  Raja R Harinath  <rharinath@novell.com>
1147
1148         Fix part of #79012
1149         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
1150         mono_metadata_parse_type returns NULL.
1151
1152 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
1153
1154         * normalization-tables.h : new file for string normalization data.
1155         * locales.c, locales.h, icall.c :
1156           added load_normalization_resource() for string normalization,
1157           and icall as well.
1158         * Makefile.am : added normalization-tables.h to the sources.
1159
1160 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
1161
1162         * marshal.c: Add more helper functions to reduce code duplication and use them
1163         everywhere.
1164
1165 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
1166
1167         * marshal.c: Fix non-x86 stdcall warnings.
1168         
1169         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
1170         them everywhere.
1171
1172 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
1173
1174         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
1175         type check on multi-dimensional arrays. Fixes #79000.
1176
1177 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
1178
1179         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
1180         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
1181         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
1182         * class-internals.h: add is_com_object to class structure.
1183         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
1184         null checks to COM object marshalling. Fix .ctor call on RCW.
1185         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
1186         
1187         All code is contributed under the MIT/X11 license.
1188
1189 2006-08-09  Dick Porter  <dick@ximian.com>
1190
1191         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
1192         racing mono_monitor_allocator_lock() somewhere, so don't delete
1193         the critical section for now.  Found by running and exiting
1194         monodevelop.
1195
1196 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
1197
1198         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
1199         (ves_icall_System_ComObject_FindInterface): Ditto.
1200         (ves_icall_System_ComObject_CacheInterface): Ditto.
1201
1202         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
1203         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
1204
1205 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1206
1207         * threadpool.c: treat pipes from process asynchronous reads as sockets
1208         when reading from them, so we get select/poll or epoll to wait for
1209         data.
1210
1211 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
1212
1213         * loader.c: Fix a typo (CID #233) in the null check.
1214
1215 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
1216
1217         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
1218         Hopefully fixes #78949.
1219         
1220         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
1221         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
1222         bytes. Fixes #78972.
1223
1224 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1225
1226         * filewatcher.c: we need to set errno here.
1227
1228 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1229
1230         * filewatcher.c: let Win32Exception get the error value.
1231
1232 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1233
1234         * filewatcher.c: translate errno into win32 errors for Win32Exception
1235         to know what happened.
1236
1237 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
1238
1239         * threadpool.c: Fix more warnings.
1240
1241         * assembly.c (search_loaded): Fix warnings.
1242
1243         * threadpool.c (mono_thread_pool_finish): Fix warnings.
1244         (mono_async_invoke): Ditto.
1245
1246 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
1247
1248         * object.c (mono_remote_class_vtable): Need to create proxy vtable
1249         entries for __ComObject type in addition to ComImport types.
1250         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
1251         about hash table.
1252         
1253         All code is contributed under the MIT/X11 license.
1254
1255 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
1256
1257         * image.c: avoid tentative loading of modulerefs that contain
1258         no metadata (P/Invoke library names).
1259
1260 2006-07-28  Dick Porter  <dick@ximian.com>
1261
1262         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
1263         mono_loader_lock() somewhere, so don't delete the critical section
1264         for now.  Found by running and exiting monodevelop.
1265
1266 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1267
1268         * filewatcher.c: define the inotify syscalls when we're building on
1269         linux and have sys/syscall.h. The build system might not have support
1270         for inotify but the target system might have it.
1271
1272 2006-07-26  Miguel de Icaza  <miguel@novell.com>
1273
1274         * domain.c: Documentation updates.
1275
1276         * loader.c (mono_free_method): Do not release the method
1277         information if we are being profiled, as profilers will use this
1278         information at shut down to present some data to the user.
1279
1280         This is needed so that the profiler does not crash, as the
1281         profiler tends to keep MonoMethods around, and they might become
1282         invalid if we free these.
1283
1284         (mono_get_method_constrained): Return the original CIL stream
1285         method as well, so verification can be performed against it.
1286
1287 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1288
1289         * filewatcher.[ch]: support for inotify file system watcher.
1290         * icall.c: add new internal calls for the inotify file system watcher.
1291
1292 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1293
1294         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
1295         #78888.
1296
1297 2006-07-20  Dick Porter  <dick@ximian.com>
1298
1299         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
1300         warning.
1301
1302 2006-07-20  Dick Porter  <dick@ximian.com>
1303
1304         * threads.c (start_wrapper): Do the thread cleanup while we still
1305         hold a reference to its object.  Fixes bug 78123.
1306
1307 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
1308
1309         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
1310         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
1311           "managed-to-managed".
1312         * icall.c: Redirect string constructors that take sbyte* to
1313           ves_icall_System_String_ctor_RedirectToCreateString.
1314         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
1315           to CreateString () methods with matching signature.
1316         * reflection.c: Use original security informations for
1317           MONO_WRAPPER_MANAGED_TO_MANAGED.
1318         * security-manager.c: Use original security informations for
1319           MONO_WRAPPER_MANAGED_TO_MANAGED.
1320         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
1321           that is a placeholder and only its address should be used.
1322         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
1323           that is a placeholder and only its address should be used.
1324
1325 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
1326
1327         Begin implementing COM Interop.
1328         * appdomain.c: Increment corlib version.
1329         * class.c: Set ComImport classes' parent to __ComObject.
1330         * loader.c: Mark cominterop methods as such.
1331         * domain.c: Add __ComObject class to MonoDefaults structure.
1332         * image.c: Add 2 hashtables to the image for COM Interop related methods
1333         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
1334         using the mempool allocator
1335         
1336         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
1337         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
1338         declaration for mono_metadata_type_dup_mp.
1339         
1340         * debug-helpers.c: Added strings for two additional wrapper types
1341         * object.c: Create proxy objects for ComImport classes
1342         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
1343         and added __ComObject class to MonoDefaults structure.
1344         
1345         * object-internals.h: Finish MonoRealProxy definition, and add definition of
1346         MonoComInteropProxy and MonoComObject.
1347         
1348         * marshal.c: Added support for COM Interop
1349         (signature_cominterop): Converts managed signature to corresponding
1350         unmanaged COM signature.
1351         (cominterop_get_function_pointer): gets unmanaged function pointer via
1352         COM object vtable
1353         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
1354         (cominterop_get_method_interface): returns interface type that method is defined on
1355         (mono_mb_emit_cominterop_call): emits native call to function pointer
1356         gotten from vtable
1357         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
1358         that matches signature of unmanaged function.
1359         (cominterop_get_native_wrapper): wrapper around adjusted method call.
1360         (cominterop_get_invoke): forwards call from proxy to __ComObject
1361         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
1362         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
1363         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
1364         
1365         * marshal.h: Added Marshal icall declarations.
1366         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
1367         so we can access them in finalizer
1368         
1369 2006-07-14  Dick Porter  <dick@ximian.com>
1370
1371         * object.c (mono_type_initialization_cleanup): Fix a race
1372         condition by temporarily commenting out the critical section
1373         deletion.
1374
1375 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
1376
1377         * reflection.c (create_custom_attr): Fix some warnings.
1378         (create_custom_attr_data): Ditto.
1379         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
1380         types. Fixes #78855.
1381
1382 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
1383
1384         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
1385
1386         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
1387
1388 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
1389
1390         * reflection.c (resolve_object): Add support for DynamicMethod.
1391
1392         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
1393         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
1394
1395 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
1396
1397         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
1398         don't leak GPtrArray's pdata has we have no use (nor free) for it.
1399
1400 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
1401
1402         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
1403         Fixes #77888.
1404
1405 2006-06-30  Raja R Harinath  <rharinath@novell.com>
1406
1407         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
1408         slightly: remove a shadow local variable.
1409
1410 2006-06-29  Raja R Harinath  <rharinath@novell.com>
1411
1412         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
1413         definition that introduces the virtual function slot.
1414         Also fix Coverity #105.
1415
1416 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
1417
1418         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
1419         for dynamic assemblies. Fixes #78724.
1420
1421 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
1422
1423         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
1424         Fixes #78722.
1425
1426 2006-06-21  Martin Baulig  <martin@ximian.com>
1427
1428         * reflection.c
1429         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
1430         fixes #76484.
1431
1432 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
1433
1434         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
1435
1436 2006-06-20  Raja R Harinath  <rharinath@novell.com>
1437
1438         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
1439         nor TYPEREFs.
1440         * class.c (mono_class_create_from_typespec): Add 'context' argument.
1441         Inflate result if necessary.
1442         (mono_class_get_full): Remove old version.  Rename from
1443         'mono_class_get' and add 'context' argument.  Pass it to
1444         ..._create_from_typespec.
1445         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
1446         (mono_ldtoken): Revert change below.
1447
1448 2006-06-20  Martin Baulig  <martin@ximian.com>
1449
1450         * class.c (mono_ldtoken): Don't pass the generic context to
1451         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
1452
1453 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
1454
1455         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
1456         and later freeing it. Fixes #78638.
1457
1458 2006-06-15  Miguel de Icaza  <miguel@novell.com>
1459
1460         * icall.c (mono_class_get_throw): Revert over-zealous error
1461         throwing, the caller for mono_class_get_throw will cope with
1462         errors when classes are not properly initialized already.
1463
1464         The code still copes with loader exceptions though.
1465
1466         Fixes the regression in reftype1 and reftype3 from the CAS tests.
1467         
1468 2006-06-14  Miguel de Icaza  <miguel@novell.com>
1469
1470         Fixes the `make run1' version of RuntimeAbort (to be commited,
1471         source is in Bugzilla).
1472         
1473         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
1474         FALSE on class loading failure instead of returning true.
1475
1476         * class.c (mono_class_create_from_typedef): It is possible for
1477         mono_metadata_interfaces_from_typedef_full to fail if a class is
1478         not found, cope with this.
1479         
1480
1481 2006-06-14  Dick Porter  <dick@ximian.com>
1482
1483         * socket-io.c: 
1484         * process.c: Fix a bunch of signed/unsigned warnings from gcc
1485         4.1.1
1486
1487 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
1488
1489         * culture-info-table.h : oops, forgot to make it nsync with r61548.
1490
1491 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
1492
1493         * icall.c: Another fix for building mono in Visual Studio.
1494
1495 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
1496
1497         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
1498         
1499 2006-06-09  Martin Baulig  <martin@ximian.com>
1500
1501         * debug-mono-symfile.c: Put this back and really fix it this
1502         time. Sorry for all the trouble.
1503
1504 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
1505
1506         * icall.c (mono_class_get_throw): Fix a warning.
1507         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
1508         ReflectionTypeLoadException if needed. Fixes #78606.
1509
1510         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
1511         (mono_class_init): Ditto.
1512
1513         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
1514         ref_only exceptions.
1515         (mono_loader_clear_error): Make this work even if there is no error.
1516
1517 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
1518
1519         * object-internals.h marshal.c marshal.h icall.c: Implement method 
1520         Marshal.GetComSlotForMethodInfo using internal call.
1521
1522 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
1523
1524         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
1525         a function for signalling it.
1526
1527         * class.c (mono_class_from_typeref): Use the new kind of loader error when
1528         a referenced assembly is not found.
1529
1530         * loader.c (mono_loader_error_prepare_exception): Add support for 
1531         LOADER_ERROR_ASSEMBLY. Fix formatting.
1532
1533 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
1534
1535         * domain.c appdomain.c class-internals.h marshal.c: Add support 
1536         for VARIANT marshalling on windows and increment corlib version
1537         since Variant struct was added.
1538
1539 2006-06-03  Miguel de Icaza  <miguel@novell.com>
1540
1541         * debug-mono-symfile.c: Revert Martin's previous patch which broke
1542         stack trace line information:
1543
1544         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
1545         (Martin) when looking up B which is between A and C, return A not C.
1546
1547         Bug is #78573.
1548
1549         Thanks to Alexander Olk for tracking this down.
1550
1551 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
1552
1553         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
1554         
1555         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
1556         avoid clobbering its value.
1557         (mono_string_to_lpstr): Fix a warning on windows.
1558
1559 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
1560
1561         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
1562
1563         * reflection.c loader.c: Removed references to 'dummy' flag.
1564
1565         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
1566
1567         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
1568         it gets GC tracking.
1569
1570         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
1571         GC tracking.
1572         
1573         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
1574
1575         * marshal.c threadpool.c: Update callers of mono_async_result_new.
1576
1577         * appdomain.c: Bump corlib version.
1578
1579 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
1580
1581         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
1582         CEE_STIND_REF when working with object references.
1583
1584 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
1585
1586         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
1587         Fixes #78539.
1588
1589 2006-05-30  Miguel de Icaza  <miguel@novell.com>
1590
1591         * loader.c (method_from_memberref): Fix argument value for
1592         mono_loader_set_error_method_load (I was passing the MonoClass
1593         instead of the class name char *).
1594
1595 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
1596
1597         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
1598         CEE_STIND_REF when working with object references.
1599
1600 2006-05-30  Martin Baulig  <martin@ximian.com>
1601
1602         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
1603         mono_method_full_name() change and replace the ':' with a '.'
1604         here.
1605
1606 2006-05-30  Martin Baulig  <martin@ximian.com>
1607
1608         * debug-mono-symfile.c
1609         (mono_debug_symfile_lookup_location): Fix the algorithm:
1610         when looking up B which is between A and C, return A not C.
1611
1612 2006-05-29  Martin Baulig  <martin@ximian.com>
1613
1614         * mono-debug.h
1615         (MonoDebugMethodInfo): Make the typedef public.
1616         (MonoDebugSourceLocation): New public struct.
1617
1618         * mono-debug.c
1619         (mono_debug_source_location_from_address): Removed.
1620         (mono_debug_source_location_from_il_offset): Removed.
1621         (mono_debug_il_offset_from_address): Removed.
1622         (mono_debug_address_from_il_offset): Removed.
1623         (mono_debug_lookup_method): New public function.
1624         (mono_debug_lookup_source_location): New public function; replaces
1625         the old mono_debug_source_location_from_*() functions; see the
1626         inline documentation.
1627         (mono_debug_free_source_location): New public function.
1628         (mono_debug_print_stack_frame): New public function; see the
1629         inline documentation.
1630
1631         * debug-mono-symfile.c
1632         (mono_debug_find_source_location): Renamed into
1633         mono_debug_symfile_lookup_location(); only take a
1634         `MonoDebugMethodInfo *' and an `offset' argument; added inline
1635         documentation.
1636         (mono_debug_find_method): Renamed into
1637         mono_debug_symfile_lookup_method().
1638
1639 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
1640
1641         * assembly.c (mono_assembly_open_full): Dont overwrite the status
1642         returned by mono_image_open_full ().
1643
1644         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
1645         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
1646         #78517.
1647
1648         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
1649         #78518.
1650
1651 2006-05-27  Miguel de Icaza  <miguel@novell.com>
1652
1653         * class.c (mono_class_from_typeref): handle missing images
1654         earlier, deals with bug #78418.   Refactor code; 
1655
1656         Fix a warning introduced in my previous commit (some stale code
1657         from before I revisited my patch).
1658
1659         * class.c (mono_class_create_from_typedef): On failure, remove the
1660         class from the MonoImage->class_cache as the class is not
1661         initialized;   Fixes the leak pointed out by Paolo.
1662
1663 2006-05-25  Dick Porter  <dick@ximian.com>
1664
1665         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
1666         DeleteCriticalSections until I figure out which one may still be
1667         sometimes locked when mono_thread_cleanup is called.
1668
1669 2006-05-24  Dick Porter  <dick@ximian.com>
1670
1671         * threads.c (mono_thread_cleanup): Move the threading cleanup out
1672         of mono_thread_manage and back into its own function, so it can be
1673         called after the finalizer thread has finished.
1674
1675         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
1676
1677 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
1678
1679         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
1680         Fixes #78495.
1681
1682         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
1683         with non-blittable elements.
1684         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
1685
1686 2006-05-24  Martin Baulig  <martin@ximian.com>
1687
1688         * mono-debug-debugger.h (MonoDebuggerEvent): Added
1689         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
1690
1691         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
1692         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
1693         `mono_debugger_event_handler' to NULL.
1694
1695 2006-05-24  Martin Baulig  <martin@ximian.com>
1696
1697         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
1698
1699 2006-05-24  Martin Baulig  <martin@ximian.com>
1700
1701         * mono-debug-debugger.h
1702         (mono_debugger_create_notification_function): Added
1703         `MonoCodeManager *' argument.
1704
1705 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
1706
1707         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
1708
1709 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
1710
1711         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
1712         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
1713         implementation.
1714
1715 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
1716
1717         * icall.c: precise GC support: objects can't be stored in unmanaged
1718         memory anymore, even if they are kept alive by other references: since
1719         they can move the GC needs to be able to always find them.
1720
1721 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
1722
1723         * object.c: precise GC support for static fields. Support
1724         for moving GCs: write barriers and pinned allocation for interned
1725         strings.
1726
1727 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
1728
1729         * domain.c, domain-internals.h: precise GC support for the MonoDomain
1730         structure.
1731
1732 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
1733
1734         * class.c, gc.c: sgen and precise GC updates.
1735
1736 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
1737
1738         * marshal.h, marshal.c: added write barrier wrapper and precise type
1739         fixes.
1740
1741 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
1742
1743         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
1744         support.
1745
1746 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
1747
1748         * reflection.c: precise and sgen GC updates.
1749
1750 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
1751
1752         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
1753
1754 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
1755
1756         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
1757
1758 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
1759
1760         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
1761         MONO_TYPE_OBJECT. Fixes #78462.
1762
1763 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
1764
1765         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
1766         and blittable types.
1767
1768 2006-05-17  Miguel de Icaza  <miguel@novell.com>
1769
1770         * class.c (mono_class_get_exception_for_failure): Implement parts
1771         of a TODO: if the loader error is set (instead of the class
1772         error), we return a Loader exception that can be properly thrown
1773         elsewhere.
1774
1775         This was exposed by some Winforms 2.0 code that I tried to run
1776         (Atsushi pointed me to it).
1777
1778 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
1779
1780         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
1781         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
1782         
1783         * marshal.c (emit_marshal_vtype): Add limited support for 
1784         UnmanagedType.LPStruct. Fixes #78427.
1785
1786         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
1787         Applied a patch from kangaroo to fix #77523.
1788
1789 2006-05-17  Martin Baulig  <martin@ximian.com>
1790
1791         * threads.c
1792         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
1793         (debugger_thread_created): Removed.
1794         (debugger_thread_exited): Removed.
1795
1796 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
1797
1798         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1799
1800         * object-internals.h (MonoReflectionResource): Sync with managed version.
1801
1802 2006-05-12  Wade Berrier <wberrier@novell.com>
1803
1804         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
1805
1806 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
1807
1808         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
1809         functions try to allocate from the image mempool.
1810
1811 2006-05-12  Dick Porter  <dick@ximian.com>
1812
1813         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
1814
1815 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
1816
1817         * object.c: The FieldGetter and FieldSetter methods require the full
1818         name of the class, not only the name. Fixes bug #78277.
1819
1820 2006-05-11  Miguel de Icaza  <miguel@novell.com>
1821
1822         * loader.c (method_from_memberref): Do not pass the NULL klass to
1823         mono_loader_set_error_() methods.  Pass the non-NULL value
1824         (class). 
1825
1826 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
1827
1828         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
1829         (mono_assembly_close): Null out assembly->image->references after freeing it.
1830
1831         * image.c (mono_image_close): Free image->references.
1832         
1833         * reflection.c (mono_image_basic_init): Fix a small memory leak.
1834
1835 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
1836
1837         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
1838         before checking if it's NULL (g_assert).
1839
1840 2006-05-10  Martin Baulig  <martin@ximian.com>
1841
1842         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
1843         I thought I already killed that two months ago, but now it somehow reappeared.
1844
1845 2006-05-10  Martin Baulig  <martin@ximian.com>
1846
1847         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
1848
1849 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
1850
1851         * reflection.c: Allocate memory for dynamically created methods in the image
1852         mempools.
1853
1854 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
1855
1856         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
1857         don't use the ad pointer before checking if it's NULL (g_assert).
1858
1859 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
1860
1861         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
1862         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
1863
1864         * marshal.c: Allocate all signatures from mempools.
1865
1866         * marshal.c: Allocate some more signatures from mempools.
1867
1868 2006-05-09  Miguel de Icaza  <miguel@novell.com>
1869
1870         * object.c (mono_load_remote_field): The code used to provide a
1871         temporary variable for returning results if the user did not
1872         provide a result pointer.  But our temporary variable was allocted
1873         on the satck.
1874
1875         Fix calling code to always pass a result area.   Coverity ID 103.
1876
1877 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
1878
1879         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
1880         value, not the old. Fixes #78312.
1881         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
1882
1883         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
1884         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
1885         per-image cache.
1886
1887         * assembly.c (mono_assembly_close): Free image->references.
1888
1889         * assembly.c (mono_assembly_names_equal): Fix a warning.
1890         (mono_assemblies_cleanup): Cleanup more global data.
1891
1892         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
1893
1894         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
1895         ptr_cache and image->modules.
1896
1897         * image.c (mono_image_init): Allocate array_cache lazily.
1898         
1899 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1900
1901         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
1902         behavior was changed recently and has bad side effects.
1903
1904 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
1905
1906         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
1907         
1908         * assembly.c (mono_assembly_close): Remove a debug printf.
1909
1910         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
1911
1912         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
1913         to also allow for temporary references between mono_image_open ()/close ().
1914
1915         * domain.c (get_runtimes_from_exe): Add a FIXME.        
1916
1917 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
1918
1919         * marshal.c: Fix support for dynamic methods.
1920
1921         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
1922
1923         * marshal.c (mono_marshal_cleanup): New cleanup function.
1924
1925         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
1926         image mempools.
1927
1928         * class.c (mono_class_init): Fix leaking class->nested_classes.
1929
1930         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
1931
1932         * image.c (mono_image_init): Initialize the new cashes.
1933
1934         * image.c (mono_image_close): Destroy the new cashes.
1935
1936         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
1937
1938         * mempool.c (mono_mempool_strdup): New helper function.
1939
1940         * class-internals.h: Add prototype for mono_loader_unlock ().
1941
1942         * domain.c (mono_jit_info_table_find): Fix a warning.
1943         (mono_debugger_check_runtime_version): Ditto.
1944
1945         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
1946         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
1947         functions to these modules.
1948
1949         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
1950         metadata modules.
1951         
1952         * marshal.c (mono_free_bstr): Fix a warning.
1953
1954         * assembly.c (mono_assembly_open_full): Fix another small leak.
1955
1956         * object.c: Fix some unload leaks in the remoting code.
1957
1958         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
1959         function.
1960
1961         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
1962
1963         * reflection.c: Fix some unload leaks in dynamic assemblies.
1964
1965 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
1966
1967         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
1968         * marshal.h: Add BSTR support on Win32
1969         * icall.c: Add BSTR icalls
1970         * metadata.h: Add BSTR enums
1971
1972 2006-04-28  Miguel de Icaza  <miguel@novell.com>
1973
1974         Work to catch the crash from #76795 and turn it into an
1975         exception.   As I stubbed out pieces of the VisualBasic support,
1976         I found a number of places where the code was failing and I added
1977         checks to those places. 
1978         
1979         * metadata.c (do_mono_metadata_parse_generic_class): Make this
1980         function return a status code.  If we fail to parse the signature
1981         from mono_metadata_parse_generic_inst, return FALSE.
1982
1983         * loader.c (mono_get_method_from_token): If we fail to load the
1984         method (mono_class_get) return NULL.   
1985
1986         * (method_from_memberref): Return NULL if we are unable to parse
1987         the method signature
1988
1989         (mono_loader_error_prepare_exception): Since we now use the
1990         loader_error flag internally to stop processing, and obtaining
1991         exceptions that might be thrown will walk this code path the
1992         proper way of going from a MonoLoaderError into a
1993         MonoException was convoluted.   This new routine encapsulates the
1994         process of turning the error into an exception and *clearing* the
1995         error afterwards.
1996         
1997 2006-04-27  Miguel de Icaza  <miguel@novell.com>
1998
1999         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
2000         with missing assemblies), and to cope with:
2001
2002                 * Missing fieldref from a non-existing assembly.
2003                 * Missing methodref from a non-existing assembly.
2004
2005         The first batch of work to address *some* of the issues from 76661.
2006         
2007         * object.c (mono_class_create_runtime_vtable): If we fail to
2008         initialize the class raise the exception here. 
2009
2010         * metadata.c (mono_class_get_overrides_full): If any methods fail
2011         to load return the failure to the caller.
2012
2013         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
2014         flagging assemblies that failed to load.   
2015
2016         Do not crash if we are unable to load the assembly.
2017
2018         (mono_assembly_close): Do nothing with REFERENCE_MISSING
2019         assemblies. 
2020
2021         * loader.c (mono_loader_set_error_type_load): Change the
2022         convention to always pass unallocated strings, so we make our own
2023         copies (I know our own code had duplicated strings before, but
2024         this keeps the normal conventions).
2025         (method_from_memberref): Call mono_loader_set_error_method_load
2026         for all possible failures of loading the class. 
2027         Remove assert, turn into a loader error.
2028
2029         (mono_loader_error_to_exception): Move this routine from mini
2030         (mini_loader_error_to_exception) there was no need to have that in
2031         mini. 
2032
2033         * class.c (mono_class_from_typeref): If we were not able to load
2034         the assembly with mono_assembly_load_reference, call the
2035         mono_loader_set_error_type_load to register the problem.
2036
2037         (mono_class_setup_fields): If we fail to load the type from
2038         mono_metadata_parse_type_full, call mono_class_set_failure and
2039         break from the loop.
2040
2041         If class->exception_type is set, we do not layout the fields as
2042         that might crash the runtime, and instead return (from breaking
2043         from the previous loop).
2044
2045         (mono_class_setup_vtable): This now returns a boolean indicating
2046         whether the table was properly setup.   The decision is driven by
2047         mono_class_get_overrides_full which might run into non-existing
2048         methods. 
2049         
2050         (mono_class_init): Returns TRUE on success or FALSE if there was a
2051         problem in loading the type (incorrect assemblies, missing
2052         assemblies, methods, etc).
2053
2054         When we call mono_class_setup_fields we also check for a potential
2055         error inside this call (either a class exception or a general
2056         loader exception).
2057
2058         (mono_class_create_from_typedef): If the parent fails to load
2059         (calling mono_class_get_full) return NULL.
2060         
2061         ** Important **
2062
2063         calls to mono_metadata_parse_type_full should be checked
2064         everywhere and set the mono_class_set_failure
2065         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
2066
2067         The current patch checks the places where my manually constructed
2068         tests show the errors are showing up, but we should do it
2069         everywhere. 
2070
2071         ** Important2 **
2072
2073         mono_class_init return values should be tested everywhere, like
2074         the previous case this is something that we should audit
2075         everywhere and not only on the cases exposed by the tests I
2076         created. 
2077
2078 2006-04-26  Miguel de Icaza  <miguel@novell.com>
2079
2080         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
2081         boolean parameter and instead pass the information on `options'
2082         parameter (FileOptions).
2083
2084         * icall.c: Register the new signature for MonoIO.Open.
2085
2086         * debug-helpers.c (dis_one): Trying to understand how coverity
2087         works.  Fix Run 5, item 78.
2088
2089 2006-04-26  Dick Porter  <dick@ximian.com>
2090
2091         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
2092         dereference.
2093
2094 2006-04-25  Martin Baulig  <martin@ximian.com>
2095
2096         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
2097
2098         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
2099         debugger_thread_created().
2100         (debugger_gc_push_all_stacks): Don't handle the main thread in any
2101         special way.
2102         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
2103         (mono_debugger_finalize_threads): New function; undo the effects
2104         of mono_debugger_init_threads().
2105         (mono_debugger_create_all_threads): Removed.
2106
2107 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
2108
2109         * image.c (mono_image_close): Tidy up trace messages.
2110
2111         * assembly.c (mono_assembly_close): Ditto.
2112
2113         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
2114         no longer references an already freed assembly. Fixes #78168.
2115
2116 2006-04-21  Dick Porter  <dick@ximian.com>
2117
2118         * threads.c (mono_thread_detach): Fix reference counting when
2119         detaching threads.
2120
2121 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
2122
2123         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
2124         #78155.
2125
2126 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
2127
2128         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
2129         (mono_type_to_stind): Ditto.
2130
2131         * marshal.c: Use the new helper functions to simplify code.
2132
2133         * image.c (mono_image_close): Add some code for help debug assembly unloading
2134         problems.
2135
2136         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
2137         image mempool.
2138
2139         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
2140         assembly was already loaded in another appdomain. Fixes #78083.
2141
2142 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
2143
2144         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
2145         referenced assemblies.
2146         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
2147
2148         * domain.c (mono_domain_free): Add a trace message.
2149
2150         * appdomain.c (add_assemblies_to_domain): Ditto.        
2151
2152         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
2153         field.  
2154
2155 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
2156
2157         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
2158
2159 2006-04-12  Martin Baulig  <martin@ximian.com>
2160
2161         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
2162         `USE_INCLUDED_LIBGC'.   
2163
2164 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
2165
2166         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
2167         the patch contains ../ and a small directory name later. Hopefully fixes
2168         #78035.
2169
2170 2006-04-10  Martin Baulig  <martin@ximian.com>
2171
2172         Clean up the debugger's thread-handling code.
2173
2174         The debugger's thread-handling code has been moved from
2175         ../mini/debug-debugger.c to threads.c.  We now iterate directly
2176         over the `threads' hash, keep track of exiting threads and also
2177         use proper locking.
2178
2179         We can now debug XSP and XSP based applications with the debugger.
2180
2181         * object-internals.h (MonoThread): Added `gpointer end_stack'.
2182
2183         * threads.h
2184         (MonoThreadCallbacks): Removed; this was only used by the debugger.
2185         (mono_install_thread_callbacks): Likewise.      
2186
2187         * threads.c (mono_thread_callbacks): Removed.
2188         (debugger_thread_created, debugger_thread_exited): New static functions.
2189         (start_wrapper): Call debugger_thread_created().
2190         (thread_cleanup): Call debugger_thread_exited().
2191         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
2192         (mono_debugger_init_threads): New public function.
2193         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
2194         iterate directly over the `threads' hash and also use proper locking.
2195
2196         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
2197
2198         * mono-debug-debugger.h
2199         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
2200
2201 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
2202
2203         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
2204         argument type=array. Fixes #78057.
2205
2206 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
2207
2208         * culture-info-table.h : regenerated. Fixed bug #69652.
2209
2210 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
2211
2212         * loader.c metadata.c: Reapply a variant r59116.
2213         
2214         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
2215
2216         * class.c (mono_class_setup_interface_offsets): New internal function.
2217
2218         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
2219         interfaces too. Fixes #77398.
2220
2221         * reflection.c (encode_cattr_value): Add support for 
2222         parameter type=object, argument type=array.
2223         (load_cattr_value): Ditto. Fixes #77916.
2224
2225         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
2226         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
2227
2228         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
2229         a byval char array and CharSet is Ansi.
2230
2231         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
2232
2233 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
2234
2235         * metadata.c: Add some locking comments.
2236         
2237         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
2238         mempool.
2239         (mono_metadata_free_method_signature): Don't free the signature itself.
2240
2241         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
2242
2243         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
2244         reference the same MonoImage.
2245         (mono_assembly_load_from_full): Add an assert.
2246
2247 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
2248
2249         * image.c (mono_image_close): Don't put the image we are about to free into the
2250         loaded_images_guid_hash.
2251
2252         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
2253         to reduce code duplication.
2254
2255         * marshal.c: Register the native functions called by this module as icalls, to
2256         somewhat centralize the creation of MonoMethodSignature's.
2257
2258         * loader.c (mono_method_signature): Add a cache for method signatures.
2259
2260         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
2261         the parameter attributes of a method.
2262         (mono_metadata_parse_method_signature_full): Refactored the computation of
2263         parameter attributes into a separate function. Also avoid one allocation in
2264         most cases.
2265
2266         * assembly.c (mono_assembly_close): Ditto.
2267
2268         * image.c (mono_image_close): Log trace messages with INFO level.
2269
2270         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
2271
2272         * image.c reflection.c: Correct reference counting of image modules.
2273         
2274         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
2275         of this function from the image mempool.
2276         
2277         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
2278         to allow more cached types to be used.
2279
2280         * mono-debug.c (mono_debug_add_method): Appled patch from
2281         David S. Miller  <davem@sunset.davemloft.net>: Access 
2282         minfo->lexical_blocks[] entry elements using read32().
2283
2284 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
2285
2286         * loader.c (mono_free_method): No longer free the method header for non-dynamic
2287         methods as it is allocated from the mempool.
2288
2289         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
2290         image mempool.
2291
2292         * metadata-internals.h: Add comments describing the reference counting scheme
2293         used for MonoImage and MonoAssembly.
2294
2295         * image.c assembly.c reflection.c: Rework reference counting of images and 
2296         assemblies so they are freed when the runtime is shut down. Free some 
2297         additional memory structures when an image is unloaded.
2298         
2299 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
2300
2301         * class.c loader.c reflection.c: Allocate more data structures in
2302         the image mempool.
2303
2304 2006-03-31  Miguel de Icaza  <miguel@novell.com>
2305
2306         * icall.c
2307         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
2308         build on pre glib 2.4 systems.
2309
2310 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
2311
2312         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
2313
2314         * icall.c: Fix some warnings.
2315
2316 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
2317
2318         * culture-info-table.h : regenerated.
2319
2320 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
2321
2322         * threads.c, object-internals.h, verify.c: changed the culture caching
2323         code to use a normal MonoArray for storage so the GC can keep track of
2324         them easily. Fixed bits of the cache logic, too and simplified the
2325         code.
2326
2327 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
2328
2329         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
2330         thread for non-Boehm GCs.
2331
2332 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2333
2334         * domain.c, object.c, domain-internals.h: reduce the amount of memory
2335         needed to keep track of the data for static fields.
2336
2337 2006-03-29  Raja R Harinath  <rharinath@novell.com>
2338
2339         Fix #75172
2340         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
2341         for interface classes.  Use 'num_methods' instead.
2342         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
2343         before using '->vtable_size' field.
2344
2345 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
2346
2347         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
2348         doesn't contain managed pointers, so use a normal hashtable.
2349
2350 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
2351
2352         * reflection.c, class-internals.h, domain.c: fixed handling of types
2353         used as values for objects in custom attributes (bug #77915):
2354
2355 2006-03-24  Martin Baulig  <martin@ximian.com>
2356
2357         * class.c (mono_class_setup_fields): Added support for generic
2358         instances; fixes #77580.
2359
2360 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2361
2362         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
2363
2364 2006-03-24  Dick Porter  <dick@ximian.com>
2365
2366         * file-io.c (get_file_attributes): More stat macro breakage.
2367         Fixes bug 77759.
2368
2369 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
2370
2371         * profiler.c: added the file=filename option in the default profiler
2372         to output the profile data to filename.
2373
2374 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2375
2376         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
2377         bug #77877.
2378
2379 2006-03-22  Martin Baulig  <martin@ximian.com>
2380
2381         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
2382         allocated `MonoClassField *' in `fb->handle'.
2383
2384 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2385
2386         * class.c, image.c, metadata-internals.h: implemented new mechanism to
2387         allocate interface ID to save memory and allow better ID reuse on
2388         appdomain unload. setup_generic_vtable () removal from Martin.
2389
2390 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
2391
2392         * object.h, appdomain.c, domain.c, exception.c, icall.c,
2393         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
2394         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
2395         write barriers for reference stores with managed objects accessed with
2396         C structures in the runtime and in embedding programs.
2397
2398 2006-03-20  Raja R Harinath  <rharinath@novell.com>
2399
2400         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
2401         'interface_id' and 'max_interface_id' fields of MonoClasses
2402         representing open generic types.
2403
2404 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
2405
2406         * object.h, object.c, icall.c: added functions to deal with
2407         storing valuetypes that contain references in managed objects.
2408         * reflection.c, string-icalls.c, threads.c, marshal.c: small
2409         fixes and comments around uses of mono_array_addr ().
2410
2411 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
2412
2413         * object.h, icall.c, monitor.c: object.GetHashCode ()
2414         implementation that supports the moving garbage collector.
2415
2416 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
2417
2418         * icall.c, threads-types.h, threads.c: implemented finalizer for
2419         LocalDataStoreSlot.
2420
2421 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
2422
2423         * metadata.c (mono_type_size): Add a fixme.
2424         (mono_type_stack_size): Ditto.
2425
2426         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
2427         'type_forwarders' field.
2428
2429         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
2430         attribute from net 2.0.
2431
2432         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
2433         from class.c.
2434
2435         * class.c (mono_class_setup_fields): Fix a warning.
2436         
2437         * class.c (mono_class_from_name): Add support for assemblyref entries
2438         in the EXPORTEDTYPE table.
2439
2440         * reflection.c: Add support for handling type forwarders under net 2.0.
2441
2442         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
2443         
2444 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
2445
2446         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
2447         overwriting entries in ModuleBuild->types, also clean up the code
2448         a little. Fixes #77774.
2449
2450 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
2451
2452         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
2453         load friend assembly info when present.
2454
2455 2006-03-14  Raja R Harinath  <rharinath@novell.com>
2456
2457         Fix crasher on gtest-158.cs.
2458         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
2459         the return value if the MonoClass we want is yet in an
2460         inconsistent state.
2461         * class.c (mono_class_create_from_typedef): Add an comment
2462         explaining an order dependency between mono_class_setup_parent and
2463         mono_class_setup_mono_type.
2464
2465 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
2466
2467         * class.c: documentation updates and events bug fix.
2468
2469 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
2470
2471         * class.c: some cleanup, locking fixes.
2472
2473 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
2474
2475         * class.c: fix the generics code to setup nested
2476         type info to the instantiated type (bug #77770).
2477
2478 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2479
2480         * marshal.c: fixed a few type correctness issues.
2481
2482 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2483
2484         * loader.c: the Set/Get/Addrtess array methods should be public.
2485
2486 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
2487
2488         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
2489         
2490         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
2491         info->wrapper.
2492
2493 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
2494
2495         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
2496
2497         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
2498
2499         * mempool.c (mono_mempool_alloc): Speed this up a bit.
2500         (mono_mempool_alloc0): Ditto.
2501
2502 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2503
2504         * socket-io.c:
2505         (create_object_from_sockaddr): it was allocating 4 extra bytes
2506         for the AF_UNIX data. Fixes bug #77747.
2507
2508 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
2509
2510         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
2511
2512 2006-03-09  Dick Porter  <dick@ximian.com>
2513
2514         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
2515         Fixes bug 76966 again.
2516
2517 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
2518
2519         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
2520         names from r57532
2521         * appdomain.c: Bumped corlib version to 48 (due to r57532)
2522
2523 2006-03-07  Martin Baulig  <martin@ximian.com>
2524
2525         * object.c
2526         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
2527
2528 2006-03-07  Martin Baulig  <martin@ximian.com>
2529
2530         * class.c
2531         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
2532         regression introduced in r56970; see gtest-252.cs.
2533
2534         * loader.c (mono_get_method_constrained): Correctly handle generic
2535         methods; see gtest-253.cs.
2536
2537 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
2538
2539         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
2540
2541 2006-03-04  Martin Baulig  <martin@ximian.com>
2542
2543         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
2544         compute the parent type at runtime, just like we're already doing
2545         it for interfaces.
2546
2547         * reflection.c
2548         (mono_reflection_bind_generic_parameters): Don't compute the
2549         parent type anymore.
2550
2551         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
2552
2553 2006-03-04  Martin Baulig  <martin@ximian.com>
2554
2555         * mono-debug-debugger.h
2556         (mono_debugger_create_notification_function): Allocate memory at
2557         runtime and return a pointer to it.
2558
2559 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
2560
2561         * assembly.c: Fix windows build.
2562         
2563         * assembly.c: Fix build.
2564
2565         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
2566
2567         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
2568         
2569 2006-03-03  Dick Porter  <dick@ximian.com>
2570
2571         * process.c
2572         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
2573         Check parameters before dereferencing them.  Fixes Aaron's part of
2574         bug 77393.
2575
2576 2006-03-03  Raja R Harinath  <rharinath@novell.com>
2577
2578         Fix performance regression.
2579         * loader.c (find_method_in_class): Add 'from_class' argument.
2580         Rename 'klass' argument to 'in_class'.  The signature is compared
2581         against the method in 'in_class', and the corresponding method is
2582         returned from 'from_class'.
2583         (find_method): Walk both 'in_class' and 'from_class' in parallel.
2584         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
2585         type definition and generic instantiation in parallel.
2586         (mono_get_method_constrained): Update to changes.
2587
2588 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
2589
2590         * threads.c: make sure the domain is correct, too when doing
2591         mono_thread_attach ().
2592
2593 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
2594
2595         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
2596         windows. Fixes #77683.
2597
2598 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
2599
2600         * object.h, *: introduced specific way to set elements of an array
2601         of references to be used as write barrier. Still need to audit the
2602         uses of mono_array_addr.
2603
2604 2006-03-01  Miguel de Icaza  <miguel@novell.com>
2605
2606         * object-internals.h: New field to cache the assmebly name, patch
2607         from Tambet Ingo (tambet@ximian.com)
2608
2609 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
2610
2611         * decimal.h, class-internals.h, metadata-internals.h,
2612         file-io.h: mark a few function declarations as internal, to
2613         reduce the number of PLT entries.
2614
2615 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2616
2617         * file-io.c: fix typo in warning message.
2618
2619 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
2620
2621         * loader.c: on unix, lookup the "*A" version of a function
2622         if charset is auto as a second option before failing.
2623
2624 2006-02-28  Raja R Harinath  <rharinath@novell.com>
2625
2626         * class.h (mono_class_inflate_generic_method): Revert to two
2627         argument version.
2628         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
2629         (mono_class_inflate_generic_method_full): Add.
2630         * class.c (mono_class_inflate_generic_method_full): Rename from
2631         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
2632         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
2633         * loader.c, reflection.c: Update to changes.
2634
2635 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
2636
2637         * icall.c: const fixes and small improvements.
2638
2639 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2640
2641         * threadpool.c: for asynchronous connect(), enable the same workaround
2642         for BSD 6 as for the Mac. Fixes bug #77637.
2643
2644 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
2645
2646         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
2647         formatted classes. Fixes #77524.
2648
2649 2006-02-24  Raja R Harinath  <rharinath@novell.com>
2650
2651         * class.c (inflate_generic_type): Add a couple more
2652         micro-optimizations.
2653         (inflate_generic_context): Don't use the 'gmethod' from
2654         'inflate_with'.
2655         (mono_class_inflate_generic_method): If the method has generic
2656         parameters, but the passed-in context doesn't have a 'gmethod',
2657         create one.  Use the possibly simplified generic instantiation
2658         from the declaring class instead of the one passed in.
2659
2660 2006-02-24  Raja R Harinath  <harinath@gmail.com>
2661
2662         Make generic method signature and method header handling lazy.
2663         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
2664         (inflate_generic_header): Likewise.
2665         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
2666         parameter to avoid inflating types.
2667         (mono_get_inflated_method): Empty out.
2668         * class.h (mono_class_inflate_generic_method): Update to changes.
2669         * loader.c (mono_get_method_from_token): Don't parse signature for
2670         generic methods, nor methods of generic classes.
2671         (mono_method_signature): Rename from 'mono_method_signature'.
2672         Inflate signature on demand.
2673         (mono_method_get_header): Inflate method header on demand.
2674         * reflection.c: Update to changes.
2675
2676 2006-02-23  Raja R Harinath  <rharinath@novell.com>
2677
2678         * metadata.c (mono_metadata_inflate_generic_inst): If the
2679         instantiation is closed, don't bother expanding it in the new
2680         context.
2681         * class.c (inflate_generic_class): If the generic instantiation
2682         doesn't change after inflation, return the argument itself.
2683         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
2684         Add bounds checks.
2685         (inflate_generic_context): If neither the generic class nor the
2686         generic method instantiations change, return the original context.
2687         * reflection.c (mono_method_get_object): Do
2688         'mono_get_inflated_method' before accessing the ->klass field.
2689         (inflate_mono_method): Don't create a MonoGenericMethod unless
2690         necessary.
2691         (inflate_method): Don't pass a constructed type as the declaring
2692         type of a methodbuilder.
2693
2694 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
2695
2696         * object.c: fix memory overwrite.
2697
2698 2006-02-22  Dick Porter  <dick@ximian.com>
2699
2700         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
2701         it doesn't work any more.
2702         (mono_threads_request_thread_dump): Fix unused variable warnings.
2703
2704 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2705
2706         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
2707         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
2708         the public header file.
2709
2710 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
2711
2712         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
2713
2714 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
2715
2716         * class-internals.h, object.c: reduce the size of MonoVTable
2717         and store the interface_offsets array at negative offsets.
2718
2719 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
2720
2721         * metadata.c: tweak table descriptors data structures to reduce
2722         size and runtime relocations.
2723
2724 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2725
2726         * marshal.c: fix some types and opcodes to be type-safe
2727         in marshaling wrappers.
2728
2729 2006-02-21  Ankit Jain  <jankit@novell.com>
2730
2731         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
2732
2733 2006-02-21  Raja R Harinath  <rharinath@novell.com>
2734
2735         * metadata.c (get_constraints): Relax debugging checks for monodis.
2736
2737 2006-02-21  Ankit Jain  <jankit@novell.com>
2738
2739         * metadata.c (mono_metadata_load_generic_params): Move the code
2740         checking for ambiguous generic params from here to mono/dis/get.c
2741         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
2742
2743 2006-02-21  Raja R Harinath  <harinath@gmail.com>
2744
2745         Fix assertion triggered when compiling nemerle.
2746         * class.c (mono_get_shared_generic_inst): Rename from
2747         get_shared_inst and make non-static.
2748         * loader.c (mono_get_shared_generic_method): New.  Used to create
2749         the MonoGenericContext-equivalent of a MonoGenericContainer.
2750         (mono_get_method_from_token): Initialize the 'context' field of
2751         the created MonoGenericContainer.
2752         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
2753         * metadata.c (get_constraints): Add sanity check.
2754         * class-internals.h: Add new internal methods.
2755
2756         * reflection.c (verify_safe_for_managed_space): New sanity check.
2757         Currently checks that owner-less generic parameters aren't allowed
2758         in managed space.
2759         (mono_type_get_object): Use it.
2760         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
2761         that are now in mono_type_get_object.
2762         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
2763
2764 2006-02-19  Raja R Harinath  <harinath@gmail.com>
2765
2766         * metadata.c (mono_type_create_from_typespec): Rename from
2767         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
2768         argument and caching of types in the generic container.
2769         (unwrap_arrays, find_generic_param): Remove.
2770         * metadata-internals.h: Update.
2771         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
2772
2773 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
2774
2775         * class.c (mono_class_get_exception_for_failure): Fix a warning.
2776
2777         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
2778         return values. Fixes #77581.
2779
2780         * class.c (mono_fnptr_class_get): Switch name and name_space.
2781
2782         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
2783         classes and add support for [In, Out] attributes.
2784         (mono_marshal_free_asany): Ditto. Fixes #77524.
2785
2786 2006-02-18  Raja R Harinath  <harinath@gmail.com>
2787
2788         * class.c (mono_class_from_generic_parameter): Make more robust to
2789         incomplete MonoGenericContainers from monodis.
2790
2791 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2792
2793         * class-internals.h: added some more exception types.
2794         * class.c, metadata.c: added a few checks to handle missing
2795         types.
2796
2797 2006-02-17  Raja R Harinath  <rharinath@novell.com>
2798
2799         Use owner-less generic-params some more.
2800         * class.c (my_mono_class_from_generic_parameter): Remove.
2801         (mono_class_from_generic_parameter): Handle null image,
2802         param->name and param->owner.
2803         (mono_class_from_mono_type): Update.
2804         (mono_class_create_from_typespec): Remove 'container' parameter.
2805         If that parameter is non-null, the result is always inflated by
2806         'mono_class_get_full' anyway.
2807         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
2808         parameter.
2809         (mono_class_get_full): Update.
2810
2811         * class.c (inflate_generic_type) [GENERICINST]: If the generic
2812         instance is not open, don't bother inflating.
2813         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
2814         parse metadata for inflated classes.
2815         (_mono_class_get): Change GenericContext* parameter to
2816         GenericContainer*.
2817         (mono_class_create_from_typespec): Likewise.  Simplify, and
2818         implement trivially.  All the cases are handled in
2819         mono_class_from_mono_type.  Don't inflate returned class.
2820         (mono_class_get_full): Delegate GENERICINST optimization to
2821         inflate_generic_type.
2822         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
2823
2824 2006-02-16  Dick Porter  <dick@ximian.com>
2825
2826         * socket-io.c (create_object_from_sockaddr): Fix typo.
2827         (create_sockaddr_from_object): Check array lengths before
2828         potentially accessing items off the end.
2829         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
2830         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
2831         (ves_icall_System_Net_Sockets_Socket_Send_internal)
2832         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
2833         length checks to avoid wraparound overflows.
2834         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
2835         contents of the array of sockets
2836         (hostent_to_IPHostEntry2)
2837         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
2838         Check return value of inet_ntop ().
2839         (addrinfo_to_IPHostEntry): Fix typo
2840
2841 2006-02-16  Raja R Harinath  <rharinath@novell.com>
2842
2843         Type metadata parsing doesn't use generic-instantiation information.
2844         * metadata.c (mono_metadata_parse_array_full): Change
2845         MonoGenericContext* parameter to MonoGenericContainer*.
2846         (mono_metadata_parse_type_full): Likewise.
2847         (mono_type_create_from_typespec_full): Likewise.
2848         (mono_metadata_parse_mh_full): Likewise.
2849         (mono_metadata_parse_generic_inst): Likewise.
2850         (do_mono_metadata_parse_generic_class): Likewise.
2851         (do_mono_metadata_parse_type): Likewise.
2852         * metadata-internals.h: Update to changes.
2853         * class.c (mono_class_find_enum_basetype): Likewise.
2854         (mono_class_setup_fields): Likewise.
2855         (mono_class_create_from_typespec): Likewise.
2856         * loader.c (method_from_methodspec): Likewise.
2857         (mono_get_method_from_token): Likewise.
2858         (mono_method_get_header): Likewise.
2859
2860 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2861
2862         * marshal.c: handle additional GENERICINST case (patch from
2863         Thong Nguyen <tum@veridicus.com>).
2864         Fix a few cases where LDIND_I/STIND_I was used for references.
2865
2866 2006-02-16  Raja R Harinath  <rharinath@novell.com>
2867
2868         * reflection.c (mono_reflection_get_token): Remove unused variable.
2869
2870 2006-02-16  Martin Baulig  <martin@ximian.com>
2871
2872         * reflection.c (mono_reflection_get_token): Add support for fields
2873         in instantiated generic types.
2874
2875         * icall.c
2876         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
2877
2878 2006-02-15  Martin Baulig  <martin@ximian.com>
2879
2880         * icall.c
2881         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
2882         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
2883         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
2884         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
2885
2886 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
2887
2888         * class.c, metadata.c, metadata.h, object.c, icall.c,
2889         marshal.c: changed mono_type_get_underlying_type () to do
2890         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
2891         Fixed handling of instantiated generic valuetypes (bug #75479).
2892
2893 2006-02-15  Raja R Harinath  <rharinath@novell.com>
2894
2895         * metadata.c (mono_metadata_decode_signed_value): Simplify.
2896         Delegate to mono_metadata_decode_value, and work on the returned value.
2897
2898         * icall.c (ves_icall_MonoType_GetGenericArguments):
2899         Add consistency check here too.
2900         
2901 2006-02-15  Ankit Jain  <jankit@novell.com>
2902
2903         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
2904         char/short etc.
2905
2906 2006-02-15  Ankit Jain  <jankit@novell.com>
2907
2908         * metadata.c (mono_metadata_decode_signed_value): New function to decode
2909         signed values, used only for representing lower bounds of arrays.
2910         (mono_metadata_parse_array_full): Use new
2911         mono_metadata_decode_signed_value to decode lower bounds.
2912
2913 2006-02-14  Martin Baulig  <martin@ximian.com>
2914
2915         * reflection.c
2916         (mono_reflection_get_token): Support "MonoGenericMethod" and
2917         "MonoGenericCMethod" and allow generic instances / methods.
2918
2919 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
2920
2921         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
2922         to obtain the terminal size using an ioctl.
2923
2924         * object.c (mono_nullable_init): Revert this as nullable reference
2925         types are not valid.
2926         (mono_nullable_box): Ditto.
2927
2928 2006-02-09  Dick Porter  <dick@ximian.com>
2929
2930         * threads.c (mono_thread_detach): Drop a reference to the thread
2931         we're detaching.
2932
2933 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
2934
2935         * object.c (mono_nullable_init): Handle nullable reference types.
2936         (mono_nullable_box): Ditto. Fixes #77446.
2937
2938 2006-02-07  Martin Baulig  <martin@ximian.com>
2939
2940         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
2941
2942 2006-02-07  Ankit Jain  <jankit@novell.com>
2943
2944         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
2945         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
2946         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
2947         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
2948         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
2949         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
2950
2951 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
2952
2953         * class.c (mono_class_create_generic): Set type_token as well.
2954
2955         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
2956         compatible with MS.
2957
2958 2006-02-02  Martin Baulig  <martin@ximian.com>
2959
2960         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
2961         has never been used so far.
2962
2963 2006-02-02  Martin Baulig  <martin@ximian.com>
2964
2965         * mono-debug-debugger.h: Changed comment at the top of this file;
2966         the header is not installed, but it's safe to #include it from
2967         within the JIT.
2968
2969         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
2970         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
2971
2972 2006-02-02  Martin Baulig  <martin@ximian.com>
2973
2974         * mono-debug.h
2975         (MonoSymbolTable): Removed the `metadata_info' field.
2976
2977         * mono-debug.c
2978         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
2979
2980         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
2981         (mono_debugger_add_builtin_types): Removed.
2982         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
2983         (mono_debugger_create_notification_function): We now operate on a
2984         pre-allocated area; take a `gpointer' and return `void'.
2985
2986         * mono-debug-debugger.c
2987         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
2988         (mono_debugger_add_builtin_types): Removed.
2989
2990 2006-02-02  Martin Baulig  <martin@ximian.com>
2991
2992         * threads.c (mono_debugger_create_all_threads): New public method.
2993
2994 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2995
2996         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
2997         breaks on several platforms.
2998
2999 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
3000
3001         * assembly.c: the VS.NET build doesn't supply default values for
3002         MONO_ASSEMBLIES and MONO_CFG_DIR.
3003
3004 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
3005
3006         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
3007         helper function.
3008
3009         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
3010
3011         * loader.c (method_from_memberref): Fix a warning.
3012
3013         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
3014
3015         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
3016         with explicit layout. Fixes #77433.
3017
3018 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
3019
3020         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
3021         max_interface_id is initialized before using it. Fixes #77398.
3022         (ves_icall_Type_GetInterfaces): Ditto.
3023
3024 2006-01-30  Raja R Harinath  <rharinath@novell.com>
3025
3026         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3027         allocate memory for parameter attributes when parsing memberref
3028         signatures.
3029         * loader.c (mono_loader_set_error_method_load): Don't warn.
3030         (method_from_memberref): Ensure MissingMethodException gets thrown
3031         if method is not found.  Make warning more informative.
3032
3033 2006-01-29  Raja R Harinath  <harinath@gmail.com>
3034
3035         Fix #77397
3036         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
3037         return true if is byref.
3038         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3039         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
3040         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
3041
3042 2006-01-27  Raja R Harinath  <rharinath@novell.com>
3043
3044         Fix tests/find-method.2.il
3045         * loader.c (find_method, find_method_in_class): Remove is_inflated
3046         argument.  Revert 2006-01-18 change.
3047         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
3048         is generic, search for method in its generic definition.
3049         * class.c (mono_class_setup_vtable_general): Print generic
3050         arguments of generic types in debugging printf.
3051
3052 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
3053
3054         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
3055
3056         * threads.c (mono_threads_request_thread_dump): New helper function.
3057
3058 2006-01-25  Raja R Harinath  <rharinath@novell.com>
3059
3060         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
3061
3062 2006-01-25  Ankit Jain  <jankit@novell.com>
3063
3064         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
3065         move definition to ..
3066         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
3067         
3068 2006-01-25  Ankit Jain  <jankit@novell.com>
3069             Raja R Harinath  <rharinath@novell.com>
3070
3071         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
3072         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
3073         as necessary.
3074
3075 2006-01-25  Martin Baulig  <martin@ximian.com>
3076
3077         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
3078         `MonoDebuggerThread' into debug-debugger.c.
3079
3080 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
3081
3082         * profiler.c: fix printing of data.
3083
3084 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
3085
3086         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
3087           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
3088
3089 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
3090
3091         * object.c: fix deadlock related to string interning.
3092
3093 2006-01-23  Martin Baulig  <martin@ximian.com>
3094
3095         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3096
3097         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
3098
3099 2006-01-23  Martin Baulig  <martin@ximian.com>
3100
3101         * mono-debug.h: Moved the prototypes of some functions which are
3102         used by the JIT here from mono-debug-debugger.h.
3103
3104 2006-01-21  Martin Baulig  <martin@ximian.com>
3105
3106         * Makefile.am: Don't install mono-debug-debugger.h.
3107
3108 2006-01-21  Martin Baulig  <martin@ximian.com>
3109
3110         * mono-debug-debugger.h: Enforce the private status of this header
3111         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
3112         Moved some stuff from mono-debugger-jit-wrapper.h here.
3113
3114 2006-01-20  Raja R Harinath  <rharinath@novell.com>
3115
3116         * class.c (mono_class_from_typeref): Add a sanity test to help
3117         catch lack of assembly load/search hooks.
3118
3119 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
3120
3121         * marshal.c (emit_struct_conv): Relax the fields with same offset
3122         check even more. Fixes #77230.
3123
3124 2006-01-18  Martin Baulig  <martin@ximian.com>
3125
3126         * loader.c (find_method_in_class): Added `gboolean is_inflated'
3127         argument; if false, we compare the uninstantiated signatures.
3128         (method_from_memberref): Compare the uninstantiated signatures;
3129         fixes #76417.
3130
3131 2006-01-18  Robert Jordan  <robertj@gmx.net>
3132
3133         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
3134         Clear the weak link. Fixes bug #77170.
3135
3136         * gc.c (mono_gchandle_free):
3137         Reflect *-gc.c changes (tiny optimization).
3138
3139 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
3140
3141         * metadata.c (mono_metadata_signature_dup): Applied patch from
3142         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
3143         Fixes #77288.
3144
3145 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
3146
3147         * marshal.c (emit_struct_conv): Allow fields with the same offset when
3148         marshalling from native to managed code. Fixes #77230.
3149
3150 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3151
3152         * threadpool.c: fix problem (Mac only) when more than one asynchronous
3153         connect. Fixes bug #77020.
3154
3155 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
3156
3157         * class.c: fixed id assignement for nested interfaces (bug #77275).
3158         Added also better info for --print-vtable debugging.
3159
3160 2006-01-12  Martin Baulig  <martin@ximian.com>
3161
3162         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
3163         interfaces on-the-fly; fixes #76625.
3164
3165         * class-internals.h
3166         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
3167         don't need that anymore.
3168
3169 2006-01-12  Miguel de Icaza  <miguel@novell.com>
3170
3171         * socket-io.c
3172         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
3173         To avoid initing the nested_classes when not needed I turned the
3174         PeerCredData as a toplevel internal class, as it has to be shared
3175         anyways. 
3176
3177         Fixes the CASA issue.
3178
3179 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
3180
3181         * domain.c: Accessors for MonoJitInfo
3182
3183         * profiler-private.h: Add jitinfo to the end jit hook
3184
3185         * profiler.[ch]: Define new hooks, called after jitting which give
3186         the MonoJitInfo that was compiled
3187
3188 2006-01-10  Martin Baulig  <martin@ximian.com>
3189
3190         * class.c (mono_class_setup_events): Add support for generic
3191         classes; fixes #76440.
3192
3193 2006-01-06  Raja R Harinath  <rharinath@novell.com>
3194
3195         Fix #77160.
3196         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
3197         on passed-in method.
3198
3199 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
3200
3201         * object.c (mono_runtime_invoke_array): Add Nullable support.
3202
3203         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
3204
3205 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
3206
3207         * file-io.c: Don't consider sockets as directory and avoid an endless
3208         loop. Fix bug #76966.
3209
3210 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
3211
3212         * object.c (mono_nullable_init): New helper function.
3213         (mono_nullable_box): Ditto.
3214
3215         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
3216
3217         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
3218
3219         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
3220         
3221 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
3222
3223         * class.c (mono_class_is_assignable_from): Make T assignable to 
3224         Nullable<T>.
3225
3226 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
3227
3228         * appdomain.c: Bump corlib version to 46.
3229         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
3230         serialization purpose) and changed ves_icall_System_Reflection_
3231         Assembly_get_code_base signature to accept a boolean (to escape, or 
3232         not, the assembly code base).
3233
3234 2005-12-23  Dick Porter  <dick@ximian.com>
3235
3236         * icall.c: 
3237         * threads-types.h: 
3238         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
3239         CreateEvent icall now returns "created" boolean parameter.
3240
3241 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
3242
3243         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
3244         #76967.
3245
3246         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
3247         when attr_klass is an interface. Fixes #77045.
3248
3249 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
3250
3251         * marshal.c (emit_struct_conv): Fix previous patch.
3252         
3253         * marshal.c (emit_struct_conv): Add a check for fields with the same
3254         offset.
3255
3256 2005-12-20  Raja R Harinath  <rharinath@novell.com>
3257
3258         Fix regression in Mono.C5.
3259         * class.c (mono_class_create_generic): If 'klass' is an interface
3260         set up the interface offsets.
3261         (mono_class_is_assignable_from): Don't throw away generic arguments.
3262
3263 2005-12-19  Raja R Harinath  <rharinath@novell.com>
3264
3265         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
3266         type parameters.
3267
3268 2005-12-15  Raja R Harinath  <rharinath@novell.com>
3269
3270         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
3271         dead store.
3272         (do_mono_metadata_parse_generic_class): Don't pass the current
3273         generic context when parsing the type being instantiated: it
3274         cannot use it, anyway.
3275
3276         * loader.c (method_from_memberref): Don't inflate a signature if
3277         it doesn't contain any type parameters.
3278
3279 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
3280
3281         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
3282
3283 2005-12-14  Martin Baulig  <martin@ximian.com>
3284
3285         * class.c
3286         (mono_type_get_name_recurse): Don't return null for type
3287         parameters and open generic classes.
3288         (mono_class_setup_methods): Don't exclude generic instances.
3289         (mono_get_unique_iid): Use different IDs for different
3290         instantiations of the same generic type.
3291         (mono_class_setup_vtable): Only use setup_generic_vtable() for
3292         open generic instances; create a normal vtable for closed generic
3293         instances.
3294         (mono_class_setup_vtable_general): We're now also called for
3295         closed generic instances.
3296
3297         * reflection.c
3298         (mono_reflection_bind_generic_parameters): Correctly use
3299         mono_metadata_lookup_generic_inst() everywhere.
3300
3301 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
3302
3303         * object.c (mono_class_create_runtime_vtable): Call 
3304         mono_class_setup_vtable ().
3305
3306         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
3307         function.
3308         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
3309         #76959.
3310
3311         * loader.c (mono_loader_set_error_type_load): Print the type load
3312         warnings to the console so they are more visible to the user.
3313         (mono_loader_set_error_method_load): Ditto.
3314
3315         * reflection.c (ensure_runtime_vtable): Revert the last change as it
3316         is still broken.
3317         
3318         * reflection.c (ensure_runtime_vtable): Fix build.
3319
3320         * reflection.c (ensure_runtime_vtable): Disable an optimization which
3321         doesn't work in all cases.
3322
3323 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
3324
3325         * object.c (mono_array_new_full): Treat a single dimensional array
3326         with 0 lower bounds as an szarray. Fixes #76973.
3327
3328         * reflection.c (custom_attr_visible): Really fix this.
3329
3330 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
3331
3332         * reflection.c (custom_attr_visible): Allow nested public attributes
3333         as well.
3334
3335         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
3336         interface check.
3337
3338 2005-12-12  Raja R Harinath  <harinath@gmail.com>
3339
3340         * class.c (set_generic_param_owner): Delete.
3341         (mono_class_create_from_typedef): Don't set ->owner field of
3342         generic parameters to "param containers" of enclosing classes.
3343         * reflection.c (mono_reflection_initialize_generic_parameter):
3344         Likewise.
3345
3346 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
3347
3348         * reflection.c (custom_attr_visible): Fix build.
3349
3350 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
3351
3352         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
3353         private attributes.
3354         
3355         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
3356         handling of null parameter defaults.
3357
3358 2005-12-09  Raja R Harinath  <rharinath@novell.com>
3359
3360         * class.c (mono_class_from_generic_parameter): Don't set
3361         klass->generic_container.
3362         (my_mono_class_from_generic_parameter): Likewise.
3363
3364 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
3365
3366         * reflection.c (load_public_key): Fix a warning.
3367         (method_encode_code): Fix unaligned accesses.
3368
3369 2005-12-07  Martin Baulig  <martin@ximian.com>
3370
3371         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
3372
3373         * reflection.c
3374         (write_generic_param_entry): Encode our custom attrs.
3375
3376         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
3377
3378 2005-12-07  Martin Baulig  <martin@ximian.com>
3379
3380         * reflection.c (encode_new_constraint): Removed; we don't use the
3381         `NewConstraintAttribute' anymore.
3382
3383 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
3384
3385         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
3386         not fire a TypeResolve event when Assembly.GetType () is called.
3387
3388 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
3389
3390         Beginning of support for nullable types in the runtime. Parts of
3391         this patch are from Martin.
3392
3393         * appdomain.c (MONO_CORLIB_VERSION): Bump
3394
3395         * domain.c (mono_init_internal): get the nullable type
3396
3397         * class.c (mono_class_is_nullable): New method
3398         (mono_class_get_nullable_param): New mehod
3399         (mono_class_create_generic): In types T? set cast_class to T
3400
3401         * class-internals.h (MonoDefaults): new nullable default class
3402         (mono_class_get_nullable_param, mono_class_get_nullable_param):
3403         new methods.
3404
3405 2005-12-05  Raja R Harinath  <rharinath@novell.com>
3406
3407         * metadata.c (select_container): New.  Refactor code to select the
3408         appropriate GenericContainer given the type of generic parameter
3409         we are looking for.
3410         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
3411         not a MonoGenericContext.  Use select_container.  Update parameters.
3412         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
3413         and MONO_TYPE_MVAR.
3414         (unwrap_arrays): Remove duplicate tests.
3415         (find_generic_param): Rename from 'has_same_context'.  Now walks a
3416         generic instantiated class to find any arguments that are generic
3417         parameters.
3418         (mono_type_create_from_typespec_full): Use find_generic_param to
3419         avoid evicting some generic instantiations from the typespec
3420         cache.
3421
3422 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
3423
3424         * reflection.c: fixed writing of doubles on ARM FPA.
3425
3426 2005-12-02  Robert Jordan  <robertj@gmx.net>
3427
3428         * icall.c: Fixed EventInfo.ReflectedType (#76829).
3429
3430 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3431
3432         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
3433         least on SUSE 10 they are not the same (on debian, they are just the
3434         same thing).
3435
3436 2005-12-01  Raja R Harinath  <rharinath@novell.com>
3437
3438         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
3439         DeclaringType for VARs and MVARs.
3440         * class.c (set_generic_param_owner): Fix initialization of owner
3441         fields.
3442
3443 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
3444
3445         * icall.c: fixed Enum.ToObject() to correctly convert the values.
3446
3447 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3448
3449         * threadpool.c: workaround for a bug that shows up on the Mac:
3450         select()+connect() on a blocking socket is not like it should
3451         be, so we proceed to connect() in that case, wasting the I/O
3452         threadpool thread until connect succeedes. Fixes bug #75436.
3453
3454 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3455
3456         * threadpool.c: fix typo when setting file descriptor states.
3457
3458 2005-11-28  Raja R Harinath  <rharinath@novell.com>
3459
3460         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
3461         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3462         create a temporary signature container.
3463         (mono_metadata_parse_generic_param): Update to changes.
3464         (mono_type_create_from_typespec_full): Update to changes.
3465         * loader.c (method_from_memberref): Don't use a
3466         MonoGenericContainer while parsing a memberref signature.
3467         (method_from_methodspec): Remove dead-store of the 'container'
3468         variable.  It's overwritten before use.
3469
3470         * metadata.c (mono_type_create_from_typespec_full): Make debugging
3471         checks tighter.
3472         (mono_metadata_parse_generic_param): Likewise.
3473         * loader.c (find_method_in_class): Does not need a
3474         MonoGenericContainer.  Use 'mono_method_signature' rather than
3475         'mono_method_signature_full'.
3476         (find_method, mono_get_method_constrained, method_from_memberref):
3477         Update to changes.
3478
3479         * metadata.c (mono_type_create_from_typespec_full): Ensure that
3480         owner-less generic-parameters are never evicted from the typespec
3481         cache.
3482
3483         * loader.c (method_from_memberref): Don't use the current context
3484         when parsing signatures.
3485         (method_from_methodspec, mono_get_method_from_token): Update to changes.
3486
3487         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
3488         side-effects in g_assert.
3489         * loader.c (mono_get_method_from_token): Resolve klass earlier so
3490         that we don't potentially lose information.
3491
3492 2005-11-26  Dick Porter  <dick@ximian.com>
3493
3494         * icall.c:
3495         * threads.c: icalls to implement basic (ie, not named)
3496         System.Threading.Semaphore.
3497
3498 2005-11-24  Dick Porter  <dick@ximian.com>
3499
3500         * process.c
3501         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
3502         Use GetProcessId() if it's available.
3503
3504 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
3505
3506         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
3507
3508 2005-11-23  Raja R Harinath  <rharinath@novell.com>
3509             Ankit Jain  <jankit@novell.com>
3510
3511         * loader.c (mono_get_method_from_token): Initialize 'method' field
3512         of all generic parameters before parsing the signature.  Remove
3513         code that "fixed"-up MVAR references.
3514
3515 2005-11-23  Ankit Jain  <jankit@novell.com>
3516
3517         * metadata.c (mono_metadata_has_generic_params):
3518         (mono_metadata_load_generic_param_constraints):
3519         (mono_metadata_load_generic_params): Move duplicate code ...
3520         (mono_metadata_get_generic_param_row): ... here. Returns the
3521         first row-id in GenericParam table for a given owner (token).
3522         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
3523         prototype.
3524
3525 2005-11-23  Raja R Harinath  <rharinath@novell.com>
3526             Ankit Jain  <jankit@novell.com>
3527
3528         * metadata.c (mono_metadata_class_equal): Pass signature_only when
3529         comparing VARs too.
3530         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
3531         type->data.generic_param only if the type is an MVAR.
3532         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
3533         leak owner-less VARs and MVARs into managed space.
3534
3535 2005-11-21  Martin Baulig  <martin@ximian.com>
3536
3537         * class-internals.h
3538         (MonoMethod): Moved the `generic_container' here from
3539         `MonoMethodNormal' since we now also need it for
3540         `MonoMethodPInvoke';
3541         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
3542         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
3543         an union containing both `MonoMethodNormal' and
3544         `MonoMethodPInvoke'.
3545
3546         * loader.c
3547         (mono_get_method_from_token): Allow implementing generic methods
3548         as interncalls.
3549
3550         * threads.c
3551         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
3552         icall.
3553
3554 2005-11-17  Dick Porter  <dick@ximian.com>
3555
3556         * icall.c: 
3557         * process.h: 
3558         * process.c: Split the Process Start_internal icall into
3559         ShellExecuteEx_internal and CreateProcess_internal, which are
3560         called depending on whether UseShellExecute is true.  Fixes bug
3561         76670.
3562
3563         * appdomain.c (MONO_CORLIB_VERSION): Incremented
3564
3565 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
3566
3567         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
3568         'msize' parameters, use the information in 'mspec' instead.
3569         (emit_object_to_ptr_conv): Ditto.
3570
3571         * marshal.c (emit_struct_conv): Handle explicit layout structs with
3572         fields out of order. Fixes #76733.
3573
3574 2005-11-17  Ankit Jain  <jankit@novell.com>
3575
3576         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
3577
3578 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
3579
3580         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
3581           bug #76575.
3582
3583 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
3584
3585         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
3586         for types with non-auto layout. Fixes #76717.
3587
3588 2005-11-16  Ankit Jain  <jankit@novell.com>
3589
3590         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
3591         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
3592         if generic_context is null.
3593           (mono_metadata_generic_param_equal): param->owner can be null.
3594           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
3595         null.
3596
3597 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
3598
3599         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
3600         the correct value.
3601
3602 2005-11-15  Martin Baulig  <martin@ximian.com>
3603
3604         * object.c (set_value): Use mono_class_from_mono_type() instead of
3605         the hack for generic instances; fixes #76136.
3606
3607 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
3608
3609         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
3610         fields.
3611
3612         * image.c (load_metadata_ptrs): Initialize the new fields.
3613
3614         * reflection.c (create_dynamic_mono_image): Ditto.
3615
3616         * reflection.c (build_compressed_metadata): Use the new fields.
3617
3618         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
3619         icall.
3620
3621         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
3622         icall.
3623         
3624 2005-11-15  Ankit Jain  <jankit@novell.com>
3625             Raja R Harinath  <harinath@gmail.com>
3626
3627         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
3628         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
3629         new per-generic_container cache if the cached MonoType's context matches
3630         the current context.
3631           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
3632         to the expected context.
3633           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
3634
3635 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3636
3637         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
3638         we changed the signature of an icall.
3639         * icall.c: Modify to mono_double_ParseImpl return true/false 
3640         depending on the success, instead of throwing the exception. This will
3641         help us in Double.TryParse methods.
3642         
3643 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
3644
3645         * marshal.c (emit_marshal_object): Throw an exception when
3646         marshalling 'object' instead of crashing. Fixes #76696.
3647
3648 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
3649
3650         * class-internals.h: Add prototype for mono_type_get_full_name ().
3651
3652 2005-11-11  Dick Porter  <dick@ximian.com>
3653
3654         * threads.c (mono_thread_manage): Make sure the main thread has
3655         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
3656
3657 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
3658
3659         * loader.c (mono_loader_set_error_type_load): Log a warning to the
3660         console about the missing type.
3661         (mono_loader_set_error_method_load): Ditto.
3662
3663 2005-11-09  Miguel de Icaza  <miguel@novell.com>
3664
3665         * mono-config.c (mono_get_config_dir): Set the system defaults if
3666         none is specified.
3667
3668         * assembly.c (mono_set_dirs): New API entry point to set the
3669         assembly and the config directory in one call
3670
3671 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
3672
3673         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
3674         the ftnptr was created from a delegate in a domain other than the
3675         current domain. Fixes #75377.
3676
3677         * exception.h exception.c: Add mono_get_exception_not_supported ().
3678
3679 2005-11-08  Martin Baulig  <martin@ximian.com>
3680
3681         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
3682
3683 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
3684
3685         * security-manager.h: Added definitions to deal with strongname key 
3686         pairs bigger (and smaller) than 1024 bits.
3687         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
3688         adjust wrt the public key length being used.
3689
3690 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
3691
3692         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
3693           Windows build (r51396-51397).
3694
3695 2005-11-03  Martin Baulig  <martin@ximian.com>
3696
3697         * class.c (mono_class_setup_vtable_general): Also add generic
3698         methods to the vtable; fixes #76581.
3699
3700 2005-11-01  Miguel de Icaza  <miguel@novell.com>
3701
3702         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
3703         sure that we lookup GetString method from the System.Text.Encoding
3704         class, not the derived class or we get an empty method.
3705
3706         Fixed class #76612.
3707
3708 2005-10-25  Miguel de Icaza  <miguel@novell.com>
3709
3710         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
3711         if it has been previously set (embedders). 
3712
3713         Make mono_set_rootdir available also on Unix.
3714
3715 005-10-24  Robert Jordan  <robertj@gmx.net>
3716
3717         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
3718
3719 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
3720
3721         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
3722         only calls which are made to native code use this flag.
3723
3724         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
3725
3726 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
3727
3728         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
3729         Add support for FieldBuilders.
3730
3731 2005-10-29  Martin Baulig  <martin@ximian.com>
3732
3733         * mono-debug.c
3734         (mono_debug_using_mono_debugger): New public method; returns
3735         whether we're running inside the debugger.
3736
3737 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
3738
3739         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
3740         for Method/Constructor/FieldBuilders.
3741
3742 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
3743
3744         * reflection.c (module_add_cattrs): Save custom attributes for global methods
3745         and fields as well.
3746
3747 2005-10-26  Martin Baulig  <martin@ximian.com>
3748
3749         * mono-debug-debugger.c
3750         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
3751
3752 2005-10-24  Raja R Harinath  <harinath@gmail.com>
3753
3754         * icall.c (base64_to_byte_array): Don't pass an out-of-range
3755         integer to isspace.
3756
3757 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
3758
3759         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
3760         when passing valuetypes byref. Fixes #76502.
3761
3762 2005-10-19  Jackson Harper  <jackson@ximian.com>
3763
3764         * profiler.c: Don't put a . in front of types that are not in a
3765         namespace.
3766
3767 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
3768
3769         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
3770
3771 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
3772
3773         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
3774         #76436.
3775         (mono_marshal_get_ldflda_wrapper): Fix a warning.
3776
3777 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3778
3779         * assembly.c metadata-internals.h icall.c: Define an additional
3780         parameter for mono_assembly_name_parse_full, so we can avoid creating
3781         S.R.AssemblyName.Version when no version info wasn't passed.
3782         
3783 2005-10-09  Miguel de Icaza  <miguel@novell.com>
3784
3785         * class.c (mono_type_get_full_name): Reimplement method that was
3786         removed. 
3787
3788         * image.c: Some docs
3789
3790 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
3791
3792         * profiler.c (output_newobj_profile): Fix printing of Total memory
3793         on x86.
3794
3795 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
3796
3797         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
3798
3799 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
3800
3801         * threads.c: remove debug output.
3802
3803 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
3804
3805         * threads.c (mono_thread_manage): Fix crashes if more than 64
3806         threads need to be aborted. Hopefully fixes #75899.
3807
3808         * assembly.c (mono_stringify_assembly_name): New helper function.
3809
3810         * class.c: Use mono_stringify_assembly_name instead of the similar
3811         static function.
3812
3813         * assembly.h assembly.c: Add support for calling a postload search 
3814         hook if an assembly cannot be loaded.
3815
3816         * appdomain.c: Register new search hooks which call the AssemblyResolve
3817         events in AppDomain. Fixes #75231
3818
3819 2005-10-07  Martin Baulig  <martin@ximian.com>
3820
3821         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
3822         methods without debug info.
3823
3824 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
3825
3826         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
3827         wrappers.
3828
3829 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3830
3831         * file-io.c: now that we return symlinks, use lstat and, when the file
3832         is a symbolic link, stat, to get the file attributes. Also avoid the
3833         conversion to/from utf16/external.
3834
3835 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
3836
3837         * class.c (mono_class_layout_fields): Compute klass->has_references
3838         correctly if an embedded valuetype is not yet initialized. Fixes
3839         #76331.
3840
3841 2005-10-04  Martin Baulig  <martin@ximian.com>
3842
3843         * metadata.c
3844         (mono_metadata_load_generic_param_constraints): New public
3845         function; splitted the constraints loading out from
3846         mono_metadata_load_generic_params().
3847
3848         * class.c (mono_class_create_from_typedef): Call
3849         mono_metadata_load_generic_param_constraints() after setting up
3850         the type and creating our parent; fixes #75329.
3851
3852 2005-10-04  Martin Baulig  <martin@ximian.com>
3853
3854         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
3855         non-dynamic parent classes.
3856
3857 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
3858
3859         * file-io.c : win32 build fix (ETXTBSY seems not found).
3860
3861 2005-10-04  Martin Baulig  <martin@ximian.com>
3862
3863         * reflection.c
3864         (mono_image_get_methodspec_token): Make the cache actually work;
3865         fixes #75974.
3866
3867 2005-10-04  Martin Baulig  <martin@ximian.com>
3868
3869         * class.c (mono_class_name_from_token): Removed the unneccessary
3870         `MonoGenericContext *' argument.
3871
3872 2005-10-04  Martin Baulig  <martin@ximian.com>
3873
3874         * loader.c
3875         (method_from_methodspec): Make the caching work again; fixes the
3876         performance regression from #76262.
3877
3878 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3879
3880         * file-io.c:
3881         * file-io.h:
3882         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
3883         GetFileSystemEntries that performs the same work but without going
3884         into io-layer, locking, etc.
3885
3886 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
3887
3888         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
3889         ThreadState_Stopped as well. Fixes #76047.
3890
3891 2005-09-29  Martin Baulig  <martin@ximian.com>
3892
3893         * class.c
3894         (inflate_generic_context): If the new context has a `gmethod', set
3895         its `container' that that gmethod's `container'.
3896
3897         * metadata.c
3898         (mono_metadata_parse_generic_param): Simplify things;
3899         `generic_container = generic_context->container;' is just fine.
3900
3901         * loader.c (method_from_methodspec): Code cleanups.
3902
3903 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
3904
3905         * decimal.c: fix warning (and let gcc generate correct
3906         code on ARM with optimizations).
3907
3908 2005-09-28  Martin Baulig  <martin@ximian.com>
3909
3910         * loader.c
3911         (method_from_memberref): Added `MonoGenericContext *class_context'
3912         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
3913         (method_from_methodspec): If we're a memberref, use the enclosing
3914         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
3915
3916 2005-09-28  Martin Baulig  <martin@ximian.com>
3917
3918         * object.c (mono_runtime_invoke_array): Added support for
3919         MONO_TYPE_GENERICINST; fixes #75917.
3920
3921 2005-09-27  Martin Baulig  <martin@ximian.com>
3922
3923         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
3924         `k->byval_arg.type' to determine the actual type.
3925
3926         * loader.c (method_from_methodspec): Removed some hacks.
3927
3928 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
3929
3930         * class-internals.h (mono_field_is_deleted): Do the test for
3931         rtspecialname before we check the actual name of the field. This
3932         prevents us from dereferencing a pointer into the string table,
3933         saving us from accessing a few pages
3934
3935         * *.c: Replace the use of {Enter,Leave}CriticalSection with
3936         macros. This will allow a deadlock debugger to easily be plugged
3937         in.
3938
3939 2005-09-27  Martin Baulig  <martin@ximian.com>
3940
3941         * loader.c (method_from_methodspec): Create a "signature"
3942         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
3943
3944 2005-09-27  Martin Baulig  <martin@ximian.com>
3945
3946         * class.c
3947         (inflate_generic_class): Correctly set the new context's
3948         container.
3949
3950         * loader.c
3951         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
3952         instead of a `MonoGenericContext *'.
3953         (mono_method_signature_full): Take a `MonoGenericContainer *'
3954         instead of a `MonoGenericContext *'.
3955
3956         * metadata.c
3957         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
3958         instead of a `MonoGenericContext *'.
3959         (mono_metadata_parse_method_signature_full): Likewise.
3960
3961 2005-09-26  Martin Baulig  <martin@ximian.com>
3962
3963         * class.c
3964         (mono_class_from_generic_parameter): Set `klass->generic_container'
3965         (mono_class_from_generic_parameter): Likewise.
3966         (mono_bounded_array_class_get): We inherit the generic container
3967         from the element class.
3968
3969         * loader.c
3970         (find_method, find_method_in_class): Take a `MonoGenericContext *'
3971         argument rather than computing it here.
3972         (method_from_memberref): Correctly set the generic context before
3973         parsing the signature.  Fixes #75681.
3974
3975 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
3976
3977         * object.c (mono_class_has_special_static_fields): Fix warnings.
3978
3979 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3980
3981         * assembly.c: Add parse_public_key function, to
3982         par the public keys. Also added mono_assembly_name_parse_full,
3983         to define it the parsed key should be freed or not.
3984         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
3985         to parse a long format assembly name.
3986         * metadata-internals.h: Keep mono_assembly_name_parse_full as
3987         private, since calling it to preserve the key requires
3988         freeing it manually.
3989         
3990 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
3991
3992         * locales.c : removed HAVE_ICU part.
3993
3994 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
3995
3996         * object.c (mono_class_create_runtime_vtable): Avoid calling 
3997         field_is_special_static if the klass has no special static fields.
3998
3999         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
4000         (MonoCachedClassInfo): Likewise.
4001
4002         * object.c (mono_class_has_special_static_fields): New helper function.
4003
4004 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4005
4006         * class.c (mono_class_create_from_typedef): Don't call 
4007         interfaces_from_typedef_full for enums.
4008         (mono_class_create_from_typedef): Compute the base types of enums directly
4009         without calling mono_class_setup_fields ().
4010         (mono_class_find_enum_basetype): New helper function.
4011
4012         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
4013         one place inside the string heap.
4014         
4015 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
4016
4017         * class.c: locking fixes, code cleanups, some docs added.
4018         Allocate some data structures in the image mempool.
4019
4020 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4021
4022         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4023         the example code.
4024         
4025 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
4026
4027         * class-internals.h, class.c, reflection.c: reduce memory taken by
4028         MonoClass.
4029
4030 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
4031
4032         * metadata.c, metadata.h, loader.h: documentation updates, code and
4033         API cleanups.
4034
4035 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4036
4037         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4038         the example code.
4039
4040         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
4041         page faults caused by the runtime while reading metadata.
4042
4043 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4044
4045         * socket-io.c: the field names were changed 3 months ago and no one
4046         realized until bug #76077 got filed!
4047
4048 2005-09-20  Martin Baulig  <martin@ximian.com>
4049
4050         * icall.c (assembly_icalls): Removed some unused debugger icalls.
4051
4052 2005-09-20  Martin Baulig  <martin@ximian.com>
4053
4054         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
4055         write the rank into the class entry.
4056
4057 2005-09-20  Martin Baulig  <martin@ximian.com>
4058
4059         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
4060
4061 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
4062
4063         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4064
4065         * icall.c (custom_attrs_defined_internal): New icall.
4066
4067         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
4068         function.
4069         (mono_custom_attrs_construct_by_type): New helper function.
4070
4071 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
4072
4073         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
4074         terminate the resulting string. Fixes #76123.
4075
4076 2005-09-16  Martin Baulig  <martin@ximian.com>
4077
4078         * mono-debug.c
4079         (mono_debug_add_method): Ignore inflated methods for the moment.
4080
4081 2005-09-14  Martin Baulig  <martin@ximian.com>
4082
4083         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
4084
4085 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
4086
4087         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
4088         return a success/failure indication.
4089         (mono_metadata_interfaces_from_typedef_full): Ditto.
4090         (get_constraints): Ditto.
4091
4092 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
4093
4094         * marshal.c (emit_marshal_array): Fix handling of null arrays.
4095         
4096         * marshal.c (emit_marshal_array): Add support for returning string
4097         arrays from delegates. Fixes #76063.
4098
4099         * marshal.c: Use the emit_ldloc/stloc macros where possible.
4100
4101 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
4102
4103         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
4104         icall.
4105
4106 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
4107
4108         * reflection.c icall.c: Fix after mono_get_exception_type_load
4109         signature change.
4110
4111         * assembly.c (mono_assembly_get_assemblyref): New helper function.
4112         (mono_assembly_load_reference): Use the new helper.
4113
4114         * class-internals.h (MonoLoaderError): New structure containing 
4115         information about type loading errors.
4116
4117         * class-internals.h loader.c: Add APIs to store per-thread loader
4118         error information.
4119
4120         * loader.c class.c: Set the loader error if needed.
4121
4122         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
4123
4124 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
4125
4126         * decimal.c: fixed to handle the broken ARM fp format.
4127
4128 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
4129
4130         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
4131         broken.
4132
4133 2005-09-06  Martin Baulig  <martin@ximian.com>
4134
4135         * domain.c (supported_runtimes): Added v2.0.50727.
4136
4137 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
4138
4139         * culture-info.h: reduce the size of some structures.
4140
4141 2005-09-05  Martin Baulig  <martin@ximian.com>
4142
4143         Reflect latest API changes in the August CTP.
4144
4145         * icall.c
4146         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
4147         ("MonoType.HasGenericArguments"): Removed.
4148         ("MonoMethod.BindGenericParameters"): Renamed to
4149         "MakeGenericMethod".
4150         ("MethodBuilder.BindGenericParameters"): Renamed to
4151         "MakeGenericMethod".    
4152
4153 2005-09-05  Martin Baulig  <martin@ximian.com>
4154
4155         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
4156
4157 2005-09-05  Martin Baulig  <martin@ximian.com>
4158
4159         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4160
4161         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
4162         generic_container is non-NULL.
4163
4164 2005-09-05  Martin Baulig  <martin@ximian.com>
4165
4166         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4167
4168         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
4169
4170 2005-08-29  Michal Moskal  <malekith@nemerle.org>
4171
4172         * reflection.c (encode_locals,
4173         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
4174         for large generic types.
4175
4176 2005-09-05  Martin Baulig  <martin@ximian.com>
4177
4178         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4179
4180         * class.c (mono_dup_array_type): New public method.
4181         (mono_metadata_signature_deep_dup): New public method.
4182         (dup_type): Correctly duplicate array and function types.
4183
4184 2005-09-05  Martin Baulig  <martin@ximian.com>
4185
4186         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4187
4188         * reflection.c (get_default_param_value_blobs): Handle generic types
4189         and generic methods.
4190
4191 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4192
4193         * class.c: Fixed error reporting (method/class were inversed) for 
4194         inheritance demands.
4195         * security-manager.c|h: Added the AppDomain when calling the managed
4196         System.Security.SecurityManager.InheritanceDemand method.
4197
4198 2005-09-01  Raja R Harinath  <rharinath@novell.com>
4199
4200         * reflection.c (encode_marshal_blob): 'marshaltype' and
4201         'marshaltyperef' are alternate sources for the custom marshaler
4202         name.
4203
4204 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
4205
4206         * class.c: fix creation of array classes with rank == 1
4207         (patch by Ankit Jain <jankit@novell.com>).
4208
4209 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
4210
4211         * object.c: fix check for creating the bound data for arrays vs
4212         szarrays.
4213
4214 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4215
4216         * object.c: configuration file name is now based on the executable name,
4217         not the image name. Fixes bug #75931.
4218
4219 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
4220
4221         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
4222         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
4223
4224 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
4225
4226         * rand.c: Use wincrypt.h instead of WinCrypt.h.
4227
4228 2005-08-24  Ankit Jain  <jankit@novell.com>
4229             Raja R Harinath  <rharinath@novell.com>
4230
4231         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
4232           called by it recursively.
4233           (mono_class_init): Remove special case in pending_init handling, since it's
4234           superseded by the fix to mono_class_from_typeref.
4235
4236 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
4237
4238         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
4239         BROKEN_THREAD_START stuff.
4240
4241 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
4242
4243         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
4244         trampoline.
4245
4246         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
4247         
4248         * object.c (mono_delegate_ctor): Replace the original function address with
4249         a delegate trampoline.
4250
4251 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
4252
4253         * icall.c: add boolean argument to base64_to_byte_array and 
4254         InternalFromBase64String to control whether a whitespace-only string
4255         is allowed (or should casue a FormatException to be thrown). We need
4256         this as the behavior has changed between MS.NET 1.x and 2.0, and we
4257         to match the MS behaviour in both profiles.
4258         * appdomain.c: Bump corlib version.
4259
4260 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4261
4262         This patch implements a big portion of publisher policy
4263         support, used to bind assembly versions and redirect
4264         one assembly from version A to version B.
4265
4266         * assembly.c:
4267         New GSList loaded_assembly_bindings, for storing the cached
4268         assembly bindings.
4269         (assembly_binding_maps_name): New static function for checking if a 
4270         assembly binding information maps an assembly name.
4271         (mono_assembly_binding_info_free): New function for freeing
4272         assembly binding information resources.
4273         (get_publisher_policy_info): New static function for retrieving 
4274         assembly binding information from a MonoImage.
4275         (compare_versions): New static function for comparing an assembly
4276         binding information data and the version of an assembly name.
4277         (check_policy_versions): New static function for checking if an
4278         assembly binding info mapping an assembly name is valid for it.
4279         (mono_assembly_load_publisher_policy): New static function for
4280         loading the 'policy.major.minor.MyAssembly' image for an assembly
4281         with an assembly name 'aname'.
4282         (mono_assembly_bind_version): New static function for updating
4283         assembly redirection.
4284         (mono_assembly_apply_binding): New static function for applying
4285         assembly binding.
4286         (search_binding_loaded): New static function for searching 
4287         loaded assembly binding infos in the cache domain.
4288         (mono_assembly_load_full): Don't apply assembly binding for
4289         reflection only assemblies.
4290
4291         * metadata-internals.h: Add MonoAssemblyBindingInfo,
4292         which contains information about assembly binding. Also
4293         declare signature for mono_config_parse_publisher_policy ()
4294         function, used to retrieve pub policy info.
4295         
4296         * mono-config.c:
4297         (publisher_policy_start): New static function used to parse publisher 
4298         policy config files.
4299         (publisher_policy_parser): New static MonoParseHandler containing 
4300         the functions used when parsing config files.
4301         (mono_config_parse_publisher_policy): New function for parsing
4302         publisher policy files.
4303         
4304 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
4305
4306         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
4307
4308         * marshal.c (mono_delegate_free_ftnptr): Ditto.
4309
4310         * object.c (mono_get_addr_from_ftnptr): New helper function.
4311
4312         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
4313
4314         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4315
4316 2005-08-19  Dick Porter  <dick@ximian.com>
4317
4318         * threads.c, threads.h, appdomain.c, appdomain.h,
4319         profiler-private.h, monitor.c, object.c, object-internals.h,
4320         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
4321         store the thread ID, so it can hold a 64 bit value if needed.
4322
4323 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
4324
4325         * reflection.c (mono_reflection_create_dynamic_method): Store the
4326         handle class into the method references as well so ldtoken works in
4327         dynamic methods.
4328
4329         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
4330         types.
4331
4332 2005-08-19  Ankit Jain <jankit@novell.com>
4333
4334         Fix #75847.
4335         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
4336           here rather than using the method signature of a arbitrary function
4337           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
4338           two arguments.
4339           Hack done with Harinath.
4340
4341 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4342
4343         * threadpool.c: disable printing stack traces when we get a exception
4344         in a threadpool thread. I need to do more testing to figure out which
4345         cases actually print this. Fixes bug #75828.
4346
4347 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4348
4349         * icall.c: there might be ignored whitespace after the last '='. This
4350         fixes length computation and bug #75840.
4351
4352 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
4353
4354         * assembly.c (mono_assembly_load_full): Consider .exe extension as
4355         well. Fixes #75809.
4356
4357         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
4358         #75784.
4359         
4360         * reflection.c (create_custom_attr_data): Ditto.
4361
4362 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
4363
4364         * locales.c, culture-info.h : removed RegionLCIDMap.
4365         * culture-info-tables.h : regenerated.
4366
4367 2005-08-16  Martin Baulig  <martin@ximian.com>
4368
4369         * class.c (mono_type_get_name_recurse): Small fix.
4370
4371 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
4372
4373         * locales.c : indentation fixie.
4374
4375 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
4376
4377         * object-internals.h,
4378           locales.h,
4379           locales.c,
4380           culture-info.h,
4381           icall.c : added RegionInfo table support.
4382         * culture-info-table.h : regenerated for region support.
4383
4384 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
4385
4386         * reflection.c (resolve_object): handle all kinds of MonoMethod
4387         including generic ones
4388
4389 2005-08-12  Ankit Jain <jankit@novell.com>
4390
4391         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
4392           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
4393
4394 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
4395
4396         * process.c: Don't close a thread handle when it's NULL. This is a
4397         workaround for bug #75733.
4398
4399 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
4400
4401         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
4402
4403 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
4404
4405         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
4406
4407 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4408
4409         * threadpool.c: if a work item in the thread pool has a callback that
4410         catches a exception, don't propagate it after invoking the callback.
4411         Fixes bug #75336.
4412
4413 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
4414
4415         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
4416
4417         * class-internals.h (MonoCachedClassInfo): Add some new fields.
4418
4419         * class.c (mono_class_init): Load field info lazily in the AOT case.    
4420
4421         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
4422
4423 2005-08-03  Ankit Jain  <jankit@novell.com>
4424
4425         Fix #75683.
4426         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
4427           PInvoke calling convention is 0.
4428
4429 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
4430
4431         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
4432         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
4433
4434 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
4435
4436         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
4437         to handle threads not started by the GC (patch by Michael Meeks
4438         <michael.meeks@novell.com>).
4439
4440 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
4441
4442         * reflection.c: Make buffer used in emitting types larger for some
4443         big generic types (patch by Michal Moskal).
4444
4445 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
4446
4447         * mono-debug.c: Fix some (not all) alignment problems.
4448
4449 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4450
4451         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
4452         Invoke mono_image_load_from_data_full passing the refonly
4453         parameter.
4454
4455         * assembly.c
4456         (mono_assembly_open_from_bundle): Add the refonly argument, 
4457         in order to pass it to other methods it calls to.
4458         (do_mono_assembly_open): Add the refonly argument, in order 
4459         to pass it to other methods it calls to.
4460         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
4461         the refonly parameter to it.
4462
4463         * image.c: Add loaded_images_refonly_hash and
4464         loaded_images_refonly_guid_hash to cache the reflection
4465         only loaded images.
4466         (mono_images_init): Initialize the hash tables used for
4467         caching the reflection only images.
4468         (load_modules): Invoke mono_image_open_full passing the refonly
4469         parameter to load the modules the correct way.
4470         (build_guid_table): Add the refonly argument, to re-build the 
4471         correct hash table.
4472         (do_mono_image_open): Added the refonly argument, in order to
4473         define it for the loaded image.
4474         (mono_image_loaded_full): New function, which receives an
4475         additional parameter to look for the image in the refonly or
4476         non-refonly section.
4477         (mono_image_loaded): Updated, using mono_image_loaded_full.
4478         (mono_image_loaded_by_guid_full): The same case that happens
4479         with mono_image_loaded_full.
4480         (mono_image_loaded_by_guid): Likewise.
4481         (register_image): Use the ref_only variable inside MonoImage
4482         to decide in which hash table store the current image.
4483         (mono_image_open_from_data_full): Rename
4484         mono_image_open_from_data to mono_image_open_from_data_full,
4485         adding the refonly argument, to define the ref_only variable 
4486         inside MonoImage.
4487         (mono_image_open_from_data): Return 
4488         mono_image_open_from_data_full.
4489         (mono_image_open_full): Rename mono_image_open to
4490         mono_image_open_full, receiving the new refonly argument,
4491         to pass it to inner methods.
4492         (mono_pe_file_open): Update this function, to open
4493         a MonoImage as a non-refonly image.
4494         (mono_image_close): Use the refonly variable inside
4495         MonoImage to remove the image from the correct caches.
4496
4497         * image.h: Add the signatures of mono_image_open_full,
4498         mono_image_open_from_data_full, mono_image_loaded_full,
4499         mono_image_loaded_by_guid_full.
4500
4501         * metadata-internals.h: Add the ref_only field to 
4502         MonoImage.
4503         
4504 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4505
4506         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
4507         Fix the last behavior, which used to load the assemblies and
4508         extract MonoReflectionAssemblyName information, instead of
4509         extract it from the metadata tables. Needed for Reflection
4510         Only assemblies.
4511         
4512 2005-07-29  Martin Baulig  <martin@ximian.com>
4513
4514         * mono-debug-debugger.c
4515         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
4516         not initialized.
4517
4518         * mono-debug.c
4519         (mono_debug_address_from_il_offset): Check whether we have
4520         debugging support before attempting to take the lock.
4521         (mono_debug_source_location_from_address): Likewise.
4522         (mono_debug_source_location_from_il_offset): Likewise.
4523         (mono_debug_il_offset_from_address): Likewise.
4524         (mono_debug_address_from_il_offset): Likewise.
4525
4526 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
4527
4528         * class.c (mono_class_from_name_case): Add support for dynamic images.
4529         Fixes #75650.
4530
4531         * object.c (mono_class_compute_gc_descriptor): Add a workaround
4532         for #75479.
4533
4534 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
4535         
4536         * reflection.c (mono_method_get_object): Fix warning.
4537
4538 2005-07-28  Martin Baulig  <martin@ximian.com>
4539
4540         * mono-debug.c
4541         (mono_debug_add_wrapper): Also write the wrapper type.
4542
4543 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
4544
4545         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
4546         
4547         * class.c (mono_class_init): Avoid reading nested classes if the AOT
4548         data indicates the class has none.
4549
4550 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
4551
4552         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
4553         loader lock with the debugger lock. Prevents deadlocks for beagle.
4554
4555         Beagle can now run on an smp box for a weekend without any
4556         issues. Woohoo!
4557
4558 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
4559
4560         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
4561         in a module. Fixes #75629.
4562
4563 2005-07-26  Martin Baulig  <martin@ximian.com>
4564
4565         * mono-debug.c (mono_debug_add_wrapper): New static method.
4566         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
4567         interncall or a wrapper.
4568
4569         * mono-debug.h (MonoDebugWrapperData): New public typedef.
4570         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
4571         (MONO_DEBUGGER_VERSION): Bump to 51.
4572
4573         * mono-debug-debugger.c
4574         (mono_debugger_add_type): Removed this empty function.
4575         (mono_debugger_add_method): Likewise.
4576
4577 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
4578
4579         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
4580         before accessing method->slot.
4581
4582 2005-07-21  Jb Evain  <jbevain@gmail.com>
4583
4584         * reflection.c (method_encode_clauses/class): Handle filters clauses.
4585         Fixes #75010.
4586
4587 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
4588
4589         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
4590         #75587.
4591
4592 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
4593
4594         * image.h image.c: Add mono_image_get_guid () API function.
4595
4596 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
4597
4598         There were issues when multiple threads tried to load
4599         assemblies. A deadlock was created between assemblies_mutex and
4600         mono_domain_assemblies_lock. This fixes the issue by making the
4601         assembly ref counting be lock free. See bug 75586.
4602         
4603         * image.c (mono_image_close): The add ref function here was using
4604         Interlocked operations while the unref was using a mutex and a
4605         --. I don't think this was ever a bug that would be exposed in a
4606         non-pendantic way (ie, by an embedder doing a ref on one thread
4607         and an unref on another), but for the sake of correctness, this is
4608         now Interlocked.
4609
4610         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
4611         (mono_assembly_load_reference): Call mono_assembly_addref rather
4612         than touching the refcount ourselves.
4613         (mono_assembly_close): Use InterlockedDecrement to unref the
4614         assembly. Don't acquire the lock unless it is actually needed.
4615
4616 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
4617
4618         * class.c (mono_class_layout_fields): Fix calculation of has_references
4619         for generic types.
4620
4621 2005-07-12  Martin Baulig  <martin@ximian.com>
4622
4623         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4624
4625         * metadata.c
4626         (mono_type_hash): Provide better hashing for generic instances.
4627         (mono_generic_inst_hash): Improve hashing.
4628         (mono_generic_class_hash): Likewise.
4629
4630         * reflection.c (mymono_metadata_type_hash): Improve hashing for
4631         generic instances.
4632
4633 2005-07-12  Martin Baulig  <martin@ximian.com>
4634
4635         * reflection.c (mono_reflection_create_runtime_class): Remove the
4636         hack for generic type definitions and non-`Run' assemblies.
4637         (mono_reflection_bind_generic_parameters): Also use
4638         `klass->wastypebuilder' to check for TypeBuilders.
4639
4640 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
4641
4642         * class.c (mono_class_layout_fields): Fix calculation of has_references
4643         for generic types.
4644
4645         * class.c (inflate_generic_class): Fix a leak.
4646         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
4647         for generic types.
4648
4649 2005-07-11  Martin Baulig  <martin@ximian.com>
4650
4651         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
4652         on error.
4653
4654 2005-07-11  Martin Baulig  <martin@ximian.com>
4655
4656         * loader.c (find_method): Also lookup in
4657         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
4658
4659 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4660
4661         * appdomain.c (mono_domain_unload): Don't free the error message
4662         before passing it to mono_get_exception_...
4663
4664         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
4665         
4666 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
4667
4668         * threads.c: try to better guess an available RT signal (bug #75387).
4669
4670 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4671
4672         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
4673         and CACHE_OBJECT.
4674
4675 2005-07-07  Martin Baulig  <martin@ximian.com>
4676
4677         * class.c (mono_type_get_name_full): Return NULL for
4678         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
4679         fixes #75408.
4680
4681 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4682
4683         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
4684         exit the appdomain as well being aborted.
4685
4686         * threadpool.c: Create all threadpool threads inside the root appdomain, and
4687         change back to the root domain after calling managed code. This enables
4688         appdomains using threadpools to be unloaded.
4689
4690 2005-07-07  Martin Baulig  <martin@ximian.com>
4691
4692         * class-internals.h
4693         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
4694         into `MonoDynamicGenericClass' since we only need it for dynamic
4695         types.
4696
4697         * reflection.c (mono_class_bind_generic_parameters): We don't need
4698         to compute the `parent' here.
4699
4700 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
4701
4702         * culture-info-table.h : regenerated.
4703
4704 2005-07-06  Martin Baulig  <martin@ximian.com>
4705
4706         * icall.c
4707         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
4708
4709         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
4710
4711 2005-07-06  Martin Baulig  <martin@ximian.com>
4712
4713         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
4714         we're doing a signature-only comparision; fixes #74945.
4715
4716 2005-07-06  Martin Baulig  <martin@ximian.com>
4717
4718         * class-internals.h (MonoGenericClass): Moved some things out into
4719         a new `MonoInflatedGenericClass' type.  
4720         (MonoInflatedGenericClass): New type; the `klass' of a
4721         `MonoGenericClass' is now computed lazyly in
4722         mono_get_inflated_generic_class().      
4723
4724         * class.c (mono_get_inflated_generic_class): New public function.
4725         (mono_class_inflate_generic_method): Removed the unused
4726         `MonoClass *' argument.
4727         (setup_generic_vtable): Don't call mono_get_inflated_method() on
4728         all the methods.
4729         (mono_class_create_generic): Make this static and merge it with
4730         mono_class_create_generic_2(); we're now called automatically from
4731         mono_get_inflated_generic_class().
4732
4733         * loader.c (mono_method_signature): Call
4734         mono_get_inflated_method() here.
4735
4736 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
4737
4738         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
4739         type of fields with RVA.
4740
4741         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
4742         for this pseudo class.
4743         (my_mono_class_from_generic_parameter): Likewise.
4744         (mono_class_init): Allow interfaces to have cctors.
4745
4746 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
4747
4748         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
4749         lazily for AOT methods.
4750
4751 2005-07-05  Martin Baulig  <martin@ximian.com>
4752
4753         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
4754         returns FALSE for a successful match, not TRUE.
4755
4756 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
4757
4758         * loader.c (mono_method_get_index): Optimize this a bit.
4759
4760 2005-07-04  Martin Baulig  <martin@ximian.com>
4761
4762         * class.c
4763         (class_compute_field_layout): Move the check for generic type
4764         definitions into mono_class_layout_fields().  Fixes #74684.
4765         (mono_class_from_generic_parameter): Correctly compute
4766         `klass->parent'; fixes #75457.
4767
4768         * reflection.c (register_assembly, register_module): Make sure
4769         `domain->rejobject_hash' is already created.
4770
4771 2005-07-02  Martin Baulig  <martin@ximian.com>
4772
4773         * class-internals.h
4774         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
4775         `MonoDynamicGenericClass'.      
4776
4777 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
4778
4779         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
4780         returned by a field getter is null, since null is a valid value.
4781
4782 2005-07-01  Martin Baulig  <martin@ximian.com>
4783
4784         * reflection.c (mono_reflection_generic_class_initialize): Update
4785         the `dgclass->fields [i].parent' to the correct class.
4786         (mono_image_get_fieldref_token): Use the declaring type, not the
4787         reflected type.
4788
4789 2005-07-01  Martin Baulig  <martin@ximian.com>
4790
4791         * loader.c (find_method): Also look in the interfaces; fixes #75429.
4792
4793 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
4794
4795         * threads.c (thread_cleanup): assert that thread != NULL
4796         (wait_for_tids_or_state_change): We were using the wrong variable
4797         when accessing wait->threads. `i' was always out of the bounds of
4798         the array.
4799
4800 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4801
4802         * loader.c: map user32 and kernel32 to libMonoSupportW
4803
4804 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
4805
4806         * appdomain.c (unload_thread_main): Mark this as WINAPI.
4807
4808 2005-06-28  Martin Baulig  <martin@ximian.com>
4809
4810         * loader.c (method_from_methodspec): Fix #75334.
4811
4812 2005-06-28  Martin Baulig  <martin@ximian.com>
4813
4814         Fix #74953 - Arrays now implement the generic IList<T> interface
4815         on the 2.0 platform.
4816
4817         * class-internals.h (MonoDefaults): Added `generic_array_class'.
4818
4819         * reflection.c (mono_class_bind_generic_parameters): New public
4820         function; similar to mono_reflection_bind_generic_parameters(),
4821         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
4822
4823         * domain.c (mono_init_internal): Try to initialize.
4824         `mono_defaults.generic_array_class' here; this'll only succeed if
4825         we're using the 2.0 corlib.
4826
4827         * icall.c
4828         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
4829         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
4830         (mono_lookup_internal_call): Added support for nested classes.
4831
4832         * loader.c
4833         (mono_get_method_from_token): Set `result->signature->pinvoke' if
4834         we're an interncall and have generic arguments.
4835
4836         * class.c
4837         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
4838         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
4839         instance of System.Array.InternalArray<T> for arrays, so they
4840         implement the generic IList<T> interface.
4841
4842 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
4843
4844         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
4845         (chastamar@yahoo.com). Fixes #75374.    
4846
4847 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
4848
4849         * culture-info-table.h: regenerated.
4850
4851 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4852
4853         * icall.c: handle spaces correctly for base64 strings.
4854
4855 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
4856
4857         * *.c: Kill some warnings.
4858
4859 2005-06-23  Duncan Mak  <duncan@novell.com>
4860
4861         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
4862         that this builds on Solaris 10 (x86).
4863
4864 2005-06-23  Martin Baulig  <martin@ximian.com>
4865
4866         * class.c
4867         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
4868         generic type definitions.
4869
4870 2005-06-23  Martin Baulig  <martin@ximian.com>
4871
4872         Fix #75331.
4873
4874         * metadata.c (mono_class_get_overrides): Renamed to
4875         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
4876         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
4877         pass it to mono_get_method_full().
4878
4879 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
4880
4881         * reflection.c (mono_reflection_create_runtime_class): take the
4882         mono_domain_lock in this method. Prevents deadlocks
4883
4884 2005-06-22  Martin Baulig  <martin@ximian.com>
4885
4886         * loader.c (method_from_methodspec): Fix #75330.
4887
4888 2005-06-22  Martin Baulig  <martin@ximian.com>
4889
4890         * reflection.c (type_get_qualified_name): Use
4891         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
4892         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
4893         argument; use it if we don't have an assembly name.
4894
4895 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
4896
4897         * object.c: In mono_message_init, set "copy out" flag for in
4898         parameters with the [Out] flag.
4899
4900 2005-06-21  Martin Baulig  <martin@ximian.com>
4901
4902         * class.c
4903         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
4904         and MONO_TYPE_PTR.
4905
4906 2005-06-21  Martin Baulig  <martin@ximian.com>
4907
4908         * class.c (mono_class_init): Don't initialize `class->fields' for
4909         generic instances since they're initialized again in
4910         compute_field_layout(). 
4911         (compute_field_layout): Set the field's `generic_info' here; fix
4912         #75320. 
4913
4914 2005-06-21  Martin Baulig  <martin@ximian.com>
4915
4916         * class-internals.h
4917         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
4918
4919         * metadata.c (mono_metadata_generic_method_equal): Also
4920         distinguish the `generic_class'; fixes #75334.
4921
4922 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4923
4924         * domain.c:
4925         * appdomain.c:
4926         * domain-internals.h:
4927         * reflection.c: 'domain_assemblies' field is now protected by its own
4928         lock. Don't call into managed code to run the AssemblyLoad event if we
4929         now there are no registered delegates for it.
4930
4931 2005-06-20  Martin Baulig  <martin@ximian.com>
4932
4933         * class.c (mono_class_is_assignable_from): Use a custom version of
4934         mono_class_has_parent() to make things work for generic instances;
4935         fix #75300.
4936
4937 2005-06-20  Martin Baulig  <martin@ximian.com>
4938
4939         * loader.c (method_from_methodspec): Apply a patch from
4940         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
4941
4942 2005-06-20  Martin Baulig  <martin@ximian.com>
4943
4944         * class.c (mono_class_init): Reverted Zoltan's last change; it
4945         breaks generics.
4946
4947 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
4948
4949         * threads.c (wait_for_tids_or_state_change): Add missing locking.
4950
4951 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4952
4953         * socket-io.c: fix the index in the socket array for writable/error
4954         sockets. Fixes bug #75306.
4955
4956 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
4957
4958         * class.c (mono_class_init): Allow interfaces to have static ctors.
4959
4960 2005-06-17  Martin Baulig  <martin@ximian.com>
4961
4962         * loader.c (method_from_methodspec): Use `context->container' when
4963         parsing the `gmethod->inst'.
4964
4965 2005-06-17  Martin Baulig  <martin@ximian.com>
4966
4967         * class.c (mono_type_get_name_recurse): Don't add the assembly
4968         name for type arguments.
4969
4970 2005-06-15  Martin Baulig  <martin@ximian.com>
4971
4972         * reflection.c (mono_image_get_inflated_method_token): Encode
4973         correct klass; fixes #75260.
4974
4975 2005-06-13 Michal Moskal <malekith@nemerle.org>
4976
4977         * icall.c: Make GetCorrespondingMethod/Constructor take
4978         MonoReflectionMethod method not MonoMethod. Removed
4979         MonoType.GetCorrespondingField, and make
4980         MonoGenericType.GetCorrespondingField take name not
4981         MonoClassField.
4982
4983 2005-06-13  Michal Moskal <malekith@nemerle.org>
4984
4985         * reflection.c (field_encode_signature, encode_locals):
4986          Make sizes of buffers for types larger (for big generic types).
4987          (create_generic_typespec,
4988          mono_reflection_sighelper_get_signature_local,
4989          mono_reflection_sighelper_get_signature_field):
4990          Add asserts for too small buffers.
4991
4992 2005-06-15  Martin Baulig  <martin@ximian.com>
4993
4994         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
4995         if our parent is not a dynamic type.
4996
4997 2005-06-15  Martin Baulig  <martin@ximian.com>
4998
4999         * class-internals.h (MonoTypeNameFormat): New enum.
5000
5001         * class.c
5002         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
5003         (mono_type_get_full_name): Removed.
5004         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
5005         argument instead of the boolean's.
5006
5007         * icall.c (ves_icall_System_MonoType_getFullName):
5008         Added `gboolean assembly_qualified'.    
5009
5010         * reflection.h
5011         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
5012
5013         * reflection.c (mono_reflection_parse_type): Parse the new type
5014         name format.
5015
5016 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5017
5018         * icall.c: no need to convert from utf16 to utf8 and then back again
5019         after the call to GetLogicalDrives.
5020
5021 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5022
5023         * icall.c: frombase64. Fix problems exposed by new tests.
5024
5025 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5026
5027         * icall.c: added internal calls for converting char [] and strings in
5028         base64 into byte [].
5029
5030 2005-06-10  Martin Baulig  <martin@ximian.com>
5031
5032         * class.c (mono_class_create_generic_2): Read the nested classes
5033         from the metadata rather than from `gklass->nested_classes' since
5034         `gklass' might not be initialized yet.
5035
5036 2005-06-09  Duncan Mak  <duncan@novell.com>
5037
5038         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
5039         all public headers. Fixes #74919.
5040
5041 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
5042
5043         * domain.c: The key for proxy_vtable_hash is now a pointer
5044         array. Added new GHashFunc and GCompareFunc functions for this.
5045
5046         * class.h: The list of interfaces in MonoRemoteClass is known in
5047         advance and can't grow (we create a new MonoRemoteClass if needed),
5048         so now the interface array can be allocated together with
5049         MonoRemoteClass.
5050         
5051         * object.c: Added a new method create_remote_class_key.
5052         Fixed mono_remote_class so it does not depend on
5053         mono_upgrade_remote_class.
5054         Removed extend_interface_array.
5055         Added new method clone_remote_class(), which makes a copy of a remote
5056         class and adds a new interface or class to it.
5057         mono_upgrade_remote_class() now creates a new remote class (or gets
5058         it from the cache) if an vtable upgrade is needed. In this way
5059         we make sure that other objects sharing the same remote class
5060         don't get the new vtable with unwanted interfaces.
5061         
5062         * object-internals.h:
5063         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
5064         
5065         * marshal.c: Track changes in mono_upgrade_remote_class().
5066
5067 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
5068         * icall.c: Add runtime methods for obtaining members of inflated
5069         class, which were created from supplied non-inflated members. It
5070         is used in internal Get{Method,Constructor,Field} methods in
5071         System.Type
5072
5073 2005-06-09  Martin Baulig  <martin@ximian.com>
5074
5075         * reflection.c
5076         (mono_reflection_bind_generic_method_parameters): Fix #75169.
5077
5078 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5079         * reflection.c (mono_image_basic_init): Define
5080         Version in MonoDynamicAssembly. 
5081         
5082 2005-06-08  Martin Baulig  <martin@ximian.com>
5083
5084         Fix #75136.
5085
5086         * loader.c
5087         (mono_method_signature_full): New public method; takes a
5088         `MonoGenericContext *'.
5089         (find_method): Use mono_method_signature_full() and pass the
5090         klass'es context to it.
5091
5092         * class.c (mono_class_is_inflated_method): Use
5093         mono_method_signature_full() and pass the context to it.
5094
5095 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
5096
5097         * object.c: add proper locking in mono_remote_class_vtable(),
5098         fixes possible memory corruption.
5099
5100 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
5101
5102         * marshal.c (mono_remoting_marshal_init): set
5103         initialized after initialization.
5104
5105 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
5106
5107         * locales.c : hush.
5108
5109 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
5110
5111         * object.c (extend_interface_array): fix really silly
5112         memory corrupting / comparison bug.
5113
5114 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5115
5116         * reflection.c: Functions added to support the creation
5117         of CustomAttributeData, which includes Attribute data
5118         used by ReflectionOnly methods.
5119
5120         * reflection.h:  mono_reflection_get_custom_attrs_data and
5121          mono_custom_attrs_data_construct added (functions exposed).
5122
5123          * icall.c: Added mono_reflection_get_custom_attrs_data
5124          as icall.
5125         
5126 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
5127
5128         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
5129         lupus's request.
5130
5131 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
5132
5133         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
5134
5135         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
5136         dynamic DllImportAttribute.
5137
5138         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
5139         dynamic DllImportAttribute.
5140
5141         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
5142         Fixes #75162.
5143
5144 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5145
5146         * threads.c: avoid segfault when an unstarted thread is aborted.
5147
5148 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
5149
5150         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
5151         Returns the name and version of the runtime for reporting.
5152
5153 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5154
5155         * appdomain.c: bump corlib version.
5156         * object-internals.h: new field in MonoReflectionAssembly.
5157
5158 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5159
5160         * object-internals.h: Carlos forgot to add this field.
5161
5162 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5163
5164         * icall.c: Added create_version to create instances
5165         of Version of MonoReflectionAssemblyName. This change helps
5166         the AssemblyName tests to keep running fine.
5167         
5168 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
5169   
5170         * object.c (mono_method_return_message_restore): A somehow less
5171         intrusive fix for #75138.
5172
5173 2005-06-03  Raja R Harinath  <rharinath@novell.com>
5174
5175         * object.c (mono_method_return_message_restore): Fix computation
5176         of expected number of out args.
5177
5178 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
5179
5180         * reflection.c (mono_image_get_method_info): Fix the case when the
5181         charset is empty.
5182
5183 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
5184
5185         * object.c: Added missing null check in
5186           mono_method_return_message_restore.
5187
5188 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
5189
5190         * reflection.c (mono_image_get_method_info): Handle the case when
5191         dllentry is empty.
5192
5193 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
5194
5195         * object.c: When creating the vtable for a proxy, take into account
5196         all inherited interfaces, not only the ones registered in
5197         iclass->interfaces. This fixs bug #74996.
5198         Also, in mono_method_return_message_restore, verify that the array
5199         of out args has the expected lengh.
5200
5201 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5202
5203         * socket-io.c: update the timeout in Poll when the call is interrupte.
5204
5205 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5206
5207         * socket-io.c: support abort/suspend in Select_internal after last
5208         change.
5209
5210 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5211
5212         * threadpool.c: remove warning.
5213
5214 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5215
5216         * icall.c:
5217         * socket-io.[ch]: Select_internal uses poll() now when available, thus
5218         removing the 1024 limit from select(). Runtime part of the fix for
5219         bug #71203.
5220
5221 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5222
5223         * socket-io.c: when resolving the addresses for the same
5224         host returned by gethostname(), get the local IPs from the interface
5225         list. Loopback addresses are discarded if the are interfaces up with
5226         non-loopback ones. Fixes bug #63265.
5227
5228 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
5229
5230         * appdomain.c, verify.c, object-internals.h, reflection.c:
5231         bumped corlib number to 36, and added new extra_flags field
5232         to ReflectionMethodBuilder and friends.  Fixes #75060.
5233
5234 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
5235
5236         * gc.c: register a new weak link only if the object is non-null
5237         (fixes bug#75047).
5238
5239 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5240
5241         * culture-info.h : short time pattern too.
5242
5243 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5244
5245         * culture-info.h : expand long time pattern string length.
5246
5247 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5248
5249         * culture-info-table.h : update (more French date format; #72788).
5250
5251 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
5252
5253         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
5254         the method is static. Fixes #75029.
5255
5256 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
5257
5258         * reflection.c: Update the table_idx field of method builders after
5259         saving the module, since it can change. This is a workaround for
5260         bug #74914. 
5261
5262 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5263
5264         * culture-info-table.h : update (additional French date format).
5265
5266 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
5267
5268         * icall.c (ves_icall_type_Equals): Revert last change.
5269         
5270         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
5271
5272         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
5273
5274 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
5275
5276         * class-internals.h: Added executioncontext_class field to 
5277         MonoDefaults structure.
5278         * domain.c: Cache System.Threading.ExecutionContext class in 
5279         mono_defaults.
5280         * object.c: Capture the ExecutionContext for asynchroneous calls in
5281          mono_async_result_new.
5282         * object-internals.h: Added execution_context and original_context 
5283         fields to MonoAsyncResult. Added execution_context to MonoThread.
5284         * security-manager.c|.h: Added mono_get_context_capture_method to 
5285         return the capture method (if required by the security manager or by
5286         the framework version used).
5287         * threadpool.c: Apply capture (if present) ExecutionContext in 
5288         mono_async_invoke and revert to original context after it completes.
5289
5290 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
5291
5292         * culture-info-table.h : updated (real hacky solution for zh-CHT).
5293
5294 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
5295
5296         * culture-info-table.h : zh-CHT related workaround.
5297
5298 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
5299
5300         * marshal.c (emit_marshal_custom): Add some error checking and call the
5301         methods in the ICustomMarshaler interface. Fixes #74875.
5302         
5303         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
5304         native->managed wrappers.
5305
5306 2005-05-12  Martin Baulig  <martin@ximian.com>
5307
5308         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
5309         here and use the loader lock.
5310
5311         * mono-debug.c: Properly lock when the debugger is not attached.
5312         (mono_debug_init): Release the initial lock if we're not running
5313         in the debugger.
5314
5315 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
5316
5317         * marshal.c (emit_marshal_custom): Pass through NULL values without
5318         calling the custom marshalling routines.
5319
5320         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
5321         conversion in structures. Fixes #74882.
5322
5323 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
5324
5325         * culture-info-table.h : zh-* cultures were missing.
5326
5327 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
5328
5329         * threads.c: Added a new event background_change_event which is signaled
5330         when a thread changes its background mode.
5331         Moved here several checks previously done in managed code. The checks
5332         require the thread lock, and using the thread lock in managed code
5333         can result in deadlocks.
5334         Merged Start_internal and Thread_internal into a single method. Now 
5335         Thread_internal does all work of creating and starting a thread.
5336         Added icalls for setting and getting the state of the object. Moved from
5337         managed code to avoid locking there.
5338         Added wait_for_tids_or_state_change() which is called instad of
5339         wait_for_tids when waiting for non-backround threads to end. This method
5340         will return if one of the threads ends or the background_change_event
5341         is signaled.
5342         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
5343         the background mode. This method signals the background_change_event
5344         event.
5345         * icall.c:
5346         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
5347         removed Start_internal.
5348         
5349 2005-05-11  Martin Baulig  <martin@ximian.com>
5350
5351         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
5352         to order of some fields to get proper alignment on 64-bit machines.
5353
5354 2005-05-11  Martin Baulig  <martin@ximian.com>
5355
5356         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
5357         changes as they're broken and completely fuck up the debugger.
5358
5359         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
5360
5361 2005-05-10  Martin Baulig  <martin@ximian.com>
5362
5363         * reflection.c (mono_reflection_generic_class_initialize): Don't
5364         call mono_class_setup_parent() here.
5365
5366 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5367
5368         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
5369         send/receive timeout use an integer in milliseconds. We were using a
5370         struct timeval.
5371
5372 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5373
5374         * locales.c:
5375         (internal_get_cultures): reserve the first slot of the array for the
5376         InvariantCulture, which will be filled in managed code.
5377
5378 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
5379
5380         * reflection.c (mono_image_fill_module_table): Initialize the
5381         GENERATION field as well.
5382
5383 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5384
5385         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
5386         Monitor.Enter on the object.
5387
5388 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
5389
5390         * threads.c: Enable the wait for running threads when exiting.
5391         * icall.c: Suspend all threads before exiting.
5392
5393 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
5394
5395         * assembly.c (mono_assembly_load_reference): Fix warning.
5396
5397 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5398
5399         * threadpool.c: changed the default number of threads per cpu. From now
5400         on, the default will be 20 + (5 * number of cpus) instead of 50.
5401
5402 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
5403
5404         * loader.c (mono_method_get_signature_full): Add locking here.
5405
5406 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
5407
5408         * appdomain.c: Moved methods for parsing and freeing assembly
5409         names to assembly.c.
5410         * assembly.c, domain-internals.h: Created public methods for parsing
5411         assembly names. Fixed mono_assembly_load_with_partial_name:
5412         it now finds the best match, taking into account the version,
5413         token and culture specified in the partial name. Also return
5414         the latest version if no version information is specified.
5415
5416 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
5417
5418         * threadpool.c: replace check for SocketAsyncCall class.
5419
5420 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5421
5422         * threadpool-internals.h:
5423         * Makefile.am: added threadpool-internals.h
5424
5425         * threadpool.c: call mono_unhandled_exception on exceptions not handled
5426         that happen in threadpool threads (tested on MS).
5427         (mono_thread_pool_remove_socket): new function that dispatch any pending
5428         AIO call on a socket that is closing. By now only epoll really needs it,
5429         as select/poll wake up when the socket closes.
5430
5431
5432         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
5433
5434 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
5435
5436         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
5437
5438 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
5439
5440         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
5441
5442 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
5443
5444         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
5445         has an abort request, convert it into a suspend request.
5446
5447 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
5448
5449         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
5450         warning for the usage of `UnmanagedFunctionPointerAttribute' which
5451         is not supported yet.
5452
5453 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5454
5455         * image.c: register assemblies loaded from data (bundles) in the loaded
5456         assemblies hash. Fixes bug #74772.
5457
5458 2005-04-29  Martin Baulig  <martin@ximian.com>
5459
5460         * class.c (mono_type_get_name_recurse): Update to the new naming
5461         schema from the latest .NET 2.x beta2.
5462         (mono_class_setup_vtable_general): If we're a generic instance,
5463         copy the vtable from our generic type definition and inflate all
5464         the methods in it.
5465
5466         * loader.c (find_method): Update to the new naming schema from the
5467         latest .NET 2.x beta2.
5468
5469 2005-04-29  Raja R Harinath  <harinath@gmail.com>
5470
5471         * class.c (mono_class_init): Add a mono_loader_unlock to the
5472         #74734 fix.
5473
5474 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
5475
5476         * icall.c (ves_icall_System_Environment_Exit): Remove the 
5477         suspend_all_other_threads () call for the time being, since it can hang.
5478
5479         * threads.c (mono_thread_manage): Similarly, disable the waiting for
5480         the background threads to exit, since it can also hang.
5481
5482         * class.c (mono_class_init): Applied patch from Ankit Jain 
5483         (radical@gmail.com). Avoid pending init errors when a field refers
5484         to a nested class using a typeref. Fixes #74734.
5485
5486         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
5487         this for dynamic modules.
5488
5489 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5490
5491         * threads.c: don't wait for threads that are in the process of aborting
5492         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
5493         and waiting for background threads to finish. This makes xsp and
5494         mod-mono-server exit without random length delays and/or hangs.
5495
5496 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5497
5498         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
5499
5500 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
5501
5502         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
5503         dynamic types to prevent infinite loops. Fixes #74727.
5504
5505         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
5506         ..._is_assignable_to.
5507
5508 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
5509
5510         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
5511
5512 2005-04-25  Martin Baulig  <martin@ximian.com>
5513
5514         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
5515
5516         * domain.c
5517         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
5518
5519         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
5520
5521         * reflection.c (build_compressed_metadata): Set metadata header
5522         version to 2.0.
5523
5524 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
5525
5526         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
5527         number into an integral and a decimal part. Fixes #70473.
5528
5529         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
5530
5531 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
5532
5533         * culture-info-table.h : reflected the latest locale-builder output.
5534
5535 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5536
5537         * threadpool.c: check for SuspendRequested too when deciding if
5538         mono_thread_interruption_checkpoint should be called.
5539
5540 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5541
5542         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
5543         * threads.c: remove interruption_mutex and use Interlocked instead. When
5544         suspending all the threads, wait for all the suspended events at once.
5545         If we're shutting down and get an APC that is going to be queued,
5546         call mono_thread_execute_interruption immediately, as the thread might
5547         be sleeping on a pthread condition or mutex.
5548
5549         * icall.c: call mono_runtime_set_shutting_down before suspending the
5550         threads.
5551
5552         Fixes bug #74693. And now xsp is happier when exiting.
5553
5554 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
5555
5556         * loader.c (mono_stack_walk): Fix #74690.
5557
5558 2005-04-22  Martin Baulig  <martin@ximian.com>
5559
5560         * mono-debug.h (MonoDebugMethodJitInfo): Added
5561         `MonoDebugMethodJitInfo *jit'.
5562
5563         * mono-debug.c (mono_debug_read_method): Cache the
5564         MonoDebugMethodJitInfo in `address->jit'.
5565         (mono_debug_free_method_jit_info): New public method.
5566
5567 2005-04-22  Martin Baulig  <martin@ximian.com>
5568
5569         * class.c (mono_class_is_assignable_from): Disallow
5570         type parameter -> interface.
5571
5572 2005-04-21  Dick Porter  <dick@ximian.com>
5573
5574         * threads.c (mono_thread_create): Turn an assertion into an error.
5575
5576 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
5577
5578         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
5579         
5580         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
5581         Fix some gcc 4.0 warnings.
5582
5583 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
5584
5585         * file-io.c: fix alt dir separator char on unix systems
5586         and cleanup (fixes bug #71214).
5587
5588 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
5589
5590         * marshal.c: Use CALLVIRT instead of CALL when dispatching
5591         a call to a remote domain, since the method may be an
5592         interface method in the client domain. This fixes bug #74192.
5593
5594 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5595
5596         * threadpool.c: recv/send are now performed before going back to managed
5597         code to save one transition.
5598
5599 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5600
5601         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
5602
5603         * metadata/threadpool.c: removed hack to workaround the bug above.
5604
5605         Fixes bug #74618.
5606
5607 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
5608
5609         * reflection.c reflection.h: Fix handling of parameter defaults in
5610         dynamic methods. Also fixes handling of parameter attributes.
5611         Fixes #74609.
5612
5613         * mono-debug.c (mono_debug_close_image): Fix warning.
5614
5615 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5616
5617         * socket-io.h: replaced old unused field with new 'blocking'.
5618         * threadpool.c: restore socket blocking state on windows(tm).
5619
5620 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
5621
5622         * icall.c: don't return the codebase in the AssemblyName[] returned by
5623         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
5624         * object-internals.h: Removed FIXME (fields were presents) and fixed
5625         versioncompat declaration.
5626
5627 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5628
5629         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
5630         not closed, so don't cleanup when it happens.
5631
5632 2005-04-13  Chris Toshok  <toshok@ximian.com>
5633
5634         * mono-debug-debugger.h: change prototype for
5635         mono_debugger_lookup_type.
5636
5637         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
5638         this function, although it should probably be named
5639         mono_debugger_init_type.
5640
5641 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5642
5643         * threadpool.c: fix non-AIO case.
5644
5645 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
5646
5647         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
5648         the built-in profiler to measure just JIT compilation times.
5649
5650 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5651
5652         * threadpool.c: the epollfd might be closed by another thread at
5653         any time, so ignore EBADF at treat it as a "we're closing" sign.
5654
5655 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5656
5657         * threadpool.c: release the semaphores with a count equals to the number
5658         of working threads in both IO and regular pools. Fixed typo that messed
5659         up the count of IO pool threads. Don't initialize the pipe handles if
5660         we're using epoll.
5661
5662 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5663
5664         * threadpool.c: some systems don't like a NULL when deleting the socket
5665         from epoll.
5666
5667 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5668
5669         * threadpool.c: fix semaphore allocation.
5670
5671 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5672
5673         * threadpool.c: added epoll() based implementation for asynchronous IO
5674         that is used instead of the default poll() when available.
5675         It can be disabled by setting MONO_DISABLE_AIO.
5676
5677 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5678
5679         * threadpool.c: windows needs 'closesocket' and instead of returning
5680         0 when the stream is closed while in select, it returns -1. Fixes bug
5681         #74573.
5682
5683 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
5684
5685         * class.c (class_compute_field_layout): Fix the regression caused by
5686         the previous try.
5687
5688 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5689
5690         * threadpool.c: separate pool for socket async. IO.
5691         * threadpool.h: mono_max_worker_threads is not a global any more.
5692
5693 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
5694
5695         * class.c (class_compute_field_layout): Fix #74549.
5696
5697 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5698
5699         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
5700         use 2 connected sockets instead.
5701
5702 2005-04-08  Miguel de Icaza  <miguel@novell.com>
5703
5704         * mono-config.c: Add new entry point for mkbundle
5705         mono_config_parse_memory. 
5706
5707 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5708
5709         * threadpool.c: removed another unused function.
5710
5711 2005-04-08  Ankit Jain  <radical@corewars.org>
5712
5713         * reflection.c (get_default_param_value_blobs): Add 'types'
5714         parameter to get the types encoded in the constant table.
5715         (mono_param_get_objects): Use the type from the constant table,
5716         not the type of the parameter, when creating default values.
5717         Handle null default values correctly.
5718
5719 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5720
5721         * file-io.c:
5722         * file-io.h:
5723         * threadpool.c:
5724         * threadpool.h:
5725         * icall.c:
5726         * socket-io.c: removed dead code for async IO.
5727
5728 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5729
5730         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
5731
5732         * threadpool.c: intercept socket async. calls and pass them to a thread
5733         that is polling and dispatching the job items to the threadpool as
5734         socket become ready. Fixes bugs #71217, #71933.
5735
5736         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
5737         between char and short/ushort arrays.
5738
5739         * socket-io.c: remove dead code.
5740
5741 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
5742
5743         * locales.c,
5744           icall.c : removed InternalToUpper_Comp() and
5745           InternalToLower_Comp().
5746
5747 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
5748
5749         * char-conversions.h : The tables were incorrectly generated. Should
5750           be generated against invariant culture.
5751
5752 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
5753
5754         * object.c (mono_runtime_invoke_array): Fix return value when 
5755         passing pre-created valuetype objects to ctors.
5756
5757         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
5758         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
5759         Fixes #74338.
5760
5761 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
5762
5763         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
5764         only used with --security and hides the wrong corlib version error.
5765
5766 2005-03-30  Joshua Tauberer  <tauberer@for.net>
5767
5768         * class.c: Changed mono_class_name_from_token so that types
5769         outside of a namespace don't have an initial period.  Improved
5770         the g_warning message used in _mono_class_get when loading
5771         fails.
5772         * assembly.c: In mono_assembly_load_reference, when an assembly
5773         can't be found, "No such file or directory" is misleading and
5774         unhelpful because a few paths were checked for the presence of
5775         the assembly.  When that happens (ENOENT), display a nicer
5776         message indicating the directories that were searched.  In all
5777         cases, the warning is made easier to read for non-hackers.
5778
5779 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
5780
5781         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
5782         project/solution.
5783         * appdomain.h|domain.c: Removed inline from functions.
5784         * appdomain.c: Reduced warnings when compiling on windows.
5785         * icall.c: Fixed output_debug declaration to gunichar2*.
5786         * mono-config.c: Reduced warnings when compiling on windows.
5787         * rand.c: Added missing "windows.h". Added missing return value.
5788         * rawbuffer.c: Added missing winsock2.h for windows.
5789         * sysmath.h: Added mono-compiler.h header to allow/ease 
5790         compilation with non-GCC compilers.
5791         * threads.c: Fixed declarations to compile with VS.NET C compiler.
5792         Removed cast warnings.
5793
5794         Adapted from the work of J Lothian (for VC6).
5795
5796 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
5797
5798         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
5799         from default_path.
5800
5801 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
5802
5803         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
5804         the 2.0 profile.
5805
5806 2005-03-27  Raja R Harinath  <harinath@gmail.com>
5807
5808         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
5809         has to be in $(exec_prefix).  $(prefix) is for arch-independent
5810         stuff, and it would probably use $(prefix)/share rather than
5811         $(prefix)/lib.
5812
5813 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5814
5815         * console-io.c: added 2 includes that might be missing.
5816
5817 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
5818
5819         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
5820         profile.
5821
5822         * reflection.c (create_custom_attr): Allocate the params array using
5823         alloca so it gets GC tracking.
5824
5825 2005-03-23  Chris Toshok  <toshok@ximian.com>
5826
5827         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
5828         out some spew.
5829
5830 2005-03-24  Raja R Harinath  <rharinath@novell.com>
5831
5832         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
5833         changes to pick up any changes in prefix, etc.
5834
5835 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
5836
5837         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
5838         
5839         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
5840         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
5841
5842 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
5843
5844         * class-internals.h object-internals.h class.c reflection.c: Extend the
5845         mono_lookup_dynamic_token () function to return the class of the
5846         token as well. 
5847
5848         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
5849         well. Fixes #73848.
5850
5851 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
5852
5853         * security-manager.c: Skip inheritance checks for intra-corlib
5854         class inheritance and method overrides. This skips a lot of checks
5855         and (anyway) permissions cannot work until corlib is loaded.
5856
5857 2005-03-23  Martin Baulig  <martin@ximian.com>
5858
5859         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
5860         MONO_TYPE_GENERICINST.  
5861
5862 2005-03-23  Martin Baulig  <martin@ximian.com>
5863
5864         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
5865
5866 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
5867
5868         * class.c: added locking comments to some functions.
5869         Cache the interface offsets arrays (saves about 20 KB
5870         of runtime memory in a typical app).
5871         Reduce the time overhead in mono_class_setup_supertypes ().
5872
5873 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
5874
5875         * icall.c: speedup and fix leaks in GetMethodsByName and
5876         GetPropertiesByName.
5877
5878 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
5879
5880         * reflection.c: some locking fixes.
5881
5882 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
5883
5884         * metadata.c: added missing break in case statement.
5885
5886 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
5887
5888         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
5889         typedbyref return values. Fixes #73941.
5890
5891 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
5892
5893         * security-manager.c|h: Added demandunmanaged method and 
5894         suppressunmanagedcodesecurity class to MonoSecurityManager.
5895         Renamed aptc class to allowpartiallytrustedcallers.
5896
5897 2005-03-17  Martin Baulig  <martin@ximian.com>
5898
5899         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
5900
5901 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5902
5903         * file-io.c: disabled file async. IO using aio_*. It uses the
5904         threadpool now. Workaround for bug #73718.
5905
5906 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
5907
5908         * assembly.h, mono-config.c: added code to deal with bundled configs
5909         for bundled assemblies.
5910
5911 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
5912
5913         * *.c, private.h: cleanup, removing old private.h header file.
5914
5915 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
5916
5917         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
5918         and throw_on_unmappable_char attributes.
5919
5920 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
5921
5922         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
5923         _ProcessName_internal.
5924
5925 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
5926
5927         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
5928         #73631.
5929
5930         * icall.c threads.c threads-types.h: Remove slothash icalls as they
5931         are no longer used.
5932
5933 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
5934
5935         * object.c (compute_class_bitmap): Add support for generics. Fixes
5936         #73527.
5937
5938 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
5939
5940         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
5941
5942 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5943
5944         * filewatcher.c: commented out the code for windows watcher, as we don't
5945         use it (we use the managed implementation instead).
5946
5947 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
5948
5949         * object-internals.h (MonoThread): Remove 'unused1' field.
5950
5951         * appdomain.c: Bump corlib version.
5952
5953         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
5954
5955         * reflection.c (mono_reflection_create_runtime_class): Remove the
5956         AssemblyBuilder.Save optimization since it causes too many problems.
5957
5958 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
5959
5960         * exception.c|h: Added mono_get_exception_reflection_type_load to
5961         create a ReflectionTypeLoadException object.
5962         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
5963         to return NULL is a InheritanceDemand fails during reflection. Updated
5964         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
5965         ReflectionTypeLoadException if an InheritanceDemand fails during 
5966         reflection. Added icall mapping for GetLinkDemandSecurity.
5967         * security-manager.c|h: Added ves_icall_System_Security_
5968         SecurityManager_GetLinkDemandSecurity internal call to return the
5969         class and methods permissions set for a LinkDemand. Removed unused
5970         fields in MonoSecurityManager.
5971
5972 2005-03-10  Martin Baulig  <martin@ximian.com>
5973
5974         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
5975         it's a generic instance.
5976
5977 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
5978
5979         * reflection.c (mono_get_object_from_blob): Applied patch from
5980         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
5981
5982         * class.c (mono_class_is_assignable_from): Another try at fixing 
5983         #73469 without breaking anything.
5984
5985 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
5986
5987         * class.c: (mono_class_is_assignable_from): Revert the last changes
5988         since they don't work with generics.
5989         
5990         * class.c (mono_class_is_assignable_from): Fix build bustage.
5991
5992         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
5993         the managed IsAssignableFrom method. Fixes #73469.
5994
5995         * reflection.c (mono_reflection_call_is_assignable_from): New helper
5996         function.
5997
5998 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
5999
6000         * object.c (mono_load_remote_field_new): Fix returning uninitialized
6001         memory when the remoting callback does not sets the out arguments.
6002         Fixes #73007.
6003
6004         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
6005         by mistake.
6006
6007         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
6008
6009         * object-internals.h (MonoStackFrame): Sync with managed object layout.
6010
6011         * appdomain.c: Bump corlib version.
6012
6013 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
6014
6015         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
6016         function.
6017
6018         * threads.c (mono_thread_attach): Detect threads which are not started
6019         by the GC pthread wrappers.
6020
6021 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
6022
6023         * icall.c: Added new icall for RNG.
6024         * rand.c|h: Added new icall to open the RNG. This allows to share a 
6025         single handle on Linux to access /dev/urandom and fix #73183.
6026
6027 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
6028
6029         * object.c: setting the new vtable in a transparent proxy object must
6030         not change the GC descriptor.
6031
6032 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6033
6034         * object.c: fixed compilation without GCJ support.
6035         * reflection.c: for runtime-created types ensure klass->has_references
6036         is correct (bug #73215).
6037
6038 2005-03-02  Martin Baulig  <martin@ximian.com>
6039
6040         * class.c (mono_class_is_assignable_from): Make this work if
6041         `oklass' is a generic instance; fixes #72831.
6042
6043 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6044
6045         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
6046         with hasthis set.
6047         
6048         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
6049
6050         * marshal.c: Reorganize native->managed marshalling code to also use
6051         the emit_marshal_... functions.
6052
6053 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6054
6055         * object.c: typed allocs have issues with bitmap sizes > 30,
6056         so check for max_set >= 30.
6057
6058 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6059
6060         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
6061         managed code. Fixes #73012.
6062
6063         * metadata.h (MonoMarshalSpec): Add elem_mult field.
6064
6065         * metadata.c reflection.c: Load/Emit elem_mult as well.
6066         
6067         * metadata.h (MonoMarshalSpec): Add comment.
6068
6069         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
6070
6071         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
6072         num_elem to -1 if not given.
6073
6074         * object-internals.h (MonoReflectionMarshal): Add has_size field.
6075
6076         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
6077         given values.
6078
6079 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
6080
6081         * null-gc.c (mono_gc_free_fixed): Was not compilable.
6082
6083 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
6084
6085         * reflection.c (encode_marshal_blob): Encode param_num field as well.
6086
6087         * object-internals.h (MonoReflectionMarshal): Add param_num field.
6088
6089 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6090
6091         * object.c: generalized the reference bitmap creation
6092         and added hooks for the new GC.
6093         * class-internals.c: removed the gc_bitmap field from MonoClass.
6094
6095 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6096
6097         * domain.c: help the compiler to produce better code
6098         in mono_jit_info_table_find ().
6099
6100 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6101
6102         * object.c: make all allocations look typed.
6103
6104 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6105
6106         * socket-io.c: load Mono.Posix if it's not loaded already
6107         (fixes bug#73033).
6108
6109 2005-02-24  Martin Baulig  <martin@ximian.com>
6110
6111         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
6112         * reflection.c (dup_type): Likewise.
6113
6114 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
6115
6116         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
6117         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
6118
6119 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6120
6121         * domain.c, threads.c, object-internals.h: make the critical thread
6122         local vars use the fast access mode (even when we're compiled in
6123         a lib). Provide accessors to be used by the jit during codegen.
6124
6125 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6126
6127         * appdomain.c: Changed hook functios behavior to include
6128         support for the reflection only assemblies. Some icalls were changed
6129         to support the mentioned assemblies too. Signatures of static methods
6130         try_assembly_resolve and real_load now have an additional parameter:
6131         refonly.
6132
6133         * assembly.c: General changes to mono_assembly_ methods to support
6134         reflection only api. Functions mono_assembly_open, mono_assembly_load,
6135         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
6136         suffix, to support an additional gbool parameter to specify whether
6137         the assembli is reflection only or not. Created some new hook functions 
6138         to add support for reflection only assemblies. Signatures of static 
6139         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
6140         have now an additional parameter: refonly.
6141
6142         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
6143         indicating whether the assembly is reflection only or not.
6144
6145         * exception.c: Add mono_get_exception_invalid_operation.
6146
6147         * icall.c: Throw an InvalidOperationException when trying to invoke
6148         a property/method/event, or trying to set/get the value of a field.
6149         Also add an icall to retrieve the ref_only flag to the
6150         MonoReflectionAssembly.
6151
6152 2005-02-23  Chris Toshok  <toshok@ximian.com>
6153
6154         Part of fix for #72827.
6155         * mono-debug.c (mono_debug_add_method): add lexical block data to
6156         the info we write.  Kind of a hack at the moment - we copy the
6157         lexical block info from the MonoDebugMethodInfo to the
6158         MonoDebugMethodJitInfo here, before writing it.
6159         (mono_debug_read_method): read the lexical block info.
6160
6161         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
6162
6163         * debug-mono-symfile.h: add lexical block support.
6164
6165         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
6166         support.
6167
6168 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
6169
6170         * loader.c (mono_lookup_pinvoke_call): Fix warning.
6171
6172         * object.c (mono_runtime_free_method): Call mono_free_method () and
6173         put the TODOs there.
6174
6175         * loader.c (mono_free_method): Free up most memory allocated for 
6176         dynamic methods.
6177
6178 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
6179
6180         * reflection.c: properly flag a Type argument to a
6181         named custom attr value (bug #72248).
6182
6183 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6184
6185         * reflection.c: reduce code duplication in named custom
6186         attribute encoding.
6187
6188 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
6189
6190         * reflection.c: properly encode custom attrs of type object
6191         (bug #72649).
6192
6193 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
6194
6195         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
6196
6197 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
6198
6199         * socket-io.c: load System.dll if it's not loaded already
6200         (bug #72850 and #70477).
6201
6202 2005-02-21  Martin Baulig  <martin@ximian.com>
6203
6204         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
6205         generic instances.
6206
6207 2005-02-21  Martin Baulig  <martin@ximian.com>
6208
6209         * reflection.c (mono_image_build_metadata): We also need to
6210         "fixup" the MethodImpl table after we computed the final method
6211         indices.  Call fixup_methodimpl() to do that.
6212         (fixup_methodimpl): New private method.
6213
6214 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6215
6216         * assembly.c: special case mscorlib.dll (bug#72536),
6217         patch from Carlos Alberto Cortez.
6218
6219 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
6220
6221         * threads-types.h threads.c: Fix build bustage.
6222
6223         * threads.c: Use a union for long<->double conversions.
6224
6225         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
6226         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
6227
6228         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
6229         containing the checkpoint call with NOT_TAKEN.
6230         
6231         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
6232         checkpoint before pushing the arguments, so they won't have to be
6233         spilled to stack.
6234
6235 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6236
6237         * domain.c, assembly.c, domain-internals.h: make some data
6238         const and relocation-free.
6239
6240 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
6241
6242         * object.c, appdomain.c, class-internals.h: introduce the
6243         MonoClassRuntimeInfo structure to hold the info needed to
6244         use a class at runtime. Made mono_class_vtable() lock-free
6245         for all the appdomains.
6246
6247 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
6248
6249         * metadata-internals.h, image.c: introduce a per-image mempool to
6250         be used for memory that has the same lifetime as the image.
6251
6252 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
6253
6254         * domain.c: In mono_init_internal(), instead of selecting the first
6255         runtime version supported by an executable, get a list of all
6256         supported versions and select the one for which an mscorlib exists
6257         (since even if the runtime supports a given version, it doesn't mean
6258         that the framework for that version is installed).
6259         Modified get_runtimes_from_exe to support this behavior.
6260         In supported_runtimes, added information about additional system
6261         assembly versions.
6262         
6263         * assembly.c: Added support for more than one system assembly version
6264         per runtime version. Updated the assembly list.
6265         In mono_assembly_remap_version, removed the initial version check,
6266         since we don't know to which version we need to compare until we
6267         get the version set on which the assembly is based.
6268         Moved the code for loading corlib into the new method
6269         mono_assembly_load_corlib(), so it can be used by the initialization
6270         code.
6271         
6272         * domain-internals.h: Updated data structures and added declaration
6273         for mono_assembly_load_corlib.
6274
6275 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
6276
6277         * reflection.c (resolve_object): Fix the creation of the signature in 
6278         the SignatureHelper case.
6279
6280         * assembly.c (mono_assembly_remap_version): Fix binary search.
6281         
6282 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
6283  
6284         * class.c: Added inheritance check when a method is overloaded (from a
6285         virtual method or when implementing an interface) and when a class is
6286         inherited. Added functions to set a failure for a class and to 
6287         retreive the exception from a failure.
6288         * class-internals.h: Added fields to MonoClass to keep the exception
6289         information status for inheritance (or other exceptions) to be thrown
6290         later (i.e. not at load time).
6291         * object.c: Throw the inheritance SecurityException when a type is to 
6292         be created with either class or method inheritance violations.
6293         * reflection.c|h: Fix when getting declsec from a class. Removed 
6294         unrequired code for class. Improved sanity in parameter naming.
6295         * security-manager.c|h: Added functions to check for class and method
6296         inheritance.
6297
6298 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
6299
6300         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
6301         and has_finalize in dynamic types as well.
6302
6303 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
6304
6305         * culture-info-table.h : fixed currency format for en-GB (and so on).
6306
6307 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
6308
6309         * gc.c: ensure the GC handles never have 0 as a value.
6310
6311 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
6312
6313         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
6314         a pointer to a struct to unmanaged code. Fixes #72625.
6315
6316 2005-02-16  Martin Baulig  <martin@ximian.com>
6317
6318         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
6319
6320 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
6321
6322         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
6323
6324 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
6325
6326         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
6327
6328         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
6329         UnmanagedFunctionPointerAttribute, use it for determining calling convention
6330         etc. Fixes #71471.
6331
6332         * reflection.c (mono_custom_attrs_get_attr): New helper function.
6333
6334         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
6335
6336 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
6337
6338         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
6339         changes to make the current context a field in MonoThread.
6340
6341 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
6342
6343         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
6344         the last change.
6345         
6346         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
6347         extracted from mono_marshal_get_native_wrapper.
6348
6349         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
6350         to create wrappers around native functions.
6351
6352         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
6353         delegates for arbitrary function pointers. Fixes #71472.
6354
6355 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
6356
6357         * threads.c: cleaned up the code a little.
6358
6359 2005-02-15  Martin Baulig  <martin@ximian.com>
6360
6361         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
6362         the data table.
6363
6364         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
6365         allocate larger chunks if needed.
6366
6367 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
6368
6369         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
6370         in by mistake.
6371
6372 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
6373
6374         * domain.c: keep the domains in an array and ensure the domain ids
6375         are kept small, so they can be used as indexes to domain-specific data
6376         with a small memory overhead.
6377
6378 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
6379
6380         * icall.c: Handle byref types in Type icalls. Fixes #72544.
6381
6382 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
6383
6384         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
6385
6386 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
6387
6388         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
6389
6390         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
6391         values.
6392
6393         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
6394         
6395 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
6396
6397         * domain-internals.h: add the hashtable here.
6398
6399         * class-internals.h: Remove `info' from MonoMethod
6400
6401         * domain.c: Add a new hashtable, jit_trampoline_hash
6402
6403 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
6404
6405         * object.c: don't set the value of static fields
6406         (fixes bug#72494).
6407
6408 2005-02-11  Martin Baulig  <martin@ximian.com>
6409
6410         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
6411         (mono_debug_add_method): Silently ignore the method if it's too big.
6412         (mono_debug_add_type): Likewise.
6413
6414 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
6415
6416         * threads.c, appdomain.c: remove #ifdefs from the code.
6417
6418 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
6419
6420         * metadata-internals.h: Added flags to MonoAssembly to cache the most
6421         common security informations. This allows us to stay in unmanaged code
6422         when doing LinkDemand and it's special cases (except for the first 
6423         time for initialization). The flags a very much used with --security.
6424         * reflection.c|h: Added code to get declarative security attributes 
6425         for LinkDemand and InheritanceDemand. This required to refactor the
6426         existing code for Demand.
6427         * security-manager.c|h: Added new method fields for the special cases
6428         of LinkDemand.
6429
6430 2005-02-10  Martin Baulig  <martin@ximian.com>
6431
6432         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
6433         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
6434
6435 2005-02-10  Martin Baulig  <martin@ximian.com>
6436
6437         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
6438         debugging code; this is almost a complete rewrite.
6439
6440         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
6441
6442 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6443
6444         * domain.c, object.h: expose mono_string_equal () and 
6445         mono_string_hash ().
6446         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
6447         it's implemented in managed code.
6448
6449 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6450
6451         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
6452         lo leak objects between appdomains.
6453
6454 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6455
6456         * assembly.c: old compilers compilation fix from 
6457         robertj@gmx.net (Robert Jordan).
6458
6459 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
6460
6461         * class-internals.h: Little reminder for the future.
6462
6463         * debug-helpers.c: Fix up wrapper_type_names
6464
6465 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6466
6467         * image.c, metadata-internals.h: when loading an image from a file,
6468         mmap all of it and use the same codepaths as when using a
6469         in-memory image: the code is simpler and we use less memory
6470         (both writable and readonly).
6471
6472 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
6473
6474         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
6475         API to alloc runtime data structures that need to be tracked by the
6476         GC and contain pointers.
6477         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
6478         make the code more readable and eventually use a different GC.
6479
6480 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
6481
6482         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
6483         for out arguments.
6484         
6485 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
6486
6487         * object.c: In release_type_locks(), don't release the cctor lock
6488         if it has already been released. This fixes a crash in the
6489         thread5 test.
6490
6491 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6492
6493         * gc.c, marshal.c, icall.c: register a delegate for finalization
6494         only when the native function pointer has been allocated for it.
6495
6496 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6497
6498         * object.c: cleaned up some code, allocate objects that are
6499         pointer free with the atomic malloc variant. Allocate memory
6500         for static data from the mempool if it's pointer-free.
6501         Allocate the bounds array at the end of the array data, when needed.
6502         * object-internals.h, object.h: move a private function in a private
6503         header.
6504         * class.c: handle missing case in tracking references in fields.
6505
6506 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
6507
6508         * class.c, class-internals.h: keep track if a type has
6509         reference fields in either the instance or static fields.
6510
6511 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
6512
6513         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
6514         and renamed to MonoRuntimeInfo. Added fields to store the expected
6515         framework assembly version. Changed mono_get_framework_version and
6516         mono_get_runtime_version for a single mono_get_runtime_info method.
6517         
6518         * assembly.c: Added method to remap system assembly versions to the
6519         current executing runtime version. Removed old mapping code.
6520         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
6521         
6522         * icall.c, reflection.c: Track api changes.
6523
6524 2005-02-06  Miguel de Icaza  <miguel@novell.com>
6525
6526         * loader.c (method_from_memberref): Improve error reporting,
6527         produce the class name instead of the typeref/typedef index. 
6528
6529 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
6530
6531         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
6532
6533 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6534
6535         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
6536         stdcall and charset name mangling.  Reorganize the code and add
6537         some tracing stuff.
6538
6539 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
6540
6541         * monodiet.c: More iters!
6542
6543         * marshal.c: Iter usage.
6544
6545         * icall.c: Iter usage.
6546
6547         * object.c: Use iters.
6548
6549         * debug-helpers.c: More iters
6550
6551 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6552
6553         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
6554         under win32.
6555
6556 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
6557
6558         * mono-debug-debugger.c: use iters
6559
6560         * class.c, class-internals.h: mono_class_setup_events is static
6561         now
6562
6563         * All callers: use iters
6564
6565 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6566
6567         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
6568         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
6569
6570 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
6571
6572         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
6573
6574         * marshal.h: Add prototypes for ldfld/stfld_remote.
6575
6576         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
6577         this is called during startup.
6578         
6579 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
6580
6581         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
6582         MonoThreadsSync struct private in monitor.c. Changed the way
6583         MonoThreadsSync is allocated so it's faster and there is no
6584         need to keep track of it with a finalizer and it uses less memory.
6585         This also finally allows us to allocate mono objects as ptrfree when
6586         there are no reference fields.
6587
6588 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
6589
6590         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
6591         disappearing link to the GC interface and use them to simplify
6592         the gchandles code.
6593
6594 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
6595
6596         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
6597         stfld_remote which call mono_load/store_field_new. This allows methods
6598         calling ldfld/stfld wrappers to be AOTed.
6599
6600         * console-io.c: Include sys/filio.h under solaris.
6601         
6602         * console-io.c: Include curses.h if needed correctly.
6603
6604 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
6605         
6606         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
6607         method->klass as well.
6608
6609         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
6610
6611         * class.c (mono_class_init): Switch on lazy initialization of 
6612         methods.
6613
6614         * class.c (mono_class_get_finalizer): Handle the case when the 
6615         finalizer is inherited.
6616
6617 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6618
6619         * console-io.c: <curses.h> is needed by term.h on solaris.
6620
6621 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
6622
6623         * icall.c, class-internals.h, monodiet.c, class.c: Remove
6624         mono_class_setup_properties where possible. Remove this ftn from
6625         the header file, and make it static.
6626
6627 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
6628
6629         * loader.c: Add missing setup_... call.
6630
6631         * class.c: Add missing setup_... calls.
6632
6633         * class.c (mono_class_init): Switch on lazy initialization of 
6634         the generic vtable.
6635         
6636         * class.c (mono_class_init): Fix generics broken by the recent changes.
6637
6638         * monodiet.c (handle_type): Add missing setup_... calls.
6639
6640         * class.c: Back out garbage in previous patch.
6641         
6642         * class.c: Add missing setup_... calls.
6643
6644         * class.c (mono_class_get_method_from_name_flags): Avoid calling
6645         mono_class_setup_methods () if possible.
6646
6647         * class-internals.h (MonoClass): Add 'has_cctor' flag.
6648
6649         * class-internals.h (MonoCachedClassInfo): New structure.
6650
6651         * class.c: Initialize properties and events fields of MonoClass lazily.
6652
6653         * class.c: Add infrastructure for lazily initializing the methods and
6654         vtable fields of MonoClass. Not yet used.
6655
6656         * class.c (mono_class_get_finalizer): New helper function.
6657
6658         * class.c: Add infrastructure for loading some class related data from
6659         an AOT file.
6660
6661         * object.c: Add infrastructure for initializing the vtable from data
6662         in the AOT file.
6663
6664         * gc.c (run_finalize): Use mono_class_get_finalizer ().
6665
6666         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
6667         appropriate initialization function before accessing parts of the
6668         MonoClass structure.
6669
6670         * marshal.c: Fix warnings.
6671         
6672         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
6673
6674         * mono-debug-debugger.c (get_exception_message): Use 
6675         mono_class_get_method_from_name_flags ().
6676
6677 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
6678
6679         * reflection.c, appdomain.c: Replace a few manual searches that
6680         Zoltan missed. (Paolo approved this part of my initial patch).
6681
6682 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
6683
6684         * profiler.c: disable recording statistical events at report time.
6685
6686 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6687
6688         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
6689         to byteswap arrays of enum values, too (bug #72080).
6690
6691 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
6692
6693         * appdomain.c (set_domain_search_path): Allow this to be called if
6694         domain->setup is not yet set.
6695
6696         * loader.c (mono_method_get_index): New helper function.
6697
6698         * loader.c reflection.c: Use mono_method_get_index ().
6699
6700         * class.c (mono_class_get_method_from_name_flags): New helper method.
6701
6702         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
6703         this.
6704
6705         * class.c (mono_class_get_cctor): New helper method.
6706
6707         * string-icalls.c object.c class.c marshal.c reflection.c: Use
6708         mono_class_get_method () to look up methods.
6709
6710 2005-02-01  Miguel de Icaza  <miguel@novell.com>
6711
6712         * console-io.c: Fix the build, this should work on Windows.
6713
6714 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
6715
6716         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
6717         be set to null to keep things valid
6718
6719 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6720
6721         * icall.c: added Console 2.0 icalls.
6722         * Makefile.am: added console-io.[ch]
6723         * console-io.[ch]: internal calls for Console 2.0 API.
6724
6725 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6726
6727         * class.c: make sure we consider all the interfaces
6728         when calculating max_interface_id (bug found by
6729         Jeroen Frijters running ikvm).
6730
6731 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
6732
6733         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
6734         valuetype fields to null.
6735
6736         * object.c (set_value): Ditto. Fixes #71669.    
6737
6738 2005-01-31  Martin Baulig  <martin@ximian.com>
6739
6740         * metadata.c (mono_metadata_has_generic_params): New public
6741         function; checks whether something is a generic method.
6742
6743 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
6744
6745         * appdomain.c: fix infinite recursion when adding assemblies.
6746
6747 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
6748
6749         * object.c: Fix small typo to return all items for Environment.
6750         GetCommandLineArgs.
6751
6752 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6753
6754         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
6755         reflection.c: more domain and assembly-unload related fixes
6756         and memory leaks plugs.
6757
6758 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
6759
6760         * 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.
6761
6762 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
6763
6764         * loader.c (mono_method_signature): Make this method lazy
6765         (mono_get_method_from_token): Don't computate the signature here.
6766
6767         Doing this saves quite a bit of memory. I got 90 kb on starting up
6768         monodoc. It should also save some disk reads on startup.
6769
6770         * *: MonoMethod->signature might be NULL now. You *MUST* use
6771         mono_method_signature.
6772
6773 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
6774
6775         * object.c (mono_runtime_get_main_args): Return an array from the
6776         current domain here. Fixes #71938.
6777
6778 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
6779
6780         * monitor.c: formatting changes to comply with the
6781         mono coding style and remove #ifdefs from the code.
6782
6783 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6784
6785         * metadata.c, private.h: remove some unneeded data
6786         and use a more compact representation for table schemas.
6787
6788 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
6789
6790         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
6791         to get a better distribution in hash tables.
6792         * *.c: use mono_aligned_addr_hash() where appropriate.
6793         * assembly.c: make var static.
6794
6795 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
6796
6797         * domain-internals.h: Put MonoJitInfo on a diet.
6798
6799         * domain.c: Fix a warning.
6800
6801 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6802
6803         * gc.c: rework the gc handles code to reuse handles
6804         when freed.
6805
6806 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
6807
6808         * domain.c: fixed long standing bug in mono_string_equal() which
6809         was brought to light with the ldstr changes.
6810
6811 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
6812
6813         * reflection.c: Remove warning by adding missing include for marshal.h
6814
6815 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6816
6817         * domain.c, object.c: change the ldstr_table to hold
6818         MonoString* as keys: makes the runtime isinterned lookup
6819         faster and simplifies memory management.
6820
6821 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
6822  
6823         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
6824         possible to add imperative security checks before calling the icall.
6825         * reflection.c: Return security attributes on the original MonoMethod
6826         (and not the wrapped one). This fix permissions on icalls.
6827
6828 2005-01-25  Dick Porter  <dick@ximian.com>
6829
6830         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
6831         the check for mktime() support actually test the mktime() return
6832         value.  "Fixes" bug 71682, though the output is still different to
6833         MS.
6834
6835 2005-01-25  Martin Baulig  <martin@ximian.com>
6836
6837         * class.c (mono_class_is_assignable_from): Make this work for
6838         generic instances.
6839
6840 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
6841
6842         * marshal.c (mono_string_utf8_to_builder)
6843         (mono_string_builder_to_utf16): We might not have ownership of the
6844         string. In thise case, we need to create a new buffer.
6845
6846         * object-internals.h (mono_stringbuilder_capacity): sb->str might
6847         be null, in which case, use the default capacity.
6848
6849 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6850
6851         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
6852         GC events to the profiler.
6853
6854 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6855
6856         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
6857         if you don't want the GC to run.
6858
6859 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
6860
6861         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
6862         start providing a GC API and keeping different implementations in
6863         their own file.
6864         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
6865
6866 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
6867
6868         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
6869         mmap rather than allocating a huge buffer.
6870         (mono_debug_close_mono_symbol_file): Free the buffer allocated
6871         above.
6872
6873 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
6874
6875         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
6876         and CheckExecutionRights.
6877         * reflection.c|h: Keep the index of the declarative security to be 
6878         used, instead of the pointer, when AOT compiler is used. Also add 
6879         class initialization when requesting demands.
6880         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
6881         CheckExecutionRights. Both properties are now FALSE by default, and
6882         unmodifiable, unless the --security option is used.
6883
6884 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6885
6886         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
6887         reflection.c: properly refcount images and assemblies, many leaks fixed.
6888
6889 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6890
6891         * threadpool.c: increase the timeout for threads in the thread pool to
6892         10s.  Fixes bug #67159.
6893
6894 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
6895
6896         * class-internals.h: Sun's compiler insists on explicit
6897         signed on bit fields to handle then correctly.
6898
6899 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
6900
6901         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
6902         Make the size of the array fit only the number of invalid path
6903         chars that we have.
6904
6905         * class.c (_mono_class_get): Improve the error reporting when a
6906         class referenced is not found, to assist debugging. 
6907
6908 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
6909
6910         * threads.c: fix off-by-one error.
6911         * domain.c: free data allocated in the domain.
6912
6913 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
6914
6915         * reflection.c (mono_method_body_get_object): Fill out exception info
6916         as well.
6917
6918         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
6919         structure.
6920         
6921 2005-01-19  Martin Baulig  <martin@ximian.com>
6922
6923         * loader.c (mono_get_method_constrained): Make this work again.
6924
6925 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
6926
6927         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
6928         guint16 to match the managed side.
6929
6930         * reflection.c (mono_reflection_body_get_object): Fill out local
6931         variables array.
6932
6933         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
6934         as well.
6935
6936         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
6937         'local_var_sig_token'.
6938
6939 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
6940
6941         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
6942         System.Drawing.
6943
6944         * reflection.c (mono_method_body_get_object): Handle abstract and
6945         runtime methods.
6946
6947 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
6948
6949         * marshal.c, loader.c, class-internals.h, reflection.c:
6950         store the emthod data for a wrapper in an array instead of a list.
6951
6952 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
6953
6954         * marshal.c: change the code to allocate memory more
6955         conservatively for method wrappers.
6956
6957 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
6958
6959         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
6960         fields from MonoClass to the marshal info structure where they belong.
6961
6962 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6963
6964         * class.c, object.c, class-internals.h, marshal.c: rearrange
6965         some fields and tweak some types to lower memory usage.
6966
6967 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
6968
6969         * threads.c (signal_thread_state_change): Handle the case when the
6970         target thread is the current thread.
6971
6972         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
6973
6974         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
6975         emit_ptr_to_object_conv. 
6976
6977         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
6978         marshalling. Fixes #71352.
6979
6980 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
6981
6982         * metadata.h, blob.h: move table enum to blob.h so it can be included
6983         in any header.
6984         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
6985         cut the size of MonoImage/MonoDynamicImage.
6986
6987 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
6988
6989         * profiler.c (mono_profiler_install_simple): Fix default arguments.
6990
6991 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
6992
6993         * reflection.c, reflection.h, icall.c: add a function to check
6994         if an attribute type is defined for a metadata object.
6995
6996 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
6997
6998         * object-internals.h: Added some needed fields from StringBuilder class.
6999         * marshal.c: Set the maxCapacity when creating a StringBuilder.
7000
7001 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
7002
7003         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
7004         threads before shutting down the runtime.
7005
7006         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
7007
7008 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7009
7010         * object-internal.h, threads.c: implement stacksize and 
7011         parameterized thread start functionality (requires
7012         matching corlib). Marked broken code for later removal.
7013
7014 2005-01-12  Martin Baulig  <martin@ximian.com>
7015
7016         * class-internals.h (MonoGenericClass): Moved the `initialized'
7017         flag to MonoDynamicGenericClass, removed `init_pending'.
7018         (MonoGenericInst): Added `is_reference' flag.
7019
7020 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
7021
7022         * reflection.c (mono_image_create_pefile): Only set the pe_offset
7023         inside the MSDOS header. Fixes #71201.
7024
7025         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
7026         gc thread.
7027         (mono_domain_finalize): Ditto.
7028
7029 2005-01-12  Martin Baulig  <martin@ximian.com>
7030
7031         * class.c (mono_get_shared_generic_class): Use the cache for
7032         non-dynamic generic classes.
7033
7034         * class-internals.h (mono_class_create_generic_2): Removed
7035         function prototype, this function is now static inside class.c.
7036
7037         * class.c (mono_class_create_generic_2): Made this static, only
7038         call it from mono_class_init() and mono_class_setup_parent().
7039         (collect_implemented_interfaces_aux): Call mono_class_init() on
7040         the interfaces we collect.
7041         (mono_class_setup_vtable): Call mono_class_init (class->parent).
7042
7043 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7044
7045         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
7046         it a real thread handle.
7047
7048         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
7049         MonoJitExceptionInfo, since each catch clause needs its own variable.
7050         
7051 2005-01-11  Dick Porter  <dick@ximian.com>
7052
7053         * image.c (mono_pe_file_open): New variant on mono_image_open()
7054         that does not set up the CLI metadata; used for FileVersionInfo so
7055         it can get the data for windows binaries too.
7056         
7057         * process.c (process_read_string_block): Don't read off the end of
7058         the StringTable block.
7059
7060         These both fix bug 70766.
7061
7062 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
7063
7064         * gc.c: set some fields to NULL at GC cleanup time.
7065         * threads.c: if we quit the main thread, call exit ().
7066
7067 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7068
7069         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
7070
7071 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
7072
7073         * threads.h, threads.c, object.c: added accessor and settor for
7074         main_thread. Handle it specially when exiting from it: wait
7075         for other foreground threads to exit.
7076
7077 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
7078
7079         * process.c, verify.c: remove some bloat.
7080
7081 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
7082
7083         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
7084         the calling convention to cdecl under win32.
7085
7086 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
7087
7088         * object.c (mono_object_get_size): New function to get the size of
7089         an object instance.
7090
7091         * profiler.c (simple_allocation): Use above.
7092
7093 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
7094
7095         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
7096         ves_icall_System_AppDomain_getRootDomain (as it's not required to
7097         get an appdomain by it's id and we can't assume the root's id is 0).
7098         * domain-internals.h: Change the function prototype to match.
7099         * icall.c: Change the icall table for AppDomain.
7100
7101 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
7102
7103         * locales.c (string_invariant_compare_char): Only compute
7104         GUnicodeTypes in the case where we need them.  Test for ordinality
7105         first and return if so.
7106
7107         From the commit:
7108
7109                 /*
7110                  * FIXME: here we must use the information from c1type and c2type
7111                  * to find out the proper collation, even on the InvariantCulture, the
7112                  * sorting is not done by computing the unicode values, but their
7113                  * actual sort order.
7114                  */
7115
7116 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7117
7118         * loader.c: for P/Invoke methods, allow the "Internal" shared
7119         library name to refer to the calling process symbol namespace.
7120
7121 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
7122
7123         * Makefile.am: Add the security manager to the build.
7124         * security-manager.c|h: New. Initialization of the security manager.
7125
7126 2005-01-07  Dick Porter  <dick@ximian.com>
7127
7128         * threads.c: 
7129         * monitor.c: Update thread state during Monitor and WaitHandle
7130         waits.  Fixes bug 71031.
7131
7132 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
7133
7134         * reflection.c (property_encode_signature): Correctly handle when the
7135         property has no methods.
7136
7137 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
7138
7139         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
7140         
7141         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
7142         fields from mb, not rmb. Fixes #71017.
7143
7144         * marshal.c (emit_ptr_to_str_conv): Add support for 
7145         ByValTStr -> string conversion. Fixes #71015.
7146
7147         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
7148
7149         * mempool.c (mono_mempool_contains_addr): New helper function.
7150
7151 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
7152
7153         * metadata.c (mono_metadata_compute_size): Fix size calculation of
7154         HasSematics encoded fields.
7155         
7156         * metadata.c (mono_type_to_unmanaged): Improve error message for 
7157         invalid string marshalling.
7158
7159         * metadata.c: Fix warnings.
7160         
7161 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7162
7163         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
7164         profiler support.
7165
7166 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
7167
7168         * domain.c object.c domain-internals.h: Revert part of r38077 since the
7169         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
7170         tests.
7171
7172 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
7173
7174         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
7175         so methods containing these can be AOTed.
7176
7177 2005-01-03  Martin Baulig  <martin@ximian.com>
7178
7179         * loader.c (find_method): Removed the hack for generic instances.
7180         (method_from_memberref): If our parent is a generic instance, pass
7181         its generic type definition to find_method() and then inflate the
7182         method.
7183         (mono_get_method_constrained): Pass the generic type definition to
7184         find_method() and inflate the method later.
7185
7186         * class-internals.h (MonoStats): Added `generic_class_count'.
7187
7188         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
7189         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
7190
7191         * reflection.c (mono_custom_attrs_from_params): Don't ignore
7192         generic type definitions.
7193
7194 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
7195
7196         * loader.c icall.c: Fix warnings.
7197
7198 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
7199
7200         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
7201         blittable types. Fixes #70864.
7202
7203 2004-12-29  Martin Baulig  <martin@ximian.com>
7204
7205         * icall.c
7206         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
7207
7208         * reflection.c (mono_method_get_object): Create a
7209         "System.Reflection.MonoGenericMethod" for inflated methods; don't
7210         call mono_get_inflated_method().
7211
7212         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
7213
7214 2004-12-27  Martin Baulig  <martin@ximian.com>
7215
7216         * class-internals.h (MonoMethod): Added `is_inflated' flag.
7217         (MonoMethodInflated): Added `inflated' field.
7218
7219         * class.c (mono_class_inflate_generic_method): Don't really
7220         inflate the method here; just set the `is_inflated' flag in the
7221         MonoMethod.
7222         (mono_class_get_inflated_method): Actually inflate the method here
7223         if it's not already inflated; we use the MonoMethodInflated's new
7224         `inflated' field as a cache.
7225
7226 2004-12-26  Martin Baulig  <martin@ximian.com>
7227
7228         * class.c
7229         (inflate_generic_class): Moved some code out of inflate_generic_type().
7230         (mono_class_inflate_generic_method): If we're already inflated,
7231         inflate the context and use the declaring method; ie. make sure
7232         the declaring method of an inflated method is always the generic
7233         method definition.
7234         (mono_class_create_from_typedef): Create
7235         `class->generic_container->context->gclass'.
7236
7237 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
7238
7239         * metadata-internals.h, marshal.c, reflection.c: More
7240         MonoGHashTable->GHashTable.
7241
7242         * domain-internals.h, class.c: Change MonoGHashTable's into
7243         GHashTables for some cases where no gc stuff is used
7244
7245         All users: update apis
7246
7247 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
7248
7249         * metadata.c (builtin_types): Make this `const'. Makes this get
7250         put into the shareable section.
7251         (mono_metadata_init): Casts to make gcc happy.
7252
7253 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
7254
7255         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
7256
7257 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
7258
7259         * icall.c: Added an internal call to retrieve the position and length
7260         of assembly-level declarative security attributes (RequestMinimum, 
7261         RequestOptional and RequestRefuse). This is used by the Assembly class
7262         to re-create the corresponding permission sets.
7263
7264 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
7265
7266         * marshal.c: fix the stelemref wrapper to be type correct
7267         (and faster).
7268
7269 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
7270
7271         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
7272         to do key & 0x7fffffff. Hashtable already does this. It just
7273         results in longer code.
7274
7275 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
7276
7277         * appdomain.c: Bump corlib version.
7278         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
7279         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
7280         * reflection.c|h: Add functions to get declarative security infos
7281         (blob position and length) for assemblies, classes and methods.
7282
7283 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
7284
7285         * reflection.c: sort the constant table (bug #70693).
7286
7287 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
7288
7289         * object-internals.h, threads.c, domain.c: add accessors for
7290         the MonoThread and MonoDomain tls keys.
7291
7292 2004-12-18  Martin Baulig  <martin@ximian.com>
7293
7294         * class.c (inflate_generic_type): If we're inflating a generic
7295         instance, set `ngclass->context->container = context->container';
7296         ie. the container we inflated into.
7297
7298         * metadata.c (mono_metadata_parse_generic_param): Reflect above
7299         inflate_generic_type() changes.
7300
7301 2004-12-17  Martin Baulig  <martin@ximian.com>
7302
7303         * class-internals.h
7304         (MonoGenericClass): Replaced `MonoType *generic_type' with
7305         `MonoClass *generic_class'.  Removed `dynamic_info'; if
7306         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
7307         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
7308
7309 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
7310
7311         * exception.c (mono_exception_from_token): New helper function.
7312
7313 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
7314
7315         * assembly.c (mono_assembly_load_with_partial_name): Call 
7316         mono_assembly_loaded before invoking the preload hooks. Fixes
7317         #70564.
7318
7319         * object-internals.h (MonoThread): Change culture_info and 
7320         ui_culture_info into an array.
7321
7322         * threads.c: Cache culture info objects from more than one appdomain.
7323
7324         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
7325         current UI culture.
7326
7327 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
7328
7329         * threads.h threads.c appdomain.c: Clear the culture_info field of
7330         all threads during unloading if they point to an object in the dying
7331         appdomain.
7332
7333 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
7334
7335         * culture-info.h (TextInfoEntry): New struct
7336         * object-internals.h: sync with managed
7337         * locales.c: fill the `text_info_data' field
7338         * culture-info-tables.h: update
7339
7340 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
7341
7342         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
7343         collector.
7344
7345 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
7346
7347         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
7348         (ves_icall_ModuleBuilder_getMethodToken): Ditto
7349
7350 2004-12-12  Martin Baulig  <martin@ximian.com>
7351
7352         * mono-debug-debugger.c (write_type): If we're an enum and the
7353         builtin types have already been initialized, call mono_class_init().
7354
7355 2004-12-11  Martin Baulig  <martin@ximian.com>
7356
7357         * metadata.c (mono_metadata_load_generic_params): Added
7358         `MonoGenericContainer *parent_container' argument; automatically
7359         compute `container->is_method'; pass the correct owner to
7360         get_constraints().      
7361
7362         * reflection.c (compare_genericparam): Sort the GenericParam table
7363         according to increasing owners. 
7364
7365 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
7366
7367         * profiler.c: allow disabling the default profiler.
7368
7369 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
7370
7371         * decimal.c, icall.c: allow disabling System.Decimal support.
7372
7373 2004-12-09  Marek Safar <marek.safar@seznam.cz>
7374
7375         * reflection.c: Add support for null attribute arguments.
7376
7377 2004-12-09  Martin Baulig  <martin@ximian.com>
7378
7379         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
7380         names to get rid of compiler warnings.
7381
7382 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7383
7384         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
7385         mono_marshal_load_type_info (). Fixes #69625.
7386         (mono_marshal_get_ptr_to_struct): Likewise.
7387
7388 2004-12-08  Martin Baulig  <martin@ximian.com>
7389
7390         * mono-debug.h: Bumped version number to 47.
7391
7392         * mono-debug-debugger.c
7393         (mono_debugger_event_handler, mono_debugger_event): Take two
7394         guint64 arguments insteed of a gpointer and a guint32.  
7395
7396 2004-12-08  Martin Baulig  <martin@ximian.com>
7397
7398         * debug-mono-symfile.h
7399         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
7400         `address' to `native_offset'.
7401
7402 2004-12-08  Martin Baulig  <martin@ximian.com>
7403
7404         * class.c (mono_class_create_from_typespec): Only inflate if we
7405         either have `context->gclass' or `context->gmethod'.
7406
7407 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7408
7409         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
7410
7411         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
7412
7413         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
7414
7415         * reflection.c (mono_assembly_get_object): Remove the workaround put
7416         in for the release.
7417         
7418         * appdomain.c: Use the corlib_internal field from MonoAssembly.
7419
7420         * appdomain.c: Bump corlib version.
7421
7422         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
7423         be visible in other appdomains.
7424
7425 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
7426
7427         * threads.c: Interlocked inc and dec for longs were messed up,
7428         use a KISS based impl for this. Fixes 70234
7429
7430 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
7431
7432         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
7433
7434 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
7435
7436         * icall.c: fix to follow policy not to allow struct
7437         arguments in icalls.
7438
7439 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7440
7441         * process.c: make the patch that handles spaces in file paths work
7442         on mono/windows too.
7443
7444 2004-12-06  Martin Baulig  <martin@ximian.com>
7445
7446         * class.c (mono_class_create_generic): Call
7447         mono_class_setup_supertypes() if we're dynamic.
7448         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
7449
7450 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
7451
7452         * object-internals.h: Add new fields to MonoThread.
7453
7454         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7455
7456         * icall.c threads-types.h threads.c: Add new icalls.
7457
7458         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
7459
7460         * object-internals.h (MonoReflectionAssembly): Sync object layout with
7461         managed side.
7462
7463         * appdomain.c: Bump corlib version.
7464
7465         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
7466         internal assemblies. Fixes #69181.
7467
7468 2004-12-05  Martin Baulig  <martin@ximian.com>
7469
7470         * class.c (mono_class_inflate_generic_signature): Make this a
7471         no-op if `context' is NULL or we don't have any type parameters;
7472         also copy `sentinelpos'.        
7473
7474 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
7475
7476         * image.c: Add unbox_wrapper_cache.
7477
7478         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
7479
7480         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
7481         function generator.
7482         
7483         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
7484         Fixes #70173.
7485
7486         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
7487         
7488 2004-12-04  Martin Baulig  <martin@ximian.com>
7489
7490         * loader.c (mono_method_get_signature_full): New public function;
7491         like mono_method_get_signature(), but with an additional
7492         `MonoGenericContext *' argument.
7493
7494         * class.c (mono_class_inflate_generic_signature): Formerly known
7495         as inflate_generic_signature(); make this public.
7496
7497 2004-12-04  Martin Baulig  <martin@ximian.com>
7498
7499         * metadata.c
7500         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
7501         instead of a `MonoGenericContainer *'.  
7502         (mono_metadata_parse_array_full): Likewise.
7503         (mono_metadata_parse_signature_full): Likewise.
7504         (mono_metadata_parse_method_signature_full): Likewise.
7505         (mono_metadata_parse_generic_inst): Likewise.
7506         (mono_metadata_parse_generic_param): Likewise.
7507         (mono_metadata_parse_mh_full): Likewise.
7508         (mono_type_create_from_typespec_full): Likewise.
7509
7510 2004-12-03  Martin Baulig  <martin@ximian.com>
7511
7512         * class-internals.h (MonoGenericContainer): Replaced the
7513         `MonoGenericContext * pointer with a `MonoGenericContext'
7514         structure and made it the first element.
7515
7516 2004-12-03  Martin Baulig  <martin@ximian.com>
7517
7518         * class.c
7519         (inflate_generic_type): Set the `context->container' when creating
7520         a new MonoGenericContext.
7521         (mono_class_inflate_generic_method): Likewise.
7522         (mono_class_create_from_typespec): Just use `context->container'
7523         to get the container.
7524
7525         * loader.c (method_from_methodspec): Set `context->parent' from
7526         `context->container' - and if that's a method container, use its
7527         parent.  Also set the `context->container' when creating a new
7528         MonoGenericContext.
7529         (mono_get_method_from_token): Use just `context->container' to get
7530         the container.
7531
7532         * metadata.c (do_mono_metadata_parse_generic_class): Also set
7533         `gclass->context->container'.
7534
7535         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
7536         the `context->container' when creating a new MonoGenericContext.
7537
7538 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
7539
7540         * reflection.c (compare_genericparam): Sort params with identical
7541         owner by their number. Fixes gen-111 on sparc.
7542
7543 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
7544
7545         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
7546         around the domain changes.
7547
7548         * appdomain.c (mono_domain_unload): Handle the case when the thread
7549         calling Unload is itself being aborted during unloading. Fixes #70022.
7550
7551         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
7552
7553         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
7554         checkpoint_func as an icall so it gets a wrapper.
7555         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
7556         in the cross-appdomain wrappers too.
7557
7558         * threads.c (mono_thread_has_appdomain_ref): Make this public.
7559
7560         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
7561
7562         * reflection.c: Fix some memory leaks.
7563         
7564 2004-12-02  Martin Baulig  <martin@ximian.com>
7565
7566         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
7567
7568         * metadata.c (generic_class_cache): New static hashtable.
7569         (mono_metadata_lookup_generic_class): New public method.
7570
7571 2004-12-02  Martin Baulig  <martin@ximian.com>
7572
7573         * class.c (mono_class_create_from_typedef): Call
7574         mono_class_setup_parent() and mono_class_create_mono_type() before
7575         parsing the interfaces.
7576
7577 2004-12-02  Martin Baulig  <martin@ximian.com>
7578
7579         * metadata.c (generic_inst_cache): New static hashtable.
7580         (mono_metadata_lookup_generic_inst): New public function.
7581         (mono_metadata_inflate_generic_inst): New public function.
7582         (mono_metadata_parse_generic_inst): New public function.
7583         (do_mono_metadata_parse_generic_class): Use the new
7584         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
7585         since this'll also use the cache.
7586
7587         * reflection.c (mono_reflection_bind_generic_method_parameters):
7588         Use mono_metadata_lookup_generic_inst() to use the new cache.
7589
7590         * class.c (inflate_mono_type): Use
7591         mono_metadata_inflate_generic_inst() to inflate a generic
7592         instance; this'll also use the new cache.
7593
7594         * loader.c (method_from_methodspec): Use
7595         mono_metadata_parse_generic_inst() and
7596         mono_metadata_inflate_generic_inst() rather than parsing it
7597         manually, so we can use the new cache.
7598
7599 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
7600
7601         * threads.c (wait_for_tids): Do not incorrectly free threads when 
7602         the wait times out.
7603
7604 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7605
7606         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
7607         iter->args based on whether parameters are passed in registers (i.e.
7608         MONO_ARCH_REGPARMS is defined)
7609
7610 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
7611
7612         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
7613         the exception message. Fixes #70070.
7614         (method_from_methodspec): Fix warnings.
7615
7616 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7617
7618         * process.c: (complete_path) return the path quoted
7619
7620 2004-12-01  Martin Baulig  <martin@ximian.com>
7621
7622         * class-internals.h (MonoGenericInst): New structure.
7623         (MonoGenericClass): Replaced `type_argc', `type_argv' and
7624         `is_open' with `MonoGenericInst *inst'.
7625         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
7626         `is_open' with `MonoGenericInst *inst'.
7627
7628 2004-11-30  Martin Baulig  <martin@ximian.com>
7629
7630         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
7631
7632         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
7633         to `generic_class_cache'.
7634
7635         * metadata.c
7636         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
7637         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
7638         (mono_generic_inst_is_valuetype): Renamed to
7639         mono_generic_class_is_valuetype().
7640
7641         * class-internals.h
7642         (MonoGenericInst): Renamed to MonoGenericClass.
7643         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
7644         (MonoClass): Renamed `generic_inst' to `generic_class'.
7645         (MonoGenericContext): Renamed `ginst' to `gclass'.
7646
7647         * object-internals.h
7648         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
7649
7650         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
7651         mono_reflection_generic_class_initialize().
7652
7653         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
7654         now known as "System.Reflection.MonoGenericClass".
7655         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
7656
7657 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
7658
7659         * class-internals.h: Added a flag field to MonoClass to cache the
7660         declarative security attributes actions associated with the class.
7661         * domain-internals.h: Added booleans to MonoJitInfo to cache the
7662         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
7663         applicable to the JITted method.
7664         * reflection.c|h: Added functions to extract (as flags) which security
7665         actions are available (declaratively) for a method, class or assembly.
7666         * metadata.c|h: Added functions to search the declarative security
7667         table in the metadata.
7668         
7669 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
7670
7671         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
7672         EXPORTEDTYPES are already in the class name cache, so there is no
7673         need to add extra code here to look at them. Just removes a bit of
7674         cruft.
7675
7676         (ves_icall_System_Environment_get_TickCount): No need for #if
7677         WINDOWS. We already have the code in io-layer.
7678
7679 2004-11-28  Martin Baulig  <martin@ximian.com>
7680
7681         * loader.c
7682         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
7683         Fixes gen-112.cs.
7684
7685 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
7686
7687         * assembly.c (do_mono_assembly_open): Instead of having a
7688         conditional WITH_BUNDLE, incorporate support for bundles here, by
7689         having a global `bundles' variable holding a pointer to the actual
7690         bundles. 
7691
7692         (mono_register_bundled_assemblies): New API call used by the
7693         bundle code. 
7694
7695         See mkbundle.1 for details.
7696         
7697 2004-11-27  Martin Baulig  <martin@ximian.com>
7698
7699         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
7700         the vtable for generic methods.
7701
7702 2004-11-26  Martin Baulig  <martin@ximian.com>
7703
7704         * metadata.c
7705         (mono_metadata_generic_method_hash): New public function.
7706         (mono_metadata_generic_method_equal): Likewise.
7707
7708         * class-internals.h
7709         (MonoGenericContainer): Added `GHashTable *method_hash'.
7710
7711         * reflection.c (ReflectionMethodBuilder): Added
7712         `MonoGenericContainer *generic_container'.
7713         (reflection_methodbuilder_to_mono_method): Don't create a new
7714         MonoGenericContainer each time we're called.
7715         (mono_reflection_bind_generic_method_parameters): Use
7716         `container->method_hash' to cache the results so we don't create a
7717         different method if we're called several times with the same
7718         arguments.
7719
7720         * loader.c (method_from_methodspec): Use the new
7721         `container->method_hash' here, too.
7722
7723 2004-11-26  Martin Baulig  <martin@ximian.com>
7724
7725         * class.c (inflate_generic_signature): Correctly compute
7726         `res->has_type_parameters'.
7727         (mono_class_vtable): Use the `has_type_parameters' flag to
7728         determine whether we're a generic method.
7729
7730         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
7731
7732 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
7733
7734         * object.c (mono_runtime_run_main): Fix a small memory leak.
7735
7736 2004-11-25  Martin Baulig  <martin@ximian.com>
7737
7738         * class.c (set_generic_param_owner): Fixed the loop.
7739
7740 2004-11-25  Martin Baulig  <martin@ximian.com>
7741
7742         * object.c (mono_class_vtable): Don't create any JIT wrappers for
7743         generic methods.
7744
7745 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
7746
7747         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
7748         names. Fixes #69787.
7749
7750 2004-11-24  Martin Baulig  <martin@ximian.com>
7751
7752         * class.c (mono_class_create_generic_2): If we don't have a
7753         `ginst->parent', inflate `gklass->parent' to get our parent.
7754
7755 2004-11-24  Martin Baulig  <martin@ximian.com>
7756
7757         * reflection.c (compare_genericparam): Correctly sort the
7758         GenericParam table; fixes #69779.
7759
7760 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
7761
7762         * reflection.c: When writing a PE file, don't create a huge
7763         buffer in memory. Just write the arrays we have to the file.
7764         This reduces memory usage.
7765
7766         * metadata-internals.h: MonoDynamicStream pefile is no longer used
7767         globally.
7768
7769 2004-11-17  Martin Baulig  <martin@ximian.com>
7770
7771         * class.c (mono_class_init): Don't setup `class->parent' for
7772         dynamic instances; moved this to mono_class_generic_2().
7773         (mono_class_create_generic): Also set `klass->inited' for dynamic
7774         generic instances.
7775         (mono_class_create_generic_2): Don't do anything for dynamic
7776         generic instances.  Set `klass->parent' here and also call
7777         mono_class_setup_parent() here. 
7778
7779         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
7780         `MonoType *parent' argument; set `ginst->parent' before calling
7781         mono_class_create_generic_2(), so we set the correct parent.
7782
7783 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
7784
7785         * reflection.c: allow getting attributes from ModuleBuilder
7786         (used by ikvm).
7787
7788 2004-11-17  Martin Baulig  <martin@ximian.com>
7789
7790         * class.c (mono_class_create_from_typedef): If a type parameter is
7791         inherited from an outer class, set its owner to that class.
7792
7793 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
7794
7795         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
7796           for (int*) written size. This fixes bug #69592.
7797
7798 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
7799
7800         * icall.c: Added IsAuthenticodePresnet internal call.
7801         * image.c|h: New function that check a MonoImage for an Authenticode
7802         signature in the certificate PE data directory.
7803         * security.c|h: New internal call to ask the runtime if an 
7804         Authenticode signature seems referenced in the PE header.
7805
7806 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
7807
7808         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
7809
7810         * reflection.c (mono_image_create_pefile): Free the assembly streams
7811         after writing out the assembly file.
7812
7813         * object.c (mono_runtime_run_main): Fix small memory leak.
7814
7815         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
7816         property access modifiers. Fixes #69389.
7817
7818 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
7819
7820         * domain.c, object.c, object-internals.h, domain-internals.h,
7821         object.h, marshal.c: keep dynamic code info per domain.
7822
7823 2004-11-15  Martin Baulig  <martin@ximian.com>
7824
7825         * class.c (mono_type_get_name_recurse): Put type arguments in
7826         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
7827         see bug #68387.
7828
7829 2004-11-15  Martin Baulig  <martin@ximian.com>
7830
7831         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
7832         (mono_class_setup_vtable): When computing `the_cname' for a
7833         generic instance, don't include the namespace since we'd otherwise
7834         add it twice.
7835
7836 2004-11-15  Martin Baulig  <martin@ximian.com>
7837
7838         * class.c (mono_class_create_generic): Changed return type to void.
7839         (mono_class_create_generic_2): New public function; setup
7840         `class->method', `class->field' and `class->interfaces' here
7841         instead of in mono_class_init().
7842
7843         * class.h (mono_class_create_generic): Moved to class-internals.h.
7844
7845 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
7846
7847         * reflection.c (mono_image_create_pefile): take a file HANDLE.
7848         rather than writing to memory, write to this file. Right now,
7849         we are just writting into a buffer, and copying that. However
7850         we can avoid the buffer later.
7851
7852         (mono_dynamic_stream_reset): new function
7853
7854         * icall.c, object-internals.h: update for the above.
7855
7856 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
7857
7858         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
7859         have been using gc'd memory. First it is slower, unlikely
7860         the comment in the source code said, secondly, it increases
7861         our footprint to do it in the gc.
7862
7863         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
7864         the method so that it does not have to copy to managed code.
7865
7866 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
7867
7868         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
7869
7870 2004-11-12  Martin Baulig  <martin@localhost>
7871
7872         * reflection.c (mono_image_create_token): Allow generic method
7873         definitions here, since they may appear in an `.override'; see
7874         gen-98/gen-99 for an example.
7875
7876 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
7877
7878         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
7879         #69365.
7880
7881         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
7882         descriptive.
7883
7884 2004-11-11  Martin Baulig  <martin@ximian.com>
7885
7886         * class.c (mono_class_setup_vtable): In an explicit interface
7887         implementation, the method name now includes the arity.
7888
7889 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
7890
7891         * object.c (mono_array_full_copy): Fix warning.
7892
7893 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
7894
7895         * appdomain.c: Removed look_for_method_by_name(). Use the new method
7896         mono_class_get_method_from_name() instead.
7897         
7898         * class-internals.h: Added two new types of wrappers. 
7899         Added MonoRemotingTarget enum. Added new trampoline function type, which
7900         takes an additional MonoRemotingTarget value as parameter, so it is
7901         possible to request a trampoline for a specific target.
7902         
7903         * class.c: Added new mono_class_get_method_from_name() method.
7904         
7905         * class.h: In MonoRemoteClass, we can have now to vtables, one for
7906         general remoting sinks and one specific for cross domain calls.
7907         
7908         * debug-helpers.c: Added new wrapper names.
7909         
7910         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
7911         of a remote class.
7912         
7913         * image.c: Porperly delete value objects form the remoting invoke hashtable.
7914         
7915         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
7916         with several other methods (mono_marshal_get_xappdomain_dispatch,
7917         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
7918         and others) can generate a fast remoting wrapper for cross domain calls.
7919         More information can be found in docs/remoting.
7920         Other changes: Removed mono_find_method_by_name, and used
7921         mono_class_get_method_from_name instead.
7922         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
7923         is stored in the remoting invoke hashtable.
7924         
7925         * marshal.h: published the new method for getting the xdomain wrapper,
7926         and also added a method for getting the adequate wrapper for a given
7927         method and target.
7928         
7929         * object-internals.h, object.c: Added a couple of methods for capying and
7930         cloning arrays.
7931         Modified mono_install_remoting_trampoline, which takes the new remoting
7932         trampoline that has a remoting target as parameter.
7933         mono_class_proxy_vtable now also takes a remoting target as parameter, and
7934         will return the most suitable vtable for the target.
7935         Added mono_remote_class_vtable, which returns the vtable of a remote class
7936         (which can be the normal remoting vtable or the xdomain vtable).
7937         
7938         * threads.c: the xdomain invoke and dispatch wrappers must also be
7939         protected against interruptions.
7940
7941 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7942
7943         * icall.c: use memmove in BlockCopyInternal when the source and
7944         destination arrays are the same.
7945
7946 2004-11-09  Martin Baulig  <martin@ximian.com>
7947
7948         * class-internals.h (MonoGenericContainer): Removed `method' and
7949         `signature', replaced them with `is_method' and `is_signature'
7950         flags.  Added `context'.
7951
7952         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
7953         instead of a `MonoGenericContainer *'.
7954
7955         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
7956         for dynamic type parameters.
7957         (mono_metadata_load_generic_params): Setup `container->context'.
7958
7959         * reflection.c (mono_reflection_setup_generic_class): Setup
7960         `tb->generic_container->context'.
7961         (do_mono_reflection_bind_generic_parameters): Use
7962         mono_class_inflate_generic_type() to correctly inflate types,
7963         rather than using our own hack just for MONO_TYPE_VAR.
7964
7965 2004-11-09  Martin Baulig  <martin@ximian.com>
7966
7967         * class.c (mono_class_inflate_generic_method): Small fix; don't
7968         crash here.
7969
7970         * icall.c
7971         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
7972         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
7973         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
7974         (ves_icall_Type_BindGenericParameters): Likewise.
7975         (ves_icall_Type_get_IsGenericInstance): Likewise.
7976         (ves_icall_Type_GetGenericParameterPosition): Likewise.
7977         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
7978         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
7979         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
7980
7981 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
7982
7983         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
7984         assembly versions and public key tokens. Fixes #69113.
7985
7986 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
7987
7988         * metadata.c: fix bug introduced with the type cache changes
7989         on 2004-11-06.
7990
7991 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
7992
7993         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
7994         the MonoClass pointer instead of the token in exception clauses.
7995         * reflection.c: updates for the above and make the code not depend
7996         on the structure of MonoExceptionClause.
7997
7998 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
7999
8000         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8001         Add support for dynamic assemblies. Fixes #69114.
8002
8003         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
8004
8005 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
8006
8007         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
8008         since most only those methods use it. the code member of
8009         MonoMethodPInvoke was dead, so that can be removed too. Also,
8010         remove inline_count (again, not used), and move slot so that it
8011         can share bits with some other flags. This saves 8 bytes in the
8012         structure and gives us about 50 kb back for mcs helloworld.cs
8013
8014         * *.[ch]: Do naming changes for the above.
8015
8016         * loader.c (mono_method_get_header): Lazily init the header
8017         on first access.
8018         (mono_get_method_from_token): don't init the header here
8019         (mono_free_method): the header may never be allocated
8020
8021         Overall, this saves 150 kb of unmanaged allocations
8022         for mcs helloworld.cs. That accounts for 10% of the unmanaged
8023         memory at runtime.
8024         
8025         * loader.c, loader.h (mono_method_get_header): new accessor.
8026
8027         * *.[ch]: use the above method. Prepares us to lazily load
8028         the header.
8029
8030         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
8031         three warnings, which are actual bugs (see 69206).
8032
8033         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
8034         unused. Saves a cool 4 bytes / method.
8035
8036 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
8037
8038         * metadata.c (builtin_types): Add types for System.Object here.
8039         (mono_metadata_parse_type_full): Cache MonoType*'s that are
8040         for a class or valuetype from klass->this_arg or klass->byval_arg.
8041
8042         On mcs for a hello world, this gets us down from 21836 MonoType's
8043         to 14560.
8044
8045         (mono_metadata_free_type): Account for the above change.
8046
8047 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
8048
8049         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
8050         exception instead of asserting if name is null.
8051         (ves_icall_System_AppDomain_GetData): Ditto.
8052
8053 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
8054
8055         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
8056         EnumBuilder.
8057
8058         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
8059         Return NULL when the domain does not have entry_assembly set.
8060
8061         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
8062         Add a 'resource_modules' argument.
8063         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
8064
8065         * reflection.c (mono_reflection_create_runtime_class): Move setting
8066         of wastypebuilder here, so mono_get_type_object () returns a MonoType
8067         for enums too.
8068
8069         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
8070         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
8071         Throw an ArgumentNullException if 'ptr' is null.
8072
8073         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
8074         assemblies here. Fixes #69020.
8075
8076 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
8077
8078         * reflection.c (build_compressed_metadata): Fix the previous patch for
8079         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
8080         the stack.
8081
8082 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
8083
8084         * assembly.c (mono_assembly_names_equal): Allow a match if one of
8085         the cultures is false. Fixes #69090.
8086
8087         * reflection.c (build_compressed_metadata): Fix invalid memory read 
8088         detected by valgrind.
8089         
8090         * reflection.c (mono_reflection_get_type): Avoid triggering a 
8091         TypeResolve multiple times for the same type. Fixes #65577.
8092
8093 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
8094
8095         * marshal.c: Avoid using ldftn to call managed functions. It is
8096         much slower than just a call.
8097
8098         * reflection.c (mono_module_get_object): free the basename we
8099         allocate here from glib.
8100         
8101         * reflection.c (ensure_runtime_vtable): make sure to free
8102         overrides.  Also, we were allocating an array of MonoMethod not an
8103         array of MonoMethod*.
8104
8105         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
8106
8107         * image.c (mono_image_close): free image->guid here.
8108
8109 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
8110
8111         * reflection.c: Fix some spec conformance issues with the PE file
8112         structures so mcs compiled apps run on the Net 2.0 beta.
8113
8114 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
8115
8116         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
8117         Implement this. Fixes #67264.
8118
8119         * debug-helpers.h debug-helpers.c marshal.c: Move 
8120         mono_find_method_by_name to debug-helpers.c.
8121
8122 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
8123
8124         * object.c (mono_release_type_locks): type_initialization_hash is
8125         a GHashTable.
8126
8127         * reflection.c object.c object-internals.h: Fix warnings.
8128
8129         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
8130         without accessors. Fixes #61561.
8131
8132         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
8133         application base from the root domain if not set. Fixes #65641.
8134         (mono_runtime_init): Fix warning.
8135
8136 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8137
8138         * appdomain.c: call mono_thread_pool_init.
8139         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
8140         of worker threads based on the number of CPUs and the environment
8141         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
8142         for non-windows (windows) systems.
8143
8144 2004-10-27  Chris Toshok  <toshok@ximian.com>
8145
8146         * mono-debug-debugger.c (write_class): don't call mono_class_init
8147         here, as even with the check for (!klass->init_pending), we get
8148         into a situation where we're hitting cycles in class
8149         initialization.  Fixes #68816.
8150
8151 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
8152
8153         * image.c: Avoid overwriting values in the loaded_images_hash when an
8154         assembly is loaded multiple times. Fixes #61152.
8155
8156         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
8157         so multiple satellite assemblies for the same name can be loaded.
8158         Fixes #68259.
8159
8160         * mono_domain_assembly_preload: Actually return the loaded assembly, 
8161         not NULL.
8162
8163         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
8164         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
8165
8166         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
8167         pending finalizers are not invoked after the appdomain has been 
8168         unloaded. Fixes #67862.
8169
8170 2004-10-22  Martin Baulig  <martin@ximian.com>
8171
8172         * mono-debug-debugger.c
8173         (mono_debugger_runtime_invoke): Don't box valuetypes.
8174
8175 2004-10-22  Chris Toshok  <toshok@ximian.com>
8176
8177         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
8178         don't hide private methods.
8179
8180 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
8181
8182         * icall.c: Allows the runtime to "share" (when known) the public key
8183         token of an assembly. This avoid the need to recalculate the token 
8184         (from the public key) in managed code.
8185
8186 2004-10-21  Chris Toshok  <toshok@ximian.com>
8187
8188         * debug-helpers.c (append_class_name): argh, revert last patch.
8189         
8190 2004-10-21  Chris Toshok  <toshok@ximian.com>
8191
8192         * debug-helpers.c (append_class_name): use '+' as the delimiter,
8193         not '/', so that it matches what the debugger uses to look up
8194         methods.
8195
8196 2004-10-21  Martin Baulig  <martin@ximian.com>
8197
8198         * mono-debug-debugger.c (mono_debugger_throw_exception): New
8199         public method; this is called each time an exception is thrown and
8200         allows the debugger to use exception catch points.
8201
8202 2004-10-21  Martin Baulig  <martin@ximian.com>
8203
8204         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
8205         the stack pointer and the exception object in some struct and pass
8206         that to the debugger.
8207
8208 2004-10-21  Chris Toshok  <toshok@ximian.com>
8209
8210         * mono-debug-debugger.c (do_write_class): add instance/static
8211         event support.  We don't expose "raise" or "other" yet.
8212         (event_is_static): new method.
8213
8214 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
8215
8216         * mono-debug-debugger.c
8217         (mono_debugger_handle_exception): Remove
8218         bogus return value for fussy compilers.
8219
8220 2004-10-20  Martin Baulig  <martin@ximian.com>
8221
8222         * mono-debug-debugger.c
8223         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
8224         (mono_debugger_handled_exception): Likewise.
8225
8226 2004-10-20  Martin Baulig  <martin@ximian.com>
8227
8228         * mono-debug-debugger.h (MonoDebuggerEvent): Added
8229         MONO_DEBUGGER_EVENT_EXCEPTION.
8230
8231         * mono-debug-debugger.c (mono_debugger_handle_exception): New
8232         public function to send the debugger a notification for an
8233         exception and inform it about a catch/finally clause.
8234
8235 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
8236
8237         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
8238         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
8239         fix 2.95 build. 
8240
8241         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
8242
8243 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
8244
8245         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
8246         marshalled as [In,Out]. Fixes #58325.
8247
8248 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
8249
8250         * reflection.c (mono_method_body_get_object): Implement some fields.
8251
8252 2004-10-12  Martin Baulig  <martin@ximian.com>
8253
8254         * reflection.c (mono_reflection_bind_generic_parameters): Small
8255         fix, correctly retrieve our parent from a generic instance.
8256
8257 2004-10-12  Martin Baulig  <martin@ximian.com>
8258
8259         * metadata.c (mono_metadata_generic_param_equal): We always have
8260         an owner.
8261
8262         * class.c
8263         (mono_class_from_generic_parameter): We need to have an owner.
8264         (my_mono_class_from_generic_parameter): Likewise.
8265
8266         * reflection.c (mono_reflection_setup_generic_class): Renamed to
8267         mono_reflection_create_generic_class() and added a new
8268         mono_reflection_setup_generic_class().  
8269         (mono_reflection_initialize_generic_param): If we're a nested
8270         generic type and inherited from the containing class, set our
8271         owner to the outer class.
8272
8273 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
8274
8275         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
8276
8277         * reflection.c (mono_method_body_get_object): New function to create
8278         a MethodBody object.
8279
8280         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
8281
8282 2004-10-11  Martin Baulig  <martin@ximian.com>
8283
8284         * metadata.c (_mono_metadata_type_equal): Renamed to
8285         do_mono_metadata_type_equal() and made static.
8286
8287 2004-10-11  Martin Baulig  <martin@ximian.com>
8288
8289         * appdomain.c: Bump corlib version number to 28.
8290
8291 2004-10-10  Martin Baulig  <martin@ximian.com>
8292
8293         * class-internals.h
8294         (MonoGenericInst): Added `MonoGenericContainer *container'.
8295         (MonoGenericMethod): Likewise.
8296         (MonoGenericContext): Likewise.
8297         (MonoGenericParam): Added `MonoGenericContainer *owner'.
8298
8299         * metadata.c
8300         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
8301         (do_mono_metadata_parse_generic_inst): Likewise.
8302         (mono_metadata_parse_type_full): New public method.  This is the actual
8303         mono_metadata_parse_type() implementation - with an additional
8304         `MonoGenericContainer *' argument.
8305         (mono_metadata_parse_array_full): Likewise.
8306         (mono_metadata_parse_signature_full): Likewise.
8307         (mono_metadata_parse_method_signature_full): Likewise.
8308         (mono_metadata_parse_mh_full): Likewise.
8309         (mono_type_create_from_typespec): Likewise.
8310         (mono_metadata_interfaces_from_typedef_full): New public method;
8311         this is similar to the other _full() methods, but we take a
8312         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
8313         (mono_metadata_parse_generic_param): Take an additional
8314         `MonoGenericContainer *' argument and lookup the MonoGenericParam
8315         from that container.
8316         (mono_metadata_generic_param_equal): New static method to compare
8317         two type parameters.
8318         (_mono_metadata_type_equal): New static method; takes an
8319         additional `gboolean signature_only' argument - if true, we don't
8320         compare the owners of generic parameters.
8321         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
8322         with a TRUE argument - do a signature-only comparision.
8323
8324         * loader.c: Use the new _full() methods and pass the
8325         MonoGenericContainer to them.
8326
8327         * object-internals.h (MonoReflectionTypeBuilder): Added
8328         `MonoGenericContainer *generic_container' field.
8329         (MonoReflectionMethodBuilder): Likewise.
8330
8331 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
8332
8333         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
8334         case initial images of dynamic assemblies.
8335
8336         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
8337
8338         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
8339
8340         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
8341         length of event->other array.
8342         (typebuilder_setup_events): Ditto.
8343
8344         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
8345         'assembly_by_name' and add an 'assemblies' list.
8346
8347         * assembly.h assembly.c: Add a new search hook for determining whenever
8348         an assembly is already loaded. Use this instead of searching in the
8349         loaded_assemblies list.
8350
8351         * domain.c appdomain.c: Implement the new search hook so loaded 
8352         assemblies are now scoped by appdomain. Fixes #67727.
8353
8354 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
8355
8356         * threads.c (mono_thread_attach): Initialize synch_lock field so
8357         mono_thread_detach works again.
8358
8359         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
8360         'lib' too. Fixes #63130.
8361
8362 2004-10-06  Jackson Harper  <jackson@ximian.com>
8363
8364         * culture-info-tables.h: regenerated.
8365
8366 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
8367
8368         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
8369         implemented by other interfaces in the result. Fixes #65764.
8370         
8371         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8372         Handle unloadable modules without crashing.
8373
8374         * image.c (load_modules): Revert the previous patch since modules must
8375         have a fixed index inside the array.
8376         
8377         * image.c (load_modules): Don't include native modules in the modules
8378         array.
8379
8380 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
8381
8382         * reflection.h: Add param_defaults field.
8383
8384         * reflection.c: Add support for parameter defaults in dynamic methods.
8385         Fixes #64595.
8386
8387         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
8388         an empty string when a type has no namespace. Fixes #64230.
8389
8390 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
8391
8392         * tabledefs.h: Added "internal" security actions to support non-CAS
8393         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
8394         Note: they do not seems to be used anymore in 2.0 (new metadata format)
8395
8396 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
8397
8398         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
8399         constructor of abstract class. Fixes #61689.
8400
8401 2004-10-04  Martin Baulig  <martin@ximian.com>
8402
8403         * class-internals.h (MonoGenericContainer): New type.
8404         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
8405         `MonoGenericContainer *generic_container'.
8406         (MonoClass): Replaced `gen_params' and `num_gen_params' with
8407         `MonoGenericContainer *generic_container'.
8408
8409         * metadata.c (mono_metadata_load_generic_params): Return a
8410         `MonoGenericContainer *' instead of a `MonoGenericParam *';
8411         removed the `num' argument.
8412
8413 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
8414
8415         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
8416         for dynamic images.
8417
8418         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
8419         machine fields.
8420
8421         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
8422
8423         * reflection.c: Save pe_kind and machine values into the generated
8424         image file.
8425
8426         * appdomain.c: Bump corlib version number.
8427
8428         * object-internals.h: Reorganize layout of LocalBuilder.
8429
8430         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
8431         New helper function.
8432
8433         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
8434         created MonoType for dynamic types. Fixes #66180.
8435
8436 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
8437
8438         * threadpool.c: the ares hashtable needs a critical section around it.
8439         this prevents some nasty segfaults
8440
8441 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
8442
8443         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
8444         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
8445         bug 67324).
8446         
8447 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
8448
8449         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
8450         
8451 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
8452
8453         * image.c: Always canonicalize image file names, to avoid loading
8454         the same assembly twice when referenced using a relative path.
8455
8456 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
8457
8458         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
8459
8460         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
8461
8462         * marshal.c: Fix warnings.
8463
8464 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
8465
8466         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
8467         attempting to marshal the delegate_trampoline as the method_addr.
8468         This patch has a static hashtable of marshalled delegates so that 
8469         we can map delegate_trampoline addresses back to delegates.  This
8470         allows a delegate passed to managed code to be passed back into native
8471         code.  Fixes #67039
8472
8473 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
8474
8475         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
8476
8477         * reflection.c (method_encode_code): Align method headers properly.
8478         Fixes #66025.
8479
8480 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
8481
8482         * marshal.c: In the runtime invoke wrapper, reset the abort
8483         exception if it is cached. This avoids the automatic rethrowal of 
8484         the exception after the catch of the wrapper. Also check for pending
8485         interruptions before calling the managed method. This is done using
8486         the new method emit_thread_force_interrupt_checkpoint, since the
8487         normal checkpoint method is ignored when running the invoke wrapper.
8488         * object.c: If the abort exception is rethrown, set the abort_exc
8489         field of the thread, so it will be rethrown aftere every catch.
8490         * threadpool.c: Only run an interruption checkpoint if what has been
8491         requested is a stop of the thread (aborts will be ignored).
8492         * threads.c: By default, a thread will now never be interrumped while
8493         running the runtime invoke wrapper (this ensures that runtime_invoke
8494         will always return to the caller if an exception pointer is provided).
8495         There is a new special method mono_thread_force_interruption_checkpoint()
8496         to force an interruption checkpoint even if running a protected
8497         wrapper, which is used by the same runtime invoke wrapper to do a check
8498         at a safe point.
8499
8500 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
8501
8502         * object.c, object-internals.h: Implemented mono_release_type_locks,
8503         which releases the cctor locks held by a thread.
8504         * threads.c, threads.h: In thread_cleanup, release cctor locks held
8505         by a thread. Added mono_thread_exit() method to be used to safely stop
8506         a thread.
8507
8508 2004-09-28  Raja R Harinath  <rharinath@novell.com>
8509
8510         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8511         Move null check before dereference.  Avoid indexing beyond the end
8512         of the 'modules' array.
8513
8514 2004-09-28  Raja R Harinath  <rharinath@novell.com>
8515
8516         * metadata-internals.h (MonoImage): Add module_count field.
8517         * image.c (load_modules): Set image->module_count.
8518         (mono_image_load_file_for_image): Use image->module_count.
8519         * reflection.c (mono_image_load_module): Append to image->modules array 
8520         of dynamic assembly.
8521         (mono_module_get_object): Fix loop to actually increment index.
8522         Use image->module_count.
8523         * assembly.c (mono_assembly_load_references): Use image->module_count.
8524         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
8525         Likewise.
8526
8527 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
8528
8529         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
8530         Avoid assert on generic types.
8531
8532 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
8533
8534         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
8535
8536         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
8537
8538         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
8539         function to convert a MarshalSpec structure to its managed counterpart.
8540
8541         * reflection.c: Fix warnings.
8542         
8543         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
8544         field.
8545
8546         * icall.c (mono_create_icall_signature): Fix build.
8547
8548 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
8549
8550         * icall.c: Add MakePointType icall.
8551
8552         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
8553         warnings.
8554
8555 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8556
8557         * threadpool.c: reuse allocated slots in the queue.
8558
8559 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
8560
8561         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
8562
8563         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
8564
8565         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
8566         previous change.
8567
8568         * tabledefs.h: Add constants for pinvoke attributes BestFit and
8569         ThrowOnUnmappableChar.
8570
8571         * icall.c (ves_icall_Type_GetPacking): New icall.
8572
8573 2004-09-24  Martin Baulig  <martin@ximian.com>
8574
8575         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
8576
8577 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8578
8579         * appdomain.c:
8580         (mono_domain_set): allow setting a domain that is being unloaded.
8581         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
8582         being unloaded.
8583
8584 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
8585
8586         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
8587         the GetCustomAttributes icall.
8588
8589 2004-09-23  Martin Baulig  <martin@ximian.com>
8590
8591         * object-internals.h (MonoReflectionGenericParam): Replaced
8592         'has_ctor_constraint', `has_reference_type' and `has_value_type'
8593         with `guint32 attrs'.
8594
8595 2004-09-23  Martin Baulig  <martin@ximian.com>
8596
8597         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
8598
8599 2004-09-23  Martin Baulig  <martin@ximian.com>
8600
8601         * object-internals.h (GenericParameterAttributes): New enum.
8602
8603 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
8604
8605         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
8606         
8607         * class.c (init_events): Fill out event->other field.
8608
8609         * class.c: Fix warnings.
8610
8611         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
8612
8613 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
8614
8615         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
8616         walk which doesn't supply the IL offset.
8617
8618 2004-09-22  Martin Baulig  <martin@ximian.com>
8619
8620         * reflection.c (mono_reflection_setup_internal_class): If we're
8621         System.ValueType, System.Object or System.Enum, set
8622         `klass->instance_size' and create the vtable.
8623         (mono_reflection_create_internal_class): If we're an enum type,
8624         get the base class from our current corlib.
8625
8626 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
8627
8628         * reflection.h (MonoResolveTokenError): New type.
8629
8630         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
8631         icall.
8632
8633         * icall.c: Add an 'error' argument to the ResolveToken icalls.
8634
8635 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
8636
8637         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
8638         Support also calling constructors, but only for already allocated objects.
8639
8640 2004-09-17  Geoff Norton <gnorton@customerdna.com>
8641
8642         * reflection.c (type_get_qualified_name): If the klass is null
8643         return the typename to avoid a NullRefEx.
8644         (encode_cattr_value): Get the qualified name of the boxed type,
8645         not the underlying enumtype.  Fixes #62984.
8646
8647 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
8648
8649         * marshal.c: Fix problems with previous checkin.
8650
8651 2004-09-21    <vargaz@freemail.hu>
8652
8653         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
8654         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
8655
8656         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
8657
8658 2004-09-21  Geoff Norton <gnorton@customerdna.com>
8659
8660         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
8661         should only return a type for pointers, arrays, and passbyref types.
8662         Fixes bug #63841.
8663
8664 2004-09-21  Martin Baulig  <martin@ximian.com>
8665
8666         * domain.c (mono_debugger_check_runtime_version): New public
8667         function.
8668
8669         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
8670
8671 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
8672
8673         * reflection.c: Added missing sort to the declarative security 
8674         attributes table. MS implementation stops seeing the attributes if the
8675         token number regress in the table (as shown by ildasm and permview).
8676
8677 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
8678
8679         * object-internals.h (MonoReflectionModule): Add 'token' field.
8680         
8681         * reflection.c (mono_reflection_get_token): Add support for Module
8682         and Assembly.
8683         (mono_module_get_object): Set 'token' field.
8684         (mono_module_file_get_object): Set 'token' field.
8685
8686         * icall.c: Add new Assembly and Module icalls.
8687
8688         * appdomain.c: Bump corlib version.
8689
8690 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
8691
8692         * loader.h loader.c class.h class.c: Add helper functions for obtaining
8693         tokens of metadata objects.
8694
8695         * reflection.h reflection.c (mono_reflection_get_token): New function
8696         to obtain the token of a metadata object.
8697
8698         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
8699
8700 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
8701
8702         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
8703         
8704         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
8705
8706 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
8707
8708         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
8709         * object-internals.h: Added 3 MonoArray* members to MonoReflection
8710         AssemblyBuilder to access the permissions set in the class lib.
8711         * reflection.c: Added security attributes encoding step in 
8712         mono_image_build_metadata.
8713         * tabledefs.h: Added new security actions defined in 2.0:
8714         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
8715
8716 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
8717
8718         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
8719         macro parameter.
8720
8721 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
8722  
8723         * locales.c: nullify the ICU_collator member of CompareInfo when it is
8724           finalized. There where random SIGSEVs at program termination, when
8725           an object being finalized was trying to do a string comparison and
8726           the current culture was already finalized.
8727  
8728 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8729
8730         * threads.c: call thread_cleanup before finishing the thread if we get
8731         there.
8732
8733 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
8734
8735         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
8736         assemblies from the parent. Fixes #65665.
8737
8738 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
8739
8740         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
8741         modifiers.
8742
8743 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
8744
8745         * reflection.h: add prototype for mono_get_dbnull_object
8746         * reflection.c: add prototypes for get_default_param_value_blobs 
8747         and mono_get_object_from_blob for fussier compilers
8748
8749 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
8750  
8751         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
8752         false deadlock checks in class initialization.
8753  
8754 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
8755
8756         * image.c (mono_image_addref): Fix comment.
8757
8758         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
8759         possible.
8760
8761 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
8762
8763         * reflection.c (mono_param_get_objects): Modified to return
8764         ParameterInfo.DefaultValue object.
8765
8766         (get_default_param_value_blobs):
8767         (mono_get_object_from_blob):
8768         (mono_get_dbnull_object): New helper routines. 
8769
8770         * object.c (mono_get_constant_value_from_blob): New helper routine
8771         carved out from get_default_field_value ()
8772
8773         * object-internals.h (mono_get_constant_value_from_blob): Added
8774         function declaration.
8775
8776 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
8777
8778         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
8779         referenced assemblies. Fixes #62135.
8780
8781         * exception.h exception.c (mono_get_exception_file_not_found2): New
8782         helper function.
8783
8784 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
8785
8786         * class.h class.c: Add mono_type_get_underlying_type ().
8787
8788 2004-09-09  Geoff Norton <gnorton@customerndna.com>
8789
8790         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
8791         Fix GetTypes() to support dynamically created assemblies.
8792
8793 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
8794
8795         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
8796         
8797         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
8798         previous patch.
8799
8800         * reflection.h reflection.c loader.c: Allow dynamic construction of
8801         pinvoke methods. Fixes #65571.
8802         
8803         * reflection.c (mono_reflection_get_type): Revert previous change since
8804         it causes regressions.
8805
8806 2004-09-08  Martin Baulig  <martin@ximian.com>
8807
8808         * class.c (class_compute_field_layout): Don't call
8809         mono_class_layout_fields() for open generic instances.
8810
8811 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
8812         * threads.c appdomain.c: fix typo in GC macro
8813
8814 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8815
8816         * threads.c: don't call mono_thread_detach() in start_wrapper(),
8817         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
8818
8819 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
8820
8821         * image.c (mono_image_close): Applied patch from 
8822         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
8823         assembly is loaded multiple times from data.
8824         
8825         * image.c (mono_image_open): Fix warning.
8826
8827 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
8828
8829         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
8830         once. Fixes #58334.
8831         
8832         * reflection.c (mono_reflection_create_runtime_class): Initialize
8833         klass->nested_classes. Fixes #61224.
8834
8835 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
8836
8837         * threads.c: sched_yield() on exit, to allow threads to quit.
8838
8839 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
8840
8841         * object.c (mono_unhandled_exception): Remove leftover debug code.
8842
8843 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
8844
8845         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
8846
8847 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
8848
8849         * marshal.c (emit_marshal_array): Really null terminate string arrays.
8850         
8851         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
8852
8853 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
8854
8855         * marshal.c (emit_marshal_array): Null terminate string arrays.
8856         
8857         * marshal.c (raise_auto_layout_exception): Fix warning.
8858
8859         * reflection.c (mono_param_get_objects): Initialize the default value
8860         with DBNull.Value, not null. Fixes #62123.
8861
8862 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
8863
8864         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
8865         throw an exception with a cute explanation.
8866
8867 2004-09-06  Dick Porter  <dick@ximian.com>
8868
8869         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
8870         Close the new process's thread handle, as we don't use it.  The
8871         handle stays around forever otherwise.
8872
8873 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
8874
8875         * object.c (arith_overflow): Fix warning.
8876
8877         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
8878         calling conventions in method refs. Fixes #65352.
8879
8880         * reflection.c: Fix warnings.
8881
8882 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
8883
8884         * icall.c: Add a new icall for Array.Clear
8885
8886 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
8887
8888         * object.c: When allocating an array, we have to throw
8889         an overflow exception if any of the lengths are < 0.
8890
8891 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
8892
8893         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
8894         properly. Also move implementation of string array marshalling to 
8895         managed code. Fixes #42316.
8896
8897 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8898
8899         * assembly.c: provide more information when loading an assembly fails.
8900
8901 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8902
8903         * filewatcher.c: don't expect the development fam package to be
8904         installed.
8905
8906 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
8907
8908         * marshal.c: Make a copy of the signature cookie since it will be
8909         freed by the caller.
8910         
8911         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
8912
8913         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
8914
8915         * metadata.c (mono_metadata_free_marshal_spec): New function to free
8916         marshal specs.
8917
8918         * marshal.c: More refactoring.
8919         
8920         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
8921         smaller functions.
8922
8923 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
8924
8925         * object.c: In mono_message_invoke, fill the output parameter array after
8926           calling the managed method (it was done before the call). This fixes
8927           bug #59299.
8928
8929 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
8930
8931         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
8932         as well.
8933
8934 2004-09-02  Martin Baulig  <martin@ximian.com>
8935
8936         * class.c (mono_class_instance_size): Don't allow generic type
8937         definitions or open generic instances.
8938         (mono_class_array_element_size): If we're a value type, call
8939         mono_class_instance_size() on the original class.
8940
8941         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
8942         handle generic instances.
8943
8944         * mono-debug-debugger.c (write_type): Handle generic instances
8945         like classes.
8946
8947 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
8948
8949         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
8950         the allocation request fails. Fixes #65089.
8951
8952         * object.c (mono_runtime_free_method): Do not call mono_free_method.
8953         
8954         * object.c (mono_runtime_free_method): New function to free a dynamic
8955         method.
8956
8957         * marshal.c (mono_delegate_free_ftnptr): New function to free the
8958         delegate trampoline.
8959
8960         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
8961         with hasthis as dynamic,
8962
8963         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
8964
8965         * domain.c (mono_jit_info_table_remove): New function to remove an
8966         entry from the jit info table.
8967
8968         * class-internals.h (MonoMethod): Add 'dynamic' field.
8969
8970         * loader.c: Fix warnings.
8971
8972 2004-09-01  Martin Baulig  <martin@ximian.com>
8973
8974         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
8975         instead of mono_debugger_lock() because the latter one is a no-op
8976         unless running in the debugger.
8977
8978 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
8979
8980         * class.c (class_compute_field_layout): Classes with auto-layout or
8981         reference fields are not blittable.
8982         
8983 2004-09-01  Dick Porter  <dick@ximian.com>
8984
8985         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
8986         mono_image_get_filename() to get the assembly location.
8987
8988         * icall.c:
8989         * metadata.h: Fix compile warnings
8990
8991 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
8992
8993         * class.c (class_compute_field_layout): System.Object is blittable.
8994
8995         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
8996         as in/out. Fixes #59909.
8997
8998 2004-09-01  Martin Baulig  <martin@ximian.com>
8999
9000         * metadata.h (MONO_TYPE_ISREFERENCE): Call
9001         mono_metadata_generic_inst_is_valuetype() if we're a generic
9002         instance to check whether our underlying type is a reference type.
9003
9004 2004-09-01  Martin Baulig  <martin@ximian.com>
9005
9006         * metadata.c (mono_type_size): If we're a generic instance, call
9007         mono_class_value_size() for value types.
9008
9009 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
9010
9011         * marshal.c: Implement more custom marshalling functionality. Fixes
9012         #64915.
9013
9014 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9015
9016         * mono-debug.c, debug-mono-symfile.c: add some locking love.
9017
9018 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
9019
9020         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
9021
9022         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
9023
9024         * icall.c: Fix some warnings.
9025
9026         * threads.c (abort_appdomain_thread): Fix unref errors.
9027         (mono_thread_current): Fix THREAD_DEBUG define.
9028
9029 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
9030
9031         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
9032
9033         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
9034
9035 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
9036
9037         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
9038         string arrays.
9039
9040 2004-08-28  Martin Baulig  <martin@ximian.com>
9041
9042         * metadata.c
9043         (mono_metadata_generic_inst_is_valuetype): New public function.
9044
9045         * metadata.h (MONO_TYPE_ISSTRUCT): Call
9046         mono_metadata_generic_inst_is_valuetype() if we're a generic
9047         instance to check whether our underlying type is a valuetype.
9048
9049 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
9050
9051         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
9052         #63768.
9053
9054 2004-08-25  Martin Baulig  <martin@ximian.com>
9055
9056         * loader.c (mono_get_method_from_token): Abstract methods can also
9057         be generic and thus have type parameters.
9058
9059         * metadata-internals.h
9060         (MonoDynamicImage): Added `GPtrArray *gen_params'.
9061
9062         * reflection.c (mono_image_get_generic_param_info): Don't create a
9063         metadata row, just add an entry to the `gen_params' array.
9064         (build_compressed_metadata): Sort the `gen_params' array and then
9065         actually create the metadata.
9066
9067 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9068
9069         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
9070
9071 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
9072
9073         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
9074
9075 2004-08-24  Martin Baulig  <martin@ximian.com>
9076
9077         * class.cs (mono_class_is_subclass_of): Like an interface, a
9078         generic instance also derives from System.Object.
9079
9080 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
9081
9082         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
9083         custom modifiers to be in any order. Fixes #61990.
9084
9085 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
9086
9087         * object.c: Register mono_object_new_fast icall.
9088         
9089         * object.c (mono_class_get_allocation_ftn): Return to calling
9090         mono_object_new_fast, since it seems faster to compute the object 
9091         size in unmanaged code than passing it as a parameter.
9092
9093         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
9094
9095         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
9096         this function with Boehm as the oom handler, so we don't have to check
9097         the result of GC_malloc.
9098
9099         * object.c: Remove checks for oom.
9100
9101         * object.h object.c (mono_class_get_allocation_ftn): New function to
9102         return the icall which can be used to allocate an instance of a given
9103         class. 
9104
9105         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
9106
9107         * class-internals.h: Add 'enabled' field.
9108
9109 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
9110
9111         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
9112
9113 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
9114         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
9115         value 0x0010.
9116
9117 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
9118
9119         * appdomain.c: use the Tls function for appdomain too,
9120         at Zoltan's request. Actually return in mono_context_get
9121
9122         * appdomain.c, profiler.c, threads.c: use __thread
9123
9124 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
9125
9126         * appdomain.c threads.c: Call GC_CreateThread on windows.
9127
9128         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
9129         multiple libraries since this don't work on windows.
9130
9131 2004-08-18  Martin Baulig  <martin@ximian.com>
9132
9133         * class-internals.h
9134         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
9135         MonoMethodHeader.
9136
9137         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
9138         MonoMethodNormal since we also need it for abstract and interface
9139         methods.
9140
9141         * reflection.c
9142         (build_compressed_metadata): Sort the GenericParam table.
9143         (mono_image_create_token): Added `gboolean create_methodspec'
9144         argument; this is false when generating a MethodImpl token.
9145         (reflection_methodbuilder_to_mono_method): Abstract and interface
9146         methods may also have generic parameters.
9147
9148 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
9149
9150         * appdomain.c: thread local alloc
9151
9152 2004-08-17  Martin Baulig  <martin@ximian.com>
9153
9154         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
9155
9156         * icall.c
9157         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
9158         argument.
9159
9160         * class.c (mono_type_get_full_name): New public function.
9161         (mono_type_get_name): Don't include the type arguments.
9162
9163 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
9164
9165         * Makefile.am: Build static versions of libmetadata and libmonoruntime
9166         for inclusion into the mono executable.
9167
9168 2004-08-16  Martin Baulig  <martin@ximian.com>
9169
9170         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
9171         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
9172
9173 2004-08-14  Martin Baulig  <martin@ximian.com>
9174
9175         * class.c (dup_type): Also copy the `byref' field.
9176
9177 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
9178
9179         * reflection.c (create_dynamic_mono_image): Revert the last change 
9180         since it breaks bootstrap.
9181
9182 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
9183
9184         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
9185
9186         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
9187         not free them with g_free.
9188
9189 2004-08-11  Martin Baulig  <martin@ximian.com>
9190
9191         * reflection.c (mono_reflection_setup_internal_class): Also call
9192         mono_class_setup_mono_type() if we already have a `tb->type.type'.
9193
9194 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
9195
9196         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
9197         called during default (first) AppDomain creation. Keep track of
9198         Evidence when loading assemblies.
9199
9200 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
9201
9202         * opcodes.c, opcodes.h: reduce runtime relocations.
9203
9204 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
9205
9206         * culture-info.h, locales.c: fixes and chages to sue the new
9207         optimized format of the locale data.
9208         * culture-info-tables.h: regenerated.
9209
9210 2004-08-06  Geoff Norton <gnorton@customerdna.com>
9211         
9212         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
9213
9214 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
9215
9216         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
9217         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
9218         * domain-internals.h: icall declaration.
9219         * icall.c: icall registration.
9220         * object-internals.h: New fields in MonoAssembly for CAS.
9221
9222 2004-08-05  Duncan Mak  <duncan@ximian.com>
9223
9224         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
9225         CEE_LDELEM_ANY.
9226
9227 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
9228
9229         * reflection.c: fix to deal with object[] arrays in custom ctors
9230         (bug #62550).
9231
9232 2004-08-05  Martin Baulig  <martin@ximian.com>
9233
9234         * class.c (mono_class_array_element_size): Added support for
9235         generic instances and correctly handle "recursive" types.
9236
9237 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
9238
9239         * assembly.c: Fix warnings.
9240
9241 2004-08-04  Martin Baulig  <martin@ximian.com>
9242
9243         * class.c
9244         (mono_type_get_name_recurse): Added `gboolean include_arity'
9245         argument specifying whether or not we should include the generic
9246         arity in the type name.
9247         (_mono_type_get_name): New static function.
9248         (mono_class_setup_vtable): If we're a generic instance, don't
9249         include the generic arity in the names of explicit method
9250         implementations.        
9251
9252 2004-08-03  Martin Baulig  <martin@ximian.com>
9253
9254         * class.c (mono_type_get_name_recurse): Enclose the generic type
9255         arguments in `<', '>'.
9256
9257 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9258
9259         * gc.c: make GC warning messages use the trace API, they are just
9260         noise to most of the users.
9261
9262 2004-08-03  Martin Baulig  <martin@ximian.com>
9263
9264         * debug-mono-symfile.c (read_string): Correctly read the string.
9265
9266 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
9267
9268         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
9269         
9270         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
9271         icalls.
9272         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
9273
9274 2004-07-30  Martin Baulig  <martin@ximian.com>
9275
9276         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
9277         Reflect latest symbol writer changes.   
9278
9279 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
9280
9281         * object.c: always create an object if null is passed
9282         to Invoke() where a valuetype is expected.
9283
9284 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
9285
9286         * marshal.c (mono_marshal_init): make managed
9287         signatures match native ones better for 64bits.
9288
9289 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9290
9291         * appdomain.c: hack to build correctly the private bin path on windows.
9292         Fixes bug #61991.
9293
9294 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
9295
9296         * assembly.c: Load mscorlib from the correct framework directory
9297           (mono/<version>/mscorlib.dll).
9298         * appdomain.h: Added prototypes for new functions.
9299         * internals.h: Added some prototypes.
9300         * domain.c: When initializing the runtime, get from the executable and
9301           the configuration files the runtime version that the app supports.
9302           Added support methods for reading app.exe.config. Added list of versions
9303           supported by the JIT. Added two new methods: mono_init_from_assembly,
9304           which initializes the runtime and determines the required version from
9305           the provided exe file, and mono_init_version, which initializes
9306           the runtime using the provided version.
9307         * icall.c: Get machine.config from version-specific directory.
9308         * reflection.c: When generating an image, embed the version number
9309           of the current runtime.
9310
9311 2004-07-28  Dick Porter  <dick@ximian.com>
9312
9313         * socket-io.c
9314         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
9315         returned sockaddr size before creating the remote address object.
9316         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
9317         61608.
9318
9319 2004-07-28  Dick Porter  <dick@ximian.com>
9320
9321         * locales.c (string_invariant_compare_char): Fix invariant char
9322         compares between upper and lower cases.  Fixes bug 61458.
9323
9324 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
9325         
9326         * marshal.c: actually cache stelem.ref wrappers.
9327         
9328 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
9329
9330         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
9331         sections and remove the mono_cli_rva_map () function.
9332
9333 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
9334
9335         * debug-mono-symfile.c: fix one more endianess issue, from a patch
9336         by Geoff Norton (<gnorton@customerdna.com>).
9337
9338 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9339
9340         * class.c: fix class loads for pointer types (typeof(int) !=
9341         typeof(int*)).
9342
9343 2004-07-27  Martin Baulig  <martin@ximian.com>
9344
9345         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
9346         reading the debugging information from an external ".mdb" file.
9347
9348 2004-07-24  Martin Baulig  <martin@ximian.com>
9349
9350         * reflection.c (mono_image_get_type_info): Only write a class
9351         layout entry if we actually have a size or a packing size.
9352
9353 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
9354
9355         * reflection.c (type_get_fully_qualified_name): 
9356         insert cast to get type checking of ?: with non-gcc compilers
9357
9358 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
9359
9360         * rand.c: use g_getenv for both lookups of
9361         MONO_EGD_SOCKET
9362
9363 2004-07-17  Martin Baulig  <martin@ximian.com>
9364
9365         * reflection.c (mono_reflection_bind_generic_method_parameters):
9366         Set `gmethod->reflection_info'.
9367
9368 2004-07-17  Martin Baulig  <martin@ximian.com>
9369
9370         * class.c (mono_class_create_from_typedef): Insert the newly
9371         created class into the hash table before computing the interfaces
9372         since we could be called recursively.
9373
9374 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
9375
9376         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
9377         function to implement stelem.ref in managed code
9378         * class-internals.h, debug-helpers.c: a new wrapper type
9379         for the above.
9380
9381 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
9382
9383         * gc.c: allow GC handles to work even when no GC is compiled in.
9384         Fix part of bug #61134 (GetAddrOfPinnedObject).
9385
9386 2004-07-13  Peter Williams  <peter@newton.cx>
9387  
9388         * process.c (complete_path): Make sure we don't attempt to execute
9389         directories.
9390  
9391 2004-07-12  Geoff Norton <gnorton@customerdna.com>
9392
9393         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
9394           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
9395           and will add/subtract the hour if needed
9396
9397 2004-07-12  Martin Baulig  <martin@ximian.com>
9398
9399         * reflection.c (mono_field_get_object): If we have
9400         `field->generic_info', take the attributes from
9401         `field->generic_info->generic_type'.    
9402
9403 2004-07-12  Martin Baulig  <martin@ximian.com>
9404
9405         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
9406         This function must be called before initializing the runtime.
9407         (mono_debug_init_1): New function; call this after initializing
9408         the runtime, but before loading the assembly.  It tells the
9409         debugger to load corlib and the builtin types.
9410
9411         * mono-debug-debugger.c: Did some larger changes in the debugging
9412         code; support recursive class declarations, make sure we actually
9413         add all classes.
9414
9415 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9416
9417         * debug-helpers.c: undo my previous patch and fixed the real issue in
9418         ../mini/exceptions-x86.c
9419
9420 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9421
9422         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
9423         when no HOME env. variable was set and a NullRef was thrown in a .cctor
9424         called from other .cctors.
9425
9426 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
9427
9428         * loader.c: Removed the mono_loader_wine_init hack now that we are
9429         doing a managed version of Windows.Forms.
9430
9431 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
9432
9433         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
9434         threadpool.c, threads.c: remove static data from rootset.
9435
9436 2004-07-09  Dick Porter  <dick@ximian.com>
9437
9438         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
9439         Don't do any more processing if the matched length was 0.  It was
9440         increasing the size of the string before.  Fixes bug 61167.
9441
9442 2004-07-09  Dick Porter  <dick@ximian.com>
9443
9444         * socket-io.h:
9445         * socket-io.c
9446         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
9447         Add support for SO_PEERCRED if its available.
9448
9449 2004-07-09  Peter Bartok <pbartok@novell.com>
9450         * loader.c: winelib.exe.so error message is now only displayed if
9451         MONO_DEBUG is set. To help us avoid questions when people are trying
9452         out the new Managed.Windows.Forms.
9453
9454 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
9455
9456         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
9457         for isinst and castclass wrappers.
9458
9459         * class-internals.h icall.c: Move registration and lookup of JIT icalls
9460         to libmetadata from the JIT, so they could be used by the marshalling
9461         code and the interpreter.
9462
9463         * marshal.c: Register marshalling related JIT icalls here instead of
9464         in mini.c. Use CEE_MONO_ICALL instead of the family of 
9465         CEE_MONO_PROC<x> opcodes to call marshalling functions.
9466
9467         * metadata.h: Remove unneeded marshalling conversions.
9468
9469         * opcodes.c: Update for new opcodes.
9470         
9471 2004-07-08  Martin Baulig  <martin@ximian.com>
9472
9473         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
9474         (mono_debug_get_domain_data): Make this function static.
9475
9476 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
9477
9478         * gc.c, object.h: add nice GC handle API for embedders.
9479
9480 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
9481
9482         * reflection.c: more changes for the new api
9483
9484         * object.c: When we reflect on a field w/ a constant value, it
9485         will not have a memory location, so we must access metadata. Also,
9486         allow easier reading of strings so that we can read them from
9487         the constant data.
9488
9489         * class.c (mono_class_layout_fields): no need for literal fields here.
9490
9491         * class-internals.h: api changes for const fields
9492
9493         * icall.c (ves_icall_get_enum_info): use new apis for const fields
9494
9495 2004-07-06  Martin Baulig  <martin@ximian.com>
9496
9497         * mono-debug.h: Increment version number to 44.
9498
9499         * mono-debug.c (mono_debug_add_wrapper): The second argument is
9500         now a gpointer, rewrote this whole method.
9501
9502         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
9503         function.  Add information about the wrapper in a new "misc table".
9504
9505         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
9506         for the new misc table.
9507
9508 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
9509
9510         * metadata-internals.h image.c: Add a cache for helper signatures.
9511
9512         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
9513
9514 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
9515
9516         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
9517         delegates from a delegate. Fixes #61033.
9518         
9519         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
9520         marshalling of stringbuilder arrays. Fixes #59900.
9521
9522 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
9523
9524         * icall.c: Add EnumBuilder:setup_enum_type icall.
9525
9526 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
9527
9528         * icall.c: Added a new icall for the property version of
9529         OffsetOfStringData.
9530
9531 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
9532
9533         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
9534         it has a constant size across platforms.
9535
9536         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
9537         stack trace.
9538
9539 2004-06-29  Martin Baulig  <martin@ximian.com>
9540
9541         * mono-debug.c (mono_debug_add_method): Protect the whole function
9542         in mono_debugger_lock(), not just parts of it.
9543
9544 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
9545
9546         * reflection.c: make sure padding bytes in heaps are zeroed.
9547
9548 2004-06-24  David Waite  <mass@akuma.org>
9549
9550         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
9551         image.c, loader.c, locales.c, marshal.c, metadata.c,
9552         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
9553         string-icalls.c, threads.c: change to C90-style comments from C99 /
9554         C++ -style
9555
9556 2004-06-24  Dick Porter  <dick@ximian.com>
9557
9558         * threads.c
9559         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
9560         return createdNew.  Fixes bug 60412.
9561
9562         * threads-types.h: 
9563         * icall.c: Add createdNew parameter to CreateMutex icall
9564
9565 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9566
9567         * reflection.c, object-internals.h: save default value in params.
9568
9569 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9570
9571         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
9572         no need to build a new path combining that with the application base.
9573         Fixes bug #60442.
9574
9575 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
9576
9577         * reflection.c: fixed minor standard compliance issues.
9578
9579 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
9580
9581         * reflection.c: fixed issue with encoding some custom attributes
9582         (arrays in properties and fields, bug #60411).
9583
9584 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9585
9586         * reflection.c: fix start address when copying the public key token.
9587
9588 2004-06-23  Martin Baulig  <martin@ximian.com>
9589
9590         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
9591         the `exc' object in a static object to put it into the GC's root set.
9592
9593 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
9594
9595         * reflection.c: make mono_reflection_setup_internal_class ()
9596         callable a second time to setup a new parent class.
9597
9598 2004-06-23  Dick Porter  <dick@ximian.com>
9599
9600         * threads.c: Check for WAIT_IO_COMPLETION return values.
9601
9602 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
9603
9604         * appdomain.c: Removed the g_free on the public key token. Now copy 
9605         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
9606         * assembly.c: Added public key token string value when loading 
9607         assemblies. Fix bug #60439.
9608         * icall.c: Added missing informations (like public key) in 
9609         GetReferencedAssemblies. Fix #60519.
9610         * image.h: Changed definition for public key token from const char*
9611         public_tok_value to guchar public_key_token [17];
9612         * reflection.c: Updated for changes to public key token.
9613
9614 2004-06-22  Lluis Sanchez Gual
9615
9616         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
9617         for the field in base classes.
9618
9619 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
9620
9621         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
9622         mark headers as not supported, they are installed only for use by the
9623         debugger.
9624
9625 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
9626
9627         * *.c, *.h: avoid namespace pollution in public headers.
9628
9629 2004-06-21  Martin Baulig  <martin@ximian.com>
9630
9631         * exception.c (mono_get_exception_security): It's in
9632         "System.Security", not in "System".
9633
9634         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
9635         the exception classes.
9636
9637 2004-06-21  Martin Baulig  <martin@ximian.com>
9638
9639         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
9640         Protect the exception object from being finalized.
9641
9642 2004-06-21  Martin Baulig  <martin@ximian.com>
9643
9644         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
9645         public function.
9646
9647 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
9648
9649         * reflection.c: Load the assembly in mono_reflection_type_from_name,
9650         if it was not loaded before. Fix parts of #60439.
9651
9652 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
9653
9654         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
9655         code that was broken since Ben's change: wrappers are now
9656         dependent on the method signature only again.
9657
9658 2004-06-21  Martin Baulig  <martin@ximian.com>
9659
9660         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
9661         added interface support.
9662
9663 2004-06-21  Martin Baulig  <martin@ximian.com>
9664
9665         * class.c (mono_vtable_get_static_field_data): New public method.
9666
9667 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
9668
9669         * filewatcher.c : Windows build fix to be compliant with API changes.
9670
9671 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
9672
9673         * class.h, class.c: more accessors.
9674         * metadata.h, metadata.c: prepare for hiding MonoType and
9675         MonoMethodSignature: people should use the accessors from now on
9676         outside of the tree.
9677
9678 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
9679
9680         * *.c, *.h: more API cleanups.
9681
9682 2004-06-18  Jackson Harper  <jackson@ximian.com>
9683
9684         * assembly.c: Trace loading assemblies.
9685         * loader.c: Trace loading native libraries.
9686         * mono-config.c: Trace loading config files.
9687         
9688 2004-06-18  Dick Porter  <dick@ximian.com>
9689
9690         * locales.c: Tell ICU the lengths of strings, it can cope with
9691         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
9692
9693 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
9694
9695         * image.c: swapped name/filename;
9696
9697 2004-06-18  Martin Baulig  <martin@ximian.com>
9698
9699         * mono-debug-debugger.c (write_class): Write the parent class at
9700         the end of the header.
9701
9702 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
9703
9704         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
9705
9706 2004-06-17  Raja R Harinath  <rharinath@novell.com>
9707
9708         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
9709         (bundle_obj): New conditional define.
9710         (BUILT_SOURCES): Remove.
9711         ($(bundle_srcs)): Make parallel-make safe.
9712         (libmonoruntime_la_LIBADD): Make unconditional.
9713         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
9714         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
9715
9716 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
9717
9718         * culture-info-tables.h: It was inconsistent with the latest
9719           supp info files.
9720
9721 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
9722
9723         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
9724         be loaded.
9725
9726         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
9727         with gcc 2.95.
9728
9729 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
9730
9731         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
9732         cleaned up public header threads.h.
9733
9734 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9735
9736         * Makefile.am, *.c, *.h: more API cleanups.
9737
9738 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
9739
9740         * Makefile.am: removed monosn from compilation.
9741         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
9742         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
9743         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
9744         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
9745         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
9746         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
9747
9748 2004-06-15  Jackson Harper  <jackson@ximian.com>
9749
9750         * assembly.c: Make locales lower case when searching the GAC for
9751         assemblies. gacutil will always make locales lowercase when
9752         installing so this effectively makes them case insensitive.
9753         
9754 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
9755
9756         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
9757         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
9758           parameter which allows to choose whether the wait can be interrupted or 
9759           not. Also added the method mono_monitor_enter(), which locks the monitor
9760           using an infinite wait and without allowing interruption.
9761           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
9762           interrupted.
9763         * object.h: Added new fields in MonoThread. suspend_event holds the event
9764           used to susped/resume the thread. synch_lock is the lock object to use for
9765           modifying the thread state.
9766         * threads.c: Use the new synch_lock object for locking, instead of "this",
9767           which can generate deadlocks.
9768           Moved thread state change in Thread.Sleep and Thread.Join from managed
9769           to unmanaged code. This avoids a deadlock when the thread was suspended
9770           just after acquiring the thread lock.
9771           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
9772           Implemented Thread.Suspend using an event instead of ThreadSuspend,
9773           which is not fully implemented in the io-layer.
9774         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
9775
9776 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
9777
9778         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
9779         threads-types.h: more API cleanups.
9780
9781 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
9782
9783         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
9784         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
9785         threadpool.c, threads.c: first pass at the exported API cleanup.
9786
9787 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
9788
9789         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
9790
9791 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9792
9793         * icall.c: added internalGetHome.
9794
9795 2004-06-14  Dick Porter  <dick@ximian.com>
9796
9797         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
9798         possible to return successfully when '.' or '..' were the only
9799         entries in a directory, but were skipped.  The MonoIOStat was not
9800         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
9801         Fixes bug 59574.
9802
9803 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9804
9805         * reflection.c: make binaries run on .Net 1.1 by default.
9806
9807 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
9808
9809         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
9810
9811 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
9812
9813         * marshal.c: keep track of struct size with explicit layout
9814         (bug #59979).
9815
9816 2004-06-12  Martin Baulig  <martin@ximian.com>
9817
9818         * mono-debug-debugger.c: Comment out a debugging g_message().
9819
9820 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
9821
9822         * reflection.c, reflection.h: do not free custom attrs that are cached.
9823         * icall.c: use braces to make code clearer.
9824
9825 2004-06-11  Martin Baulig  <martin@ximian.com>
9826
9827         * class.h (MonoInflatedField): New type.
9828         (MonoClassField): Replaced `MonoType *generic_type' with
9829         `MonoInflatedField *generic_info'.
9830
9831         * icall.c
9832         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
9833
9834 2004-06-11  Martin Baulig  <martin@ximian.com>
9835
9836         * reflection.c (mono_image_create_method_token): Correctly encode
9837         varargs methods.
9838
9839 2004-06-11  Martin Baulig  <martin@ximian.com>
9840
9841         * metadata.c (mono_metadata_parse_method_signature): When parsing
9842         a MethodDef which has VarArgs, also set sentinelpos if we don't
9843         have any parameters.
9844
9845 2004-06-11  Martin Baulig  <martin@ximian.com>
9846
9847         * verify.c (mono_method_verify): In CEE_CALL, use
9848         mono_method_get_signature() to get the method's signature, unless
9849         we're a PInvoke method.
9850
9851 2004-06-10  Jackson Harper  <jackson@ximian.com>
9852
9853         * assembly.c: Use <path>/lib/mono/gac for the extra paths
9854         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
9855         logical name as the supplied path is just a prefix to the gac not
9856         the direct path to it.
9857         
9858 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
9859
9860         * reflection.c: make the token for a created method match
9861         the token of the MethodBuilder it was created from
9862         (IKVM requires this behaviour now).
9863
9864 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
9865
9866         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
9867         reflection.c, socket-io.c: leak fixes.
9868
9869 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
9870
9871         * icall.c: handle sentinel pos in vararg methods in position different
9872         from 0.
9873
9874 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9875
9876         * culture-info-tables.h: freshly generated.
9877
9878 2004-06-09  Martin Baulig  <martin@ximian.com>
9879
9880         * loader.c (mono_get_method_constrained): Call `mono_class_init
9881         (constrained_class)'.   
9882
9883 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
9884
9885         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
9886         any methods. Fixes #59629.
9887
9888 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
9889
9890         * culture-info-tables.h: reflecting locale-builder updates.
9891
9892 2004-06-08  Dick Porter  <dick@ximian.com>
9893
9894         * object.h:
9895         * locales.c: Fixed compile warnings, including a real bug in
9896         CompareInfo_internal_compare.
9897         
9898 2004-06-08  Dick Porter  <dick@ximian.com>
9899
9900         * locales.c
9901         (ves_icall_System_Globalization_CompareInfo_internal_index):
9902         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
9903         Double-check the resuls of usearches, because ICU currently
9904         ignores most of the collator settings here.  Fixes bug 59720.
9905         
9906 2004-06-08  Dick Porter  <dick@ximian.com>
9907
9908         * locales.c
9909         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
9910         Fix memory leak and segfault-causing typo.  No idea how this one
9911         lasted so long without being noticed.
9912
9913 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
9914
9915         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
9916         any methods. Fixes #59629.
9917
9918 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9919
9920         * assembly.c:
9921         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
9922         own the critical section before). Removed dead code (that's done
9923         in the preload hook).
9924
9925         (mono_assembly_load_with_partial_name): call the preload hook.
9926
9927 2004-06-08  Martin Baulig  <martin@ximian.com>
9928
9929         * metadata.c (mono_metadata_signature_alloc): Default
9930         `sentinelpos' to -1.
9931
9932         * reflection.c (mono_image_get_array_token): Likewise.
9933
9934 2004-06-08  Martin Baulig  <martin@ximian.com>
9935
9936         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
9937
9938         * metadata.c (mono_metadata_parse_method_signature): When parsing
9939         a MethodDef which has VarArgs, set sentinelpos.
9940
9941         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
9942         `gint16' since we're using -1 for non-varargs methods.
9943
9944         * reflection.c
9945         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
9946         (method_encode_signature): Added varargs support.
9947         (method_builder_encode_signature): Likewise.
9948         (mono_image_get_varargs_method_token): New static method.
9949         (mono_image_create_method_token): New public method; this is
9950         called via an icall instead of mono_image_create_token() when
9951         calling a varargs method.       
9952
9953 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
9954
9955         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
9956
9957 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
9958
9959         * culture-info-tables.h : Reflecting the latest locale-builder that
9960           fixed empty array representation ({} to {0}).
9961
9962 2004-06-07  Jackson Harper  <jackson@ximian.com>
9963
9964         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
9965         looking up extra gac paths. This allows MONO_GAC_PATH to act
9966         exactly like a prefix.
9967         
9968 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
9969
9970         * reflection.c (mono_reflection_type_from_name): Make a copy of the
9971         type name before modifying it. Fixes #59405.
9972
9973 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
9974
9975         * culture-info.h: added fields for "all datetime patterns".
9976         * locales.c: (  ves_icall_System_Globalization_CultureInfo
9977           _construct_datetime_format ()): fill xxx_patterns fields.
9978         * object.h: added fields for "all datetime patterns" to
9979           MonoDateTimeFormatInfo.
9980         * culture-info-tables.h: reflecting locale-builder updates.
9981
9982 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
9983
9984         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
9985         the event has no add and remove methods. Fixes #59629.
9986
9987 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
9988
9989         * object.c: Fixed possible integer overflow when allocating large
9990         strings.
9991
9992 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
9993
9994         * culture-info-tables.h: reflecting locale-builder updates.
9995
9996 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
9997
9998         * culture-info-tables.h: reflecting locale-builder updates.
9999
10000 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
10001
10002         * culture-info-tables.h: reflecting locale-builder updates.
10003
10004 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
10005
10006         * threads.c: Made Thread.Sleep abortable.
10007
10008 2004-06-02  Martin Baulig  <martin@ximian.com>
10009
10010         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
10011
10012         * debug-mono-symfile.h: Bumped symbol file version number to 37.
10013
10014 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
10015
10016         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
10017
10018 2004-05-30  Jackson Harper  <jackson@ximian.com>
10019
10020         * reflection.c: Do not hardcode assembly versions or public key
10021         tokens anymore. All of this except the corlib section was dead
10022         code anyways.
10023         
10024 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
10025
10026         * object.c (mono_runtime_invoke_array): Automatically create boxed
10027         objects for byref valuetypes if needed. Fixes #59300.
10028         
10029         * object.c (mono_method_return_message_restore): Handle 
10030         MONO_TYPE_OBJECT as well.
10031
10032 2004-05-28  Jackson Harper  <jackson@ximian.com>
10033
10034         * reflection.c: The modified type encoding was causing build
10035         problems. Reverted for now.
10036         
10037 2004-05-28  Jackson Harper  <jackson@ximian.com>
10038
10039         * reflection.c/h: Take an assembly ref so that we dont create
10040         fully qualified names when encoding types in the same assembly as
10041         the custom attribute being emitted.
10042         * appdomain.c: Increment version number.
10043         
10044 2004-05-26  Duncan Mak  <duncan@ximian.com>
10045
10046         * icall.c
10047         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
10048         Set the full version number (major, minor, build, revision).
10049
10050 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
10051
10052         * marshal.c (emit_struct_conv): increment src/dst after blit
10053         (mono_marshal_get_managed_wrapper,
10054         mono_marshal_get_native_wrapper): make sure we have marshalling
10055         info before marshalling params (info computation affects
10056         blittable)
10057
10058         * class.c (class_compute_field_layout): correctly deal with
10059         blittable
10060         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
10061         value types (as per what windows dows by default)
10062         (mono_class_setup_mono_type): System.ValueType is blittable
10063         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
10064         blittable
10065
10066         * marshal.c (mono_marshal_load_type_info): flag types  as
10067         non-blittable if the native layout doesn't match the managed
10068         layout
10069
10070 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10071
10072         * appdomain.c: don't add stuff in the private search path that is
10073         above the application base. If application base is not set, there's
10074         no private search path.
10075
10076 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
10077
10078         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
10079         byref struct arguments in native->managed marshalling.
10080
10081 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
10082
10083         * marshal.c (mono_marshal_get_runtime_invoke): correctly
10084         cache methods using signature (special case for methods
10085         that are value type or string class)
10086         
10087         * image.c (mono_image_close): clean up allocated GSList's
10088         in runtime_invoke_cache.
10089
10090 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10091
10092         * mono-config.c: set the correct path for mono_cfg_dir on windows when
10093         there's no MONO_CFG_DIR environment variable defined.
10094
10095 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10096
10097         * threads.c: windows version must be >= 0x0500 to include OpenThread.
10098
10099 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
10100
10101         * threadpool.c: Really wait for 500ms after the async call, even if the wait
10102           is interrumped.
10103         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
10104           before waiting for it, and call CloseHandle after the wait to unref it.
10105           This will make sure that handles are not disposed too early.
10106
10107 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10108
10109         * appdomain.c:
10110         * appdomain.h:
10111         * icall.c: removed
10112         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
10113         needed now.
10114
10115         * object.c: se the application_base only for the domain that runs
10116         Main. Fixes bug #59216,
10117
10118 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10119
10120         * appdomain.c:
10121         * object.c: only the domain in which Main is run have
10122         SetupInformation.ConfigurationFile set, so moved a few lines from
10123         appdomain.c to object.c.
10124
10125 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10126
10127         * appdomain.c: we tried to load [name].(dll|exe), but according
10128         to bug #57710, we must also try [culture]/[name].(dll|exe) and
10129         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
10130         There's a test case attached to bug #58922.
10131
10132 2004-05-27  Dick Porter  <dick@ximian.com>
10133
10134         * icall.c:
10135         * file-io.c: Implemented icalls for locking and unlocking regions
10136         in a file.
10137         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
10138         FALSE on error (fixes both compiler warning and real bug.)
10139
10140 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
10141
10142         * culture-info-tables.h: reflecting locale-builder updates.
10143
10144           (Added missing ChangeLog entry for 05/26)
10145
10146 2004-05-27  Jackson Harper  <jackson@ximian.com>
10147
10148         * locales.c: Fix some cut and paste errors.
10149         
10150 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10151
10152         * mono-config.c: set the correct path for config. directory on windows.
10153
10154 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10155
10156         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
10157           on win32.
10158
10159 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
10160
10161         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
10162         from pinvoke functions.
10163         
10164         * marshal.c (mono_ftnptr_to_delegate): Implement this.
10165
10166 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10167
10168         * culture-info-tables.h: reflecting locale-builder updates.
10169
10170 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
10171
10172         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
10173         #59086.
10174
10175 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
10176
10177         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
10178         * icall.c: Modified icalls for RNG.
10179         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
10180         Windows (CryptoAPI).
10181
10182 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
10183
10184         * locales.c: Fix build.
10185
10186 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
10187
10188         * culture-info-tables.h: reflecting locale-builder updates.
10189
10190 2004-05-25  Jackson Harper  <jackson@ximian.com>
10191
10192         * locales.c: When creating the current culture use the $LANGs
10193         specific culture. So DateTimeFormat and NumberFormat entries are created.
10194         
10195 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
10196
10197         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
10198         a char array as parameter.
10199
10200 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
10201
10202         * image.c: In mono_image_open(), always use an absolute path name to
10203           look for already loaded images.
10204
10205 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
10206
10207         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
10208         missing in the windows build (like older cygwin include files).
10209
10210 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
10211
10212         * icall.c: Fixed check for possible integer overflow in Buffer_
10213         BlockCopy icall. Replaced comments style // by /* */.
10214
10215 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
10216
10217         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
10218         
10219         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
10220         check after MONO_VTADDR. Fixes pinvoke2.exe.
10221
10222         * marshal.h marshal.c metadata.h: Add beginnings of support for
10223         ftnptr -> delegate marshalling.
10224
10225 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
10226
10227         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
10228         * threads.c: Fix warnings.
10229
10230 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
10231
10232         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
10233         * icall.c: Registered icalls for Suspend and Resume.
10234         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
10235           Thread.Abort.
10236         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
10237         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
10238         * process.c: Use WaitForSingleObjectEx.
10239         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
10240           checkpoints.
10241         * threads.c, threads.h: Make use of new Ex wait methods. Improved
10242           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
10243           for Suspend and Resume. Added new mono_thread_stop, used for stoping
10244           background threads. Added basic support for Abort in Windows.
10245           Start new threads using a managed delegate invoke wrapper. This wrapper
10246           has an interruption checkpoint that is needed since an interruption
10247           can be requested before the thread leaves the unmanaged code that starts 
10248           the thread.
10249         * marshal.c: Added interruption checkpoint after every native call, and
10250           also before managed calls for wrappers called from unmanaged code to
10251           go into managed code.
10252         * object.h: Added new field in MonoThread to keep track of interruption
10253           requests.
10254
10255 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
10256
10257         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
10258         calls.
10259
10260 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10261
10262         * appdomain.c:
10263         * assembly.c:
10264         * gc.c:
10265         * locales.c:
10266         * mono-config.c:
10267         * rand.c: getenv -> g_getenv (windows!)
10268
10269         * process.c: complete_path is also used on non-windows platforms.
10270
10271 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10272
10273         * icall.c: new signature for Process_Start.
10274
10275         * process.[ch]: new signature for Process_Start. If we're on windows
10276         and UseShellExecute is false, we have to search for the program by
10277         ourselves if we don't get a full path.
10278
10279 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
10280
10281         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
10282         marshalling and call CleanUpNativeData if needed. Fixes #58646.
10283
10284 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10285
10286         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
10287         Fixes bug #58373.
10288
10289 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10290
10291         * process.c: use double quotes to quote program name and arguments on
10292         windows. Fixes bug #58575.
10293
10294 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10295
10296         * file-io.c: don't return "." and ".." when using windows Find*File.
10297
10298 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
10299
10300         * marshal.c: Don't pass wrappers to message init because method 
10301         addressed used to lookup metadata. part of remoting[2|3] fix.
10302
10303 2004-05-15  Jackson Harper  <jackson@ximian.com>
10304
10305         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
10306         path is essentially the same as MONO_PATH except that it points to
10307         GACs instead of lib directories.
10308         * loader.h: The user gac is gone so we dont need function to
10309         enable/disable it.
10310         * mono-config.c: user gac option is now gone.
10311         
10312 2004-05-15  Jackson Harper  <jackson@ximian.com>
10313
10314         * culture-info.h: Make defines more consistent, add calendar data
10315         to the culture info table.
10316         * culture-info-tables.h: Add basic calendar data. Basically
10317         everyone gets default gregorian until all the data is
10318         updated.
10319         * locales.c: Use the new consistent defines. Set calendar data for
10320         culture info objects.
10321         * object.h: add a field for calendar data to CultureInfo
10322         
10323 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
10324
10325         * image.c: image->runtime_invoke_cache is keyed on signatures now.
10326         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
10327         a signature.
10328         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
10329         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
10330         an extra param that is the pointer of the method to invoke. The IL for
10331         the invoke method is no longer specific to the method, but to the
10332         signature of the method. Thus, we can share the same code for multiple
10333         methods. This reduces the number of methods that have to be compiled.
10334
10335 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
10336
10337         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
10338
10339         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10340
10341         * icall.c: Optimize Buffer.BlockCopy.
10342
10343 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10344
10345         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
10346         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
10347         quote). Changed them to "MMMM yyyy".
10348
10349 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
10350
10351         * rand.c
10352         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
10353
10354 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
10355
10356         * reflection.h: Updated after changes to managed structures.
10357
10358         * appdomain.c: Bump corlib version.
10359
10360 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10361
10362         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
10363         windows.
10364
10365 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10366
10367         * Makefile.am: link to ../os/libmonoos.la on windows.
10368
10369         * assembly.c:
10370                 -If MONO_DEBUG, warn about non-existing directories in
10371                 MONO_PATH.
10372                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
10373                 compile time variable.
10374                 -Removed init_default_path and call mono_set_rootdir from
10375                 libmonoos.a instead (windows only).
10376
10377         * assembly.h: declare mono_assembly_getrootdir().
10378
10379         * domain.c:
10380         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
10381
10382         * loader.c: s/getenv/g_getenv/
10383
10384 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
10385
10386         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
10387
10388         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
10389
10390         * metadata.h: Add new marshalling conversions.
10391
10392         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
10393         function.
10394
10395         * reflection.c (mono_reflection_get_type): Lookup the type in all
10396         modules of a multi-module assembly. Fixes #58291.
10397
10398 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
10399
10400         * threads.c: Before aborting a background, set the StopRequested
10401         state.  This avoids throwing the Abort exception.
10402         In mono_thread_manage, don't continue with the shutdown until all
10403         aborted threads have actually stopped.
10404
10405 2004-05-10  Jackson Harper  <jackson@ximian.com>
10406
10407         * locales.c: Remove the modifier from culture names.
10408         
10409 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10410
10411         * Makefile.am: monosn is not installed any more. It has been deprecated
10412         in favor of sn.
10413
10414 2004-05-07  Jackson Harper  <jackson@ximian.com>
10415
10416         * locales.c
10417         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
10418         Fix array construction, add bailout if the length is 0.
10419
10420 2004-05-07  Dick Porter  <dick@ximian.com>
10421
10422         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
10423         machine doesn't have a DNS entry.  Patch by Urs Muff
10424         (umuff@quark.com), fixes bug 57928.
10425
10426 2004-05-06  Jackson Harper  <jackson@ximian.com>
10427
10428         * reflection.c: Handle null PublicTokens properly. alloc mem for
10429         assembly names culture so we dont crash when freeing it.
10430         
10431 2004-05-06  Jackson Harper  <jackson@ximian.com>
10432
10433         * assembly.c: Check the usergac when loading with partial names.
10434         
10435 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
10436
10437         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
10438         does nothing for now (not required for Linux/Windows) but the class
10439         library can call it (and a newer or modified runtime could need it).
10440         * icall.c: Registred icall.
10441
10442 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10443
10444         * loader.c: prints a message on module loading error we set MONO_DEBUG
10445         environment variable.
10446
10447 2004-05-05  Jackson Harper  <jackson@ximian.com>
10448
10449         * appdomain.c: Handle PublicKeyToken=null properly.
10450         
10451 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
10452
10453         * environment.c|h: Added icall ves_icall_System_Environment_
10454         GetOSVersionString to get the current OS version as a string.
10455         * icall.c: Registred icall.
10456
10457 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
10458
10459         * object.c: in mono_object_get_virtual_method(), take into account that
10460         non-virtual methods don't have a slot in the vtable. Check needed when
10461         the object is a proxy.
10462
10463 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
10464
10465         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
10466         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
10467
10468         * object.c (mono_class_compute_gc_descriptor): Fix warning.
10469
10470         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
10471         passed when a valuetype is expected.
10472
10473         * object.c (mono_unhandled_exception): Only set the exit code if the
10474         exception happens in the main thread. Fixes thread5.exe.
10475
10476         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
10477         invalid names. Fixes #58047.
10478
10479 2004-05-03  Jackson Harper  <jackson@ximian.com>
10480
10481         * assembly.c: This line was committed accidently and is unneeded.
10482         
10483 2004-05-03  Jackson Harper  <jackson@ximian.com>
10484
10485         * icall.c: Add new icall for Assembly::LoadWithPartialName
10486         * assembly.c/.h: new function that probes the GAC to load partial
10487         assembly names by Paolo Molaro.
10488         
10489 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10490
10491         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
10492         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
10493         (type_get_fully_qualified_name): Added PublicKeyToken when building a
10494         full type name.
10495
10496 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10497
10498         * appdomain.c: fixed check for 'neutral' culture and removed warning.
10499         * reflection.c: fix bug when parsing a full type name and Version is not
10500         the last thing in the string.
10501
10502 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
10503
10504         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
10505         crashes when it is freed.
10506
10507 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10508
10509         * assembly.c: print the compat warning to stderr.
10510
10511 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
10512
10513         * assembly.c (mono_assembly_load_references): Add a compatibility
10514         hack to run old applications that might be still referencing the
10515         3300-based assemblies, only do this for System.xxx.
10516
10517 2004-05-01  Jackson Harper  <jackson@ximian.com>
10518
10519         * appdomain.c: If the culture is neutral we set it to "".
10520         
10521 2004-04-29  Jackson Harper  <jackson@ximian.com>
10522
10523         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
10524
10525 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
10526  
10527         * string-icalls.c: added low overhead function for copying chars
10528         * icall.c: added needed icall for the above function
10529  
10530 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10531
10532         * icall.c: fix return value of get_global_assembly_cache.  Implemented
10533         Environment.GetLogicalDrives.
10534
10535 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
10536
10537         * rand.c: try and talk to egd or prngd
10538         for random bytes if opening devices fail.
10539
10540 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
10541
10542         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
10543         alignment for the type using the native alignment of its members 
10544         instead of using klass->min_align.
10545
10546         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
10547
10548 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10549
10550         * file-io.c:
10551         * socket-io.c: added check for sys/aio.h.
10552
10553 2004-04-28  Dick Porter  <dick@ximian.com>
10554
10555         * threads.c: Don't abort a thread thats already aborting, when
10556         terminating everything.
10557
10558 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10559
10560         * icall.c: added 2 new async calls for Socket.
10561
10562         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
10563         IO on *nix systems.
10564
10565         * threadpool.c: removed unused variable.
10566
10567 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
10568
10569         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
10570
10571 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10572
10573         * locales.c: put back string_invariant_tolower () and
10574         string_invariant_toupper ().
10575
10576 2004-04-26 David Waite <mass@akuma.org>
10577
10578         * file-io.h:
10579         * socket-io.h:
10580         * threads.h:
10581         * unicode.h: remove comma from end of enumeration declarations
10582
10583 2004-04-26 David Waite <mass@akuma.org>
10584
10585         * debug-mono-symfile.h:
10586         * decimal.c:
10587         * mono_debug.h:
10588         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
10589
10590
10591 2004-04-26  Jackson Harper  <jackson@ximian.com>
10592
10593         * appdomain.c: Increment version number.
10594         
10595 2004-04-26  Jackson Harper  <jackson@ximian.com>
10596
10597         * appdomain.c: Set assembly references public token value when
10598         PublicKeyToken is specified, not the hash_value. Free public token
10599         values when free assembly name data. Previously the public key
10600         token was hex decoded, however we are using hex encoded public key
10601         tokens, so this is not neccasary.
10602         * assembly.c: Lookup assemblies in the gac if their public token
10603         value is set. Add function to allow enabling user gac
10604         lookups. Specify whether or not the assembly was loaded from the
10605         GAC. Compare full assembly names when checking the cache for
10606         assemblies (Temporarily disabled see comment in code). Remove
10607         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
10608         specifies trace-loader they get extra info to stdout on the
10609         loading of assemblies.
10610         * image.h: Add a field for an assembly references public token
10611         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
10612         whether an assembly has been loaded from the GAC.
10613         * image.c: Remove a corlib -> mscorlib name mapping.
10614         * loader.h: Add function to enable/disable the user gac.
10615         * mono-config.c: Check if the usergac is enabled in the config
10616         file.
10617         * icall.c: New icall to determine whether or not an assembly has
10618         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
10619         * tabldefs.h: Add constant for assemblyref flag that specifies a
10620         full public key is used instead of a public token.
10621         * reflection.c: Remove mscorlib -> corlib mappings. Set
10622         PublicTokenValue instead of hash value. This value is a hex
10623         string so it does not need to be expanded.
10624
10625 2004-04-26  Martin Baulig  <martin@ximian.com>
10626
10627         * mono-debug-debugger.c (mono_debugger_initialize): Set
10628         `mono_debugger_initialized' before calling mono_debug_lock().
10629
10630 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
10631
10632         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
10633           InternalToUpper/InternalToLower.
10634         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
10635           removed invariant culture shortcut.  This is now done in managed code.
10636         * locales.c: (string_invariant_toupper/tolower) removed.
10637
10638 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10639
10640         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
10641         Added Poll internal call.
10642
10643         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
10644         call for Poll. Select was too heavy for polling a single socket.
10645
10646         * threadpool.[ch]: added mono_threadpool_cleanup.
10647         * threads.c: use it. Don't use Thread_Abort on windows.
10648
10649 2004-04-23  Martin Baulig  <martin@ximian.com>
10650
10651         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
10652
10653 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
10654
10655         * icall.c: Registred new icalls for key pair protection and added an
10656         icall for Environment.GetFolderPath on Windows.
10657         * security.c|h: Added new icalls for key pair protection.
10658
10659 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10660
10661         * socket-io.c: don't display the non-supported family warning for known
10662         families. Now this is not displayed on windows when checking support
10663         for IPv4/IPv6.
10664
10665 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10666
10667         * class.c: don't display the layout warning for static fields.
10668
10669 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
10670
10671         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
10672         * locales.c, locales.h: Added new icalls for culture-specific
10673         Char.ToLower and Char.ToUpper.
10674
10675 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10676
10677         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
10678         by David Waite.
10679
10680 2004-04-20  Martin Baulig  <martin@ximian.com>
10681
10682         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
10683         of the type name before passing it to mono_reflection_type_from_name().
10684
10685 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
10686
10687         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
10688         encodings here. Fixes #56965.
10689
10690 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
10691
10692         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
10693         fix test on strstr result not that I can see anything that
10694         relies on the result.
10695
10696 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
10697
10698         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
10699         Fixes #57081.
10700
10701         * marshal.c (mono_marshal_get_string_encoding): New helper function.
10702
10703         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
10704         function to determine which marshalling to use for strings. Fixes
10705         #56965.
10706
10707         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
10708
10709         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
10710
10711 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
10712
10713         * icall.c: #include mono-config.h
10714
10715 2004-04-15  Jackson Harper  <jackson@ximian.com>
10716
10717         * culture-info-tables.h: Fix date formats for en-US culture.
10718         
10719 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
10720
10721         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
10722         ThreadPool.SetMinThreads.
10723         * threadpool.c: Implemented ThreadPool.GetMinThreads and
10724         ThreadPool.SetMinThreads.
10725
10726 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
10727
10728         * mono-config.c: also load the .config file in the directory
10729         where the assembly was found.
10730
10731 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
10732
10733         * assembly.c: load per-assembly config files.
10734         * icall.c: decrapified code to get the config dir and moved to
10735         mono-config.c.
10736         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
10737         per-assembly config files. When doing a dll map lookup give precedence
10738         to the per-assembly data.
10739
10740 2004-04-14  Martin Baulig  <martin@ximian.com>
10741
10742         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
10743         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
10744         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
10745
10746         * mono-debugger-debugger.c: While the debugger is locked, remember
10747         whether the symbol tables have changes and send one single
10748         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
10749
10750 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
10751
10752         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
10753
10754         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
10755         function.
10756
10757         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
10758         account when marshalling string arrays. Fixes #56965.
10759
10760 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
10761
10762         * icall.c: Add new icalls mapping for security.
10763         * security.c|h: Add internal calls for WindowsIdentity,
10764         WindowsImpersonationContext and WindowsPrincipal.
10765
10766 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
10767
10768         * class.c: Added comment to ensure the System.MonoDummy class
10769         is removed when no longer necessary
10770
10771 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
10772
10773         * appdomain.c: Pass arguments to the bootstraping exceptions to
10774         minimize JITed methods at boot
10775
10776         * metadata.c (mono_exception_from_name_two_strings): Allow for the
10777         second string to be null.
10778
10779         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
10780         Change the protocol to minimize the JIT methods at startup.  Now
10781         it Returns the internal codepage, if the value of "int_code_page"
10782         is 1 at entry, and we can not compute a suitable code page
10783         number, returns the code page as a string.
10784
10785 2004-04-13  Jackson Harper  <jackson@ximian.com>
10786
10787         * culture-info-tables.h: Fix number of decimal digits for all
10788         english locales.
10789
10790 2004-04-13  Jackson Harper  <jackson@ximian.com>
10791
10792         * icall.c: Clairfy out of sync error message. It is not always
10793         your corlib that is out of sync.
10794
10795 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
10796
10797         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
10798         properties when only the set accessor is overriden. Fixes #55874.
10799
10800 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
10801
10802         * assembly.c (mono_assembly_load_references): Make this thread safe.
10803         Fixes #56327.
10804
10805 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
10806
10807         * monosn.c: Add missing initialization calls.
10808
10809 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
10810
10811         * locales.c:
10812         ves_icall_System_Globalization_CultureInfo_construct_number_format
10813         Fix g_assert so it compiles on fussier compilers re int/ptr
10814         mismatch
10815
10816 2004-04-08  Dick Porter  <dick@ximian.com>
10817
10818         * socket-io.h:
10819         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
10820         53992.  Also rearrange the code so that the internal calls return
10821         an error value and exceptions are thrown from managed code.
10822
10823         * icall.c: Add type info to the socket icalls.
10824
10825 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10826
10827         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
10828         owes me a beer.
10829
10830 2004-04-07  Martin Baulig  <martin@ximian.com>
10831
10832         * class.c (mono_class_from_generic_parameter): Don't default
10833         `klass->parent' to `mono_defaults.object_type'.
10834
10835 2004-04-07  Martin Baulig  <martin@ximian.com>
10836
10837         * reflection.c (mono_reflection_initialize_generic_parameter): Set
10838         `param->pklass->reflection_info'.       
10839
10840 2004-04-07  Jackson Harper  <jackson@ximian.com>
10841
10842         * culture-info-tables.h: Fix date separator symbol.
10843         
10844 2004-04-07  Martin Baulig  <martin@ximian.com>
10845
10846         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
10847         from System.Type to System.MonoType.
10848
10849 2004-04-07  Martin Baulig  <martin@ximian.com>
10850
10851         * reflection.h
10852         (MonoReflectionGenericParam): Added `has_reference_type' and
10853         `has_value_type' fields.
10854
10855         * reflection.c (mono_image_get_generic_param_info): Encode the
10856         correct flags if we have the `class' or `struct' constraint.
10857
10858 2004-04-07  Martin Baulig  <martin@ximian.com>
10859
10860         * reflection.h
10861         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
10862
10863 2004-04-07  Jackson Harper  <jackson@ximian.com>
10864
10865         * appdomain.c: Revert extra patches, just wanted to bump the
10866         version number.
10867         
10868 2004-04-07  Jackson Harper  <jackson@ximian.com>
10869
10870         * Makefile.am: Add culture-info private headers.
10871         * icall.c: Add new icalls for contructing locales.
10872         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
10873         * locales.h: Declare new culture info construction methods.
10874         * object.h: Add new fields used to avoid the CultureMap to
10875         MonoCultureInfo.
10876         * culture-info.h: Definition of structs used in the culture info
10877         tables.
10878         * culture-info-tables.h: Autogenerated tables that contain culture
10879         info data. This file was generated with the locale-builder tool.
10880         * appdomain.c: Incement corlib version number.
10881         
10882 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
10883
10884         * appdomain.c: (mono_runtime_init) move mono_thread_init
10885         to before mono_object_new calls so critical sections
10886         are initialized before use.
10887
10888 2004-04-07  Martin Baulig  <martin@ximian.com>
10889
10890         * icall.c
10891         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
10892         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
10893         (ves_icall_MonoGenericParam_initialize): Removed.
10894         (monogenericparam_icalls): Removed.
10895         (generictypeparambuilder_icalls): Added new table for
10896         System.Reflection.Emit.GenericTypeParameterBuilder.
10897
10898         * reflection.c
10899         (mono_reflection_define_generic_parameter): Removed.
10900         (mono_reflection_initialize_generic_parameter): This is now called
10901         from GenericTypeParameterBuilder's .ctor.
10902
10903 2004-04-06  Martin Baulig  <martin@ximian.com>
10904
10905         * class.c (mono_class_init): Don't inflate nested classes in a
10906         generic instance.
10907         (mono_type_get_name_recurse): Include the generic arguments for
10908         generic instances and generic type declarations.
10909         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
10910         (_mono_class_get_instantiation_name): Removed.
10911         (mono_class_create_generic): Always use `gklass->name' as our name.
10912
10913         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
10914
10915         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
10916         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
10917         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
10918         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
10919         closed generic methods here.
10920
10921         * reflection.c
10922         (mono_reflection_generic_inst_get_nested_types): Removed.
10923         (inflate_mono_method): Copy the generic parameters from the
10924         MonoMethodHeader into out MonoGenericMethod.
10925
10926 2004-04-06  Martin Baulig  <martin@ximian.com>
10927
10928         * row-indexes.h
10929         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
10930
10931         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
10932
10933         * reflection.c (build_compressed_metadata): If we have any entries
10934         in the GenericParam, MethodSpec or GenericParamConstraint tables,
10935         set the header version to 1.1.
10936
10937 2004-04-06  Martin Baulig  <martin@ximian.com>
10938
10939         * class.c (mono_class_init): If we're a generic instance,
10940         initialize our nested classes, too.
10941         (_mono_class_get_instantiation_name): Deal with the new `!%d'
10942         suffix. 
10943
10944 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10945
10946         * process.c: quote the argument passed to the shell on windows.
10947
10948 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
10949
10950         * threads.c (mono_alloc_special_static_data): Allow this to be
10951         called during startup.
10952
10953 2004-04-02  Martin Baulig  <martin@ximian.com>
10954
10955         * icall.c
10956         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
10957
10958 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
10959
10960         * icall.c: Fix build.
10961
10962 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
10963
10964         * Makefile.am: Added security.c|h.
10965         * icall.c: Added icall for get_UserName;
10966         * security.c: New file for security related icalls. Added function
10967         get_UserName for System.Environment (fix #56144).
10968         * security.h: New. Header file for security.c
10969
10970 2004-04-02  Dick Porter  <dick@ximian.com>
10971
10972         * icall.c: Deleted the icalls that were obsoleted some time ago
10973         by the ICU string code, and which were mixed into the icall
10974         rearranging.  Fixes bug 55969.
10975
10976         * string-icalls.h: 
10977         * string-icalls.c: Deleted the code that those icalls reference.
10978
10979 2004-04-01  Martin Baulig  <martin@ximian.com>
10980
10981         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
10982
10983         * class.c (mono_class_from_generic_parameter): Don't set 
10984         TYPE_ATTRIBUTE_INTERFACE.
10985         (my_mono_class_from_generic_parameter): Likewise.
10986
10987 2004-04-01  Martin Baulig  <martin@ximian.com>
10988
10989         * loader.c (find_method): Added an optional `MonoClass *ic'
10990         argument to search in a specific interface.
10991         (mono_get_method_constrained): New public function.
10992
10993 2004-04-01  Martin Baulig  <martin@ximian.com>
10994
10995         * reflection.c (mono_image_get_generic_field_token): Use the
10996         `handleref' cache here.
10997
10998 2004-04-01  Martin Baulig  <martin@ximian.com>
10999
11000         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
11001
11002         * reflection.c (create_generic_typespec): Use the `typespec' hash
11003         here, not the `typeref' one.    
11004
11005 2004-04-01  Martin Baulig  <martin@ximian.com>
11006
11007         * class.c (mono_class_inflate_generic_type): Moved the
11008         functionality into a new static inflate_generic_type() which
11009         returns NULL if it didn't do anything.  Only increment the
11010         `mono_stats.inflated_type_count' if we actually inflated
11011         something.
11012         (mono_class_get_full): Check the classes type to see whether we
11013         need to inflate it; also inflate MONO_TYPE_(M)VAR.
11014
11015 2004-04-01  Jackson Harper  <jackson@ximian.com>
11016
11017         * reflection.c: Set culture for assembly references.
11018         
11019 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
11020
11021         * reflection.[ch], icall.[ch], Fix support for pinning variables.
11022
11023 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11024
11025         * assembly.c:
11026         (do_mono_assembly_open): the critical section also covers
11027         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
11028
11029 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11030
11031         * threads.c:
11032         (mono_manage_threads): abort the background threads when finishing.
11033         Fixes bug #47232.
11034
11035 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11036
11037         * gc.c: only close the done_event handle if there was no timeout.
11038         C-ified comments.
11039
11040 2004-03-30  Martin Baulig  <martin@ximian.com>
11041
11042         * icall.c (icall_entries): It's called "System.Activator", not
11043         "System.Activation".    
11044
11045 2004-03-30  Martin Baulig  <martin@ximian.com>
11046
11047         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
11048         (mono_class_create_from_typespec): Likewise.
11049
11050 2004-03-30  Martin Baulig  <martin@ximian.com>
11051
11052         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
11053         `has_ctor_constraint' and `initialized'.
11054
11055 2004-03-30  Martin Baulig  <martin@ximian.com>
11056
11057         * reflection.c (encode_new_constraint): New static function to add
11058         the constructor constraint attribute to a type parameter.
11059         (encode_constraints): Call encode_new_constraint() if necessary.
11060
11061         * reflection.h
11062         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
11063
11064         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
11065         
11066 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
11067
11068         * reflection.c, icall.c: add support for pinning variables. 
11069
11070 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
11071
11072         * marshal.c (mono_marshal_get_managed_wrapper):
11073         init bool local with zero rather than null.
11074
11075 2004-03-29  Martin Baulig  <martin@ximian.com>
11076
11077         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
11078         the "official" behavior here.
11079         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
11080
11081 2004-03-29  Martin Baulig  <martin@ximian.com>
11082
11083         * icall.c: Reflect latest API changes.
11084
11085 2004-03-29  Martin Baulig  <martin@ximian.com>
11086
11087         * loader.c (mono_get_method_from_token): Also call
11088         mono_metadata_load_generic_params () for abstract and interface
11089         methods; replace the type arguments in the method signature with
11090         the ones which are loaded from the metadata.
11091
11092 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
11093
11094         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
11095         of the lock is not the current thread. MS.NET don't do it, in spite of
11096         what the documentation says. See bug #56157.
11097
11098 2004-03-28  Martin Baulig  <martin@ximian.com>
11099
11100         * class.c (mono_class_init): Don't call init_properties() and
11101         init_events() for generic instances; set `prop->parent' when
11102         inflating properties.
11103
11104         * reflection.c (mono_generic_inst_get_object): Call
11105         `mono_class_init (ginst->klass)'.
11106         (mono_type_get_object): Only create a MonoGenericInst if your
11107         generic type is a TypeBuilder.
11108         (do_mono_reflection_bind_generic_parameters): Only set
11109         `ginst->is_dynamic' if our generic type is a TypeBuilder.
11110
11111 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
11112
11113         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
11114         Fixes #56091.
11115
11116 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11117
11118         * icall.c: added Kill_internal icall.
11119         * process.[ch]: added Kill_internal icall.
11120
11121 2004-03-25  Martin Baulig  <martin@ximian.com>
11122
11123         * class.h (MonoStats): Added `generic_instance_count',
11124         `inflated_method_count', `inflated_type_count' and
11125         `generics_metadata_size'.       
11126
11127 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11128
11129         * reflection.c: no warnings now.
11130
11131 2004-03-25  Martin Baulig  <martin@ximian.com>
11132
11133         * class.c (mono_class_get_full): New public function; does a
11134         mono_class_get(), but also takes a `MonoGenericContext *'.
11135
11136         * loader.c (mono_field_from_memberref): Renamed to
11137         `field_from_memberref', made static and added `MonoGenericContext *'
11138         argument.
11139         (mono_field_from_token): Added `MonoGenericInst *' argument.
11140         (method_from_memberef): Likewise.
11141         (mono_get_method_from_token): Likewise.
11142         (mono_get_method_full): New public function; does a
11143         mono_get_method(), but also takes a `MonoGenericContext *'.
11144
11145         * verify.c (mono_method_verify): Get the method's generic context
11146         and pass it to mono_field_from_token(), mono_get_method_full() and
11147         mono_class_get_full().
11148
11149 2004-03-25  Martin Baulig  <martin@ximian.com>
11150
11151         * class.c (mono_class_inflate_generic_type): Take a
11152         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
11153         `MonoGenericMethod *'.
11154
11155 2004-03-25  Martin Baulig  <martin@ximian.com>
11156
11157         * loader.h (MonoMethodInflated): Store the MonoGenericContext
11158         instead of the MonoGenericMethod here.
11159
11160 2004-03-25  Martin Baulig  <martin@ximian.com>
11161
11162         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
11163         each time we create a new MonoGenericInst, we also create a new
11164         context which points back to us.
11165
11166         * class.c (inflate_method): Use `ginst->context' instead of
11167         creating a new context.
11168
11169         * loader.c (method_from_memberref): Use
11170         `klass->generic_inst->context' instead of creating a new context.
11171
11172 2004-03-25  Martin Baulig  <martin@ximian.com>
11173
11174         * class.h (MonoGenericContext): New struct.
11175         (MonoGenericMethod): Removed `generic_inst'.
11176
11177         * class.c (mono_class_inflate_generic_method): Take a
11178         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
11179
11180 2004-03-25  Martin Baulig  <martin@ximian.com>
11181
11182         * loader.h (MonoMethodInflated): New typedef.
11183
11184         * metadata.h (MonoMethodSignature): Removed `gen_method', make
11185         `generic_param_count' consume just 30 bits, added `is_inflated'
11186         and `has_type_parameters' flags (one bit each).
11187
11188         * class.c (mono_class_inflate_generic_method): Create a
11189         MonoMethodInflated instead of a MonoMethodNormal and set
11190         `is_inflated' in the method signature.
11191
11192         * class.h (MonoGenericMethod): Removed `generic_method'.
11193
11194 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
11195
11196         * image.c: Make sure the name of a MonoImage is always an absolute path.
11197           This fixes bug #54415.
11198
11199 2004-03-24  Martin Baulig  <martin@ximian.com>
11200
11201         * class.c (mono_class_setup_vtable): If we're a generic instance,
11202         use our generic type's vtable size.
11203
11204 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
11205
11206         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
11207         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
11208         problems.
11209
11210 2004-03-23  Martin Baulig  <martin@ximian.com>
11211
11212         * class.h (MonoDynamicGenericInst): Added `int count_events' and
11213         `MonoEvent *events'.
11214
11215         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
11216         (typebuilder_icalls): Added "get_event_info"; calls
11217         mono_reflection_event_builder_get_event_info(). 
11218
11219         * reflection.c (mono_reflection_generic_inst_initialize): Added
11220         `MonoArray *events'.
11221         (mono_reflection_event_builder_get_event_info): New function.
11222
11223 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
11224
11225         * object.h: add mono_type_initialization_init
11226
11227         * object.c (mono_runtime_class_init): 
11228         implement class constructor synchronization rules
11229         to cope with threading issues.  
11230         add mono_type_initialization_init
11231
11232         * appdomain.c (mono_runtime_init): call 
11233         mono_type_initialization_init
11234
11235         * class.h: removing initializing field from MonoVTable
11236
11237 2004-03-23  Martin Baulig  <martin@ximian.com>
11238
11239         * class.c (my_mono_class_from_generic_parameter): Use
11240         `param->name' if it's not NULL. 
11241
11242 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
11243
11244         * class.c: do not insert non-virtual methods in the vtable.
11245         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
11246         that means the method is non-virtual. This never would have
11247         happened before.
11248
11249 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
11250
11251         * profiler.c: Added lock for accessing coverage_hash.
11252
11253 2004-03-22  Martin Baulig  <martin@ximian.com>
11254
11255         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
11256         `method->method->signature->generic_param_count != 0' to make it
11257         work for interface methods.
11258
11259 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11260
11261         * process.c: quote the string passed to the shell using g_shell_quote.
11262
11263 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11264
11265         * threads.c:
11266         (mono_threads_manage): don't remove the finalizer thread and self
11267         from the threads hash table so that mono_thread_manage can be called
11268         more than once.
11269
11270 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11271
11272         * process.c: quote the arguments when UseShellExecute is true. Fixes
11273         bug #55790.
11274
11275 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11276
11277         * threads.c: set mono_thread_detach as a cleanup routine for every
11278         thread. This way it's always executed upon thread termination, either
11279         aborted or finished normally. No more xsp hangs!
11280
11281 2004-03-17  Martin Baulig  <martin@ximian.com>
11282
11283         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
11284         `int count_nested' and a `MonoType **nested'.
11285
11286         * reflection.c (mono_reflection_bind_generic_parameters): Moved
11287         most of the functionality into a new static
11288         do_mono_reflection_bind_generic_parameters() and don't take a
11289         `MonoType *nested_in' argument any more.  Don't compute nested
11290         types here.
11291         (mono_reflection_generic_inst_get_nested_types): New public method
11292         to get nested types.
11293
11294         * class.c (mono_class_create_generic): Set `klass->nested_in' if
11295         we're a nested class.
11296
11297         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
11298         mono_reflection_generic_inst_get_nested_types() to compute the
11299         nested types.
11300
11301 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
11302
11303         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
11304         descriptive error message under windows.
11305         
11306 2004-03-17  Martin Baulig  <martin@ximian.com>
11307
11308         * class.c (dup_type): Added `const MonoType *original' argument;
11309         copy the attrs from the original type.
11310
11311 2004-03-17  Martin Baulig  <martin@ximian.com>
11312
11313         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
11314         `m->generic_inst_cache' here.
11315
11316 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
11317
11318         * exception.h exception.c: Add stack_overflow_exception.
11319
11320 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11321
11322         * threadpool.c:
11323         (overlapped_callback): call SetEvent *after* invoking the callback.
11324         No need to call CloseHandle.
11325
11326 2004-03-16  Martin Baulig  <martin@ximian.com>
11327
11328         * reflection.c (mono_image_get_fieldref_token): Take a
11329         `MonoReflectionField *' instead of a `MonoClassField *' and a
11330         `MonoClass *'; store the `MonoReflectionField *' in the hash.
11331
11332 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11333
11334         * appdomain.c: don't add the culture to the filename we're looking for
11335         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
11336
11337 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11338
11339         * locales.c: don't ignore symbols when doing case insensitive compares.
11340         Thanks Dick! Fixes bug #54046.
11341
11342         * threads.c: surround 'threads' usage with enter/leave in
11343         mono_thread_manage.
11344
11345 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
11346
11347         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
11348         implicitly marshalled as [Out]. Fixes #55450.
11349
11350         (mono_marshal_get_runtime_invoke): Zero out the result if there is
11351         an exception.
11352
11353 2004-03-16  Martin Baulig  <martin@ximian.com>
11354
11355         * class.c (mono_class_from_generic_parameter): Use the actual
11356         parameter name. 
11357
11358 2004-03-16  Martin Baulig  <martin@ximian.com>
11359
11360         * reflection.c (type_get_signature_size): New static function.
11361         Compues the size of the type in a method signature.
11362         (method_get_signature_size): New static function; calls
11363         type_get_signature_size() to compute the actual size of the
11364         method's signature.
11365         (method_encode_signature): Use method_get_signature_size() to get
11366         the signature's size rather than using `nparams * 10'.
11367
11368 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11369
11370         * file-io.h: define here WapiOverlapped on windows. I don't want the
11371         regular OVERLAPPED one.
11372
11373         * file-io.c:
11374         * threadpool.c: somehow, BindIoCompletionCallback is not found.
11375         Disabling AIO on windows.
11376
11377 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11378
11379         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
11380         bug #55385.
11381
11382 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11383
11384         * appdomain.c: upgraded corlib version.
11385
11386         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
11387         and BeginWrite. Allow opening files for asynchrnous operations.
11388
11389         * file-io.h: new struct that maps FileStreamAsyncResult.
11390         * icall.c: added new icalls.
11391         * process.[ch]: support setting child process environment variables
11392         and use the SHELL or COMSPEC when UseShellExecute is true.
11393
11394         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
11395         callback for async. IO is here and also BindHandle.
11396
11397         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
11398         from here.
11399
11400 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
11401
11402         * reflection.c (create_custom_attr): Allow len == 0.
11403
11404         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
11405         computation on big-endian machines.
11406
11407 2004-03-13  Martin Baulig  <martin@ximian.com>
11408
11409         * class.h (MonoGenericInst): Added `int count_ifaces'.
11410
11411         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
11412         `ginst->count_ifaces' instead `klass->interface_count' since we
11413         may get called before the vtable is created.
11414
11415         * loader.c (mono_method_get_param_names): If we're a generic
11416         instance, return and don't initialize the class.
11417
11418         * reflection.c (mono_reflection_setup_generic_class): Don't call
11419         ensure_runtime_vtable().
11420         (mono_reflection_bind_generic_parameters): Set
11421         `ginst->count_ifaces'.
11422
11423 2004-03-11  Jackson Harper <jackson@ximian.com>
11424
11425         * icall.c:
11426         * unicode.c:
11427         * unicode.h: Remove unused System.Char icalls.
11428         
11429 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
11430
11431         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
11432         code when we P/Invoke the first library in Windows.Forms, instead
11433         of when we first open the assembly.
11434
11435         * assembly.c: Drop the lookup from here.
11436
11437 2004-03-10  Martin Baulig  <martin@ximian.com>
11438
11439         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
11440         class for properties, fields and events.  Finally fixes #54945.
11441
11442 2004-03-10  Martin Baulig  <martin@ximian.com>
11443
11444         * metadata.c (mono_metadata_class_equal): New static function;
11445         checks whether two generic instances or two generic parameters are
11446         equal.
11447         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
11448         compare classes.        
11449
11450 2004-03-10  Martin Baulig  <martin@ximian.com>
11451
11452         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
11453
11454         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
11455         argument and write it into the `reflection_info' field.
11456
11457         * icall.c
11458         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
11459         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
11460
11461 2004-03-09  Jackson Harper  <jackson@ximian.com>
11462
11463         * char-conversions.h: use 8 bits for numeric data its all we need
11464         * icall.c: numeric data is only 8 bits now.
11465
11466 2004-03-09  Martin Baulig  <martin@ximian.com>
11467
11468         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
11469
11470         * class.c (init_properties, init_events): Initialize the new
11471         `parent' field.
11472
11473         * reflection.c (typebuilder_setup_properties): Likewise.
11474         (typebuilder_setup_events): Likewise.
11475
11476         * reflection.h (MonoEventInfo): Replaced `parent with
11477         `declaring_type' and `reflected_type'.
11478
11479         * icall.c (ves_icall_get_property_info): Distinguish between
11480         declaring and reflected type.
11481         (ves_icall_get_event_info): Likewise.
11482
11483 2004-03-09  Martin Baulig  <martin@ximian.com>
11484
11485         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
11486         (ves_icall_Type_GetField): Correctly set field->klass.
11487
11488 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
11489
11490         * loader.h: Fix warning.
11491
11492 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
11493
11494         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
11495         library routine if present.  Notice that it will still continue
11496         executing even if its missing, for those working on the Gtk#
11497         edition of Windows.Forms.
11498
11499         * assembly.c (do_mono_assembly_open): If loading the
11500         System.Windows.Forms call mono_loader_wini_init.
11501
11502 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
11503
11504         * class.h: Added MonoRemoteClass struct.
11505         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
11506         function for MonoStrings.
11507         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
11508         Added internal call for getting the proxy type.
11509         * marshal.c: Get the type of transparent proxies from its remote_class.
11510         Added methods that generate the IL for type checks and casts:
11511         mono_marshal_get_isinst, mono_marshal_get_castclass, 
11512         mono_marshal_get_proxy_cancast.
11513         * marshal.h: Declaration of the previous new methods.
11514         * object.c: Added new moethods for creating and updating MonoRemoteClass
11515         instances: mono_remote_class, mono_upgrade_remote_class, 
11516         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
11517         * verify.c: FIx transparent_proxy_fields layout.
11518         * appdomain.c: Bump corlib version.
11519
11520 2004-03-04  Jackson Harper  <jackson@ximian.com>
11521
11522         * icall.c: Add icall to access char conversion tables.
11523         * char-conversions.h: Character conversion tables.
11524         * Makefile.am: Add char-conversions.h private header file.
11525         
11526 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
11527
11528         * appdomain.c (unload_thread_main): Increase unloading timeout to
11529         10 sec as a temporary workaround for Nant problems.
11530
11531 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
11532
11533         * gc.c: Add checks for GC_enable and GC_disable.
11534
11535         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
11536         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
11537         (bug #54988).
11538         
11539 2004-02-27  Martin Baulig  <martin@ximian.com>
11540
11541         * reflection.c (mono_reflection_bind_generic_parameters): Take a
11542         `MonoReflectionType *' instead of a `MonoType *'.
11543
11544 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
11545
11546         * gc.c (run_finalize): Avoid finalizing the object representing the
11547         finalizer thread.
11548         (finalizer_thread): Fix warning.
11549
11550 2004-02-25  Martin Baulig  <martin@ximian.com>
11551
11552         * class.c (_mono_class_get_instantiation_name): Added `int offset'
11553         argument for nested types.
11554         (mono_class_create_generic): Added support for nested generictypes.
11555
11556         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
11557         `GList *nested'.
11558
11559         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
11560
11561         * reflection.c (method_encode_signature): Increase the minimum
11562         value of `size' from 10 to 11.
11563         (mono_reflection_bind_generic_parameters): Take `int type_argc'
11564         and `MonoType **types' arguments instead of the `MonoArray
11565         *types'; added `MonoType *nested_in'.  Recursively instantiate
11566         nested classes. 
11567
11568 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
11569
11570         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
11571         stack_overflow_ex members which are used by exception handling.
11572
11573         * appdomain.c (mono_runtime_init): Initialize the new members.
11574
11575         * gc.c (mono_gc_enable): New helper function.
11576         * gc.c (mono_gc_disable): New helper function.
11577
11578 2004-02-23  Martin Baulig  <martin@ximian.com>
11579
11580         * icall.c: I must have been really stupid - make it actually work
11581         this time ;-)
11582
11583 2004-02-23  Martin Baulig  <martin@ximian.com>
11584
11585         * loader.c (method_from_memberref): Only inflate the method if
11586         it's in another klass.
11587
11588 2004-02-23  Martin Baulig  <martin@ximian.com>
11589
11590         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
11591         (mono_class_init): If we're a generic instance and an interface,
11592         compute `class->interface_id'; also create `class->interfaces'
11593         here and inflate them.
11594
11595         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
11596         `ginst->is_open'.
11597         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
11598
11599         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
11600
11601 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
11602
11603         * reflection.c (method_encode_code): Improved the error message
11604         generated by the exception.
11605
11606 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11607
11608         * icall.c: Martin did not do what he said in the ChangeLog for
11609         2004-02-18, but put back the changes for properties and events.
11610         Commenting those changes out again and adding comment to bug #54518.
11611         
11612         * process.c: removed warning.
11613
11614 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
11615
11616         * marshal.c (emit_struct_conv): Print an error message instead of
11617         asserting when a type does not have the StructLayout attribute.
11618
11619 2004-02-20  Martin Baulig  <martin@ximian.com>
11620
11621         * reflection.c (mono_type_get_object): Also use the cache for
11622         generic instances.
11623         (mono_reflection_bind_generic_parameters): Always compute
11624         `ginst->ifaces'.        
11625
11626 2004-02-20  Martin Baulig  <martin@ximian.com>
11627
11628         * class.h (MonoGenericMethod): Removed `klass'.
11629
11630         * class.c (mono_class_inflate_generic_method): Added `MonoClass
11631         *klass' argument.
11632
11633 2004-02-20  Martin Baulig  <martin@ximian.com>
11634
11635         * reflection.c (method_encode_methodspec): Actually use the
11636         uninflated signature for the memberref.
11637
11638 2004-02-20  Martin Baulig  <martin@ximian.com>
11639
11640         * class.h (MonoGenericMethod): Removed `declaring'.
11641
11642         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
11643         is NULL, compute it here.
11644
11645 2004-02-20  Martin Baulig  <martin@ximian.com>
11646
11647         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
11648
11649         * metadata.c (mono_metadata_generic_inst_hash): New method.
11650         (mono_metadata_generic_inst_equal): New method.
11651
11652         * reflection.c (mono_reflection_bind_generic_parameters): Use the
11653         `klass->image->generic_inst_cache' cache to avoid creating
11654         duplicate MonoGenericInst's.
11655
11656         * class.c (mono_class_inflate_generic_type): Use the cache.
11657
11658 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
11659
11660         * object.c: fixed gc descriptor calculation for embedded valuetypes.
11661
11662 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11663
11664         * icall.c: added Socket.WSAIoctl icall.
11665
11666         * socket-io.[ch]: implemented
11667         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
11668
11669 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
11670
11671         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
11672
11673 2004-02-18  Urs C Muff  <umuff@quark.com>
11674
11675         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
11676         this work on PPC and other big-endian architectures.
11677
11678         * debug-mono-symfile.h: Prepended the names of all the `guint32'
11679         fields with an underscore to make sure they're only accessed by
11680         the read32() macro.
11681
11682 2004-02-18  Martin Baulig  <martin@ximian.com>
11683
11684         * icall.c: Put the klass->refclass changes back for methods and
11685         fields, but not for properties and events.  We're currently not
11686         distinguishing between DeclaringType and ReflectedType for
11687         properties and events, that's what caused the regressions.
11688
11689 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11690
11691         * object.c:
11692         (mono_async_result_new): the handle can be NULL.
11693
11694         * threadpool.c: Use an event instead of a semaphore, don't initialize
11695         it until needed. This saves quite a few semaphores from being created
11696         when using the threadpool.
11697
11698 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
11699
11700         * object.c (mono_string_is_interned_lookup): Fix interning of long
11701         strings. Fixes #54473.
11702
11703         * domain.c (ldstr_equal): Optimize if the two strings are equal.
11704
11705         * icall.c: Revert the klass->refclass changes since they introduce
11706         regressions (bug #54518).
11707
11708 2004-02-18  Martin Baulig  <martin@ximian.com>
11709
11710         * class.c (mono_class_init): If we're a generic instance and don't
11711         come from a TypeBuilder, inflate our members here.
11712         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
11713         (mono_class_create_generic): New public method.
11714         (mono_class_initialize_generic): Removed.
11715         (get_instantiation_name): Renamed to
11716         _mono_class_get_instantiation_name() and made it public.
11717
11718 2004-02-18  Martin Baulig  <martin@ximian.com>
11719
11720         * class.c (mono_class_inflate_generic_type): Clear the new
11721         instance's `nginst->klass' when inflating a generic instance.
11722         (mono_class_is_subclass_of): Added (basic) support for generic
11723         instances.
11724
11725 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
11726
11727         * appdomain.h, domain.c: use a MonoCodeManager instead of a
11728         MonoMempool to hold compiled native code.
11729
11730 2004-02-17  Martin Baulig  <martin@ximian.com>
11731
11732         * class.h (MonoDynamicGenericInst): Added `count_properties' and
11733         `properties'.
11734
11735         * reflection.c (mono_reflection_generic_inst_initialize): Added
11736         `MonoArray *properties' argument.
11737
11738         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
11739
11740 2004-02-17  Martin Baulig  <martin@ximian.com>
11741
11742         * icall.c (ves_icall_Type_GetFields): Renamed to
11743         ves_icall_Type_GetFields_internal() and added a
11744         `MonoReflectionType *rtype' argument; pass it to
11745         mono_field_get_object() to set the field's "reflected" type.
11746         (ves_icall_Type_GetConstructors): Likewise.
11747         (ves_icall_Type_GetEvents): Likewise.
11748         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
11749         argument; pass it to mono_method_get_object() to set the method's
11750         "reflected" type.       
11751
11752 2004-02-17  Martin Baulig  <martin@ximian.com>
11753
11754         * class.h (MonoDynamicGenericInst): New type.
11755         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
11756
11757         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
11758         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
11759         (ves_icall_MonoGenericInst_GetFields): New interncall.
11760
11761         * class.c (mono_class_from_generic): Don't call
11762         mono_class_initialize_generic() if this is a dynamic instance;
11763         ie. it's being created from a TypeBuilder.
11764         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
11765         `class->byval_arg.type'.
11766
11767         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
11768         to `inflate_method' and made static.
11769         (mono_reflection_inflate_field): Removed.
11770         (mono_reflection_generic_inst_initialize): New public method.
11771
11772         * reflection.h (MonoReflectionGenericInst): Removed `methods',
11773         `ctors' and `fields'; added `initialized'.
11774
11775 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
11776
11777         * debug-helpers.c (mono_method_full_name): Fix output for empty
11778         namespaces.
11779
11780 2004-02-12  Martin Baulig  <martin@ximian.com>
11781
11782         * class.h (MonoClassField): Added `MonoType *generic_type'.
11783
11784         * reflection.c (mono_image_get_fieldref_token): Added support for
11785         instantiated generic types.
11786         (field_encode_inflated_field): Removed.
11787         (mono_image_get_inflated_field_token): Removed.
11788         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
11789
11790         * reflection.h (MonoReflectionInflatedField): Removed.
11791
11792 2004-02-12  Martin Baulig  <martin@ximian.com>
11793
11794         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
11795         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
11796
11797         * reflection.c (mono_image_get_methodspec_token): Take a
11798         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
11799         (mono_image_create_token): Check whether we have a
11800         `method->signature->gen_method' and call
11801         mono_image_get_methodspec_token() if appropriate.
11802         (inflated_method_get_object): Removed.
11803         (mono_reflection_bind_generic_method_parameters): Return a
11804         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
11805         (mono_reflection_inflate_method_or_ctor): Likewise.
11806
11807         * reflection.h (MonoReflectionInflatedMethod): Removed.
11808
11809 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
11810
11811         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
11812         for custom valuetype marshalling.
11813
11814         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
11815
11816 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11817
11818         * icall.c: fixed WSAGetLastError_internal name.
11819
11820 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
11821
11822         * threads.c (mono_thread_attach): Allow this to be called multiple
11823         times for a thread.
11824         
11825         * threads.c (build_wait_tids): Do not wait for ourselves.
11826
11827         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
11828         appdomain list is empty.
11829
11830         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
11831         memory returned by mono_string_builder_to_utf16, since it points into
11832         managed memory. Thanks to Bernie Solomon for noticing this.
11833
11834         * icall.c: Add AppDomainSetup icalls.
11835
11836         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
11837
11838         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
11839         types.
11840
11841         * reflection.c (reflection_methodbuilder_to_mono_method): Save
11842         custom attributes to the method_aux struct. Also fix array indexes etc.
11843
11844         * loader.c (mono_method_get_param_names): Make dynamic case work again.
11845         
11846 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
11847
11848         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
11849         (both static and runtime) and reduce startup time.
11850
11851 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
11852
11853         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
11854         AsAny marshalling conversion instead of crashing.
11855
11856         * marshal.c: Fix warnings.
11857
11858 2004-02-09  Martin Baulig  <martin@ximian.com>
11859
11860         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
11861
11862         * reflection.h (MonoReflectionInflatedMethod): Removed the
11863         `declaring' field, it's now in the unmanaged MonoGenericMethod.
11864
11865         * reflection.c (method_encode_methodspec): Removed the `method'
11866         argument; we get it from `gmethod->declaring'.
11867         (inflated_method_get_object): Removed the `declaring' argument.
11868
11869 2004-02-09  Martin Baulig  <martin@ximian.com>
11870
11871         * class.h (MonoGenericMethod): New type.
11872         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
11873         `generic_method'.
11874
11875         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
11876         a `MonoGenericMethod *gen_method' one.
11877
11878         * class.c (mono_class_inflate_generic_type): Take an additional
11879         `MonoGenericMethod * argument.  This is only non-NULL if we're
11880         inflating types for a generic method.   
11881         (mono_class_inflate_generic_signature): Renamed to
11882         inflate_generic_signature() and made static; take a
11883         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
11884         (inflate_generic_header): Take a `MonoGenericMethod *' argument
11885         instead of a `MonoGenericInst *' one.
11886         (mono_class_inflate_generic_method): Likewise.
11887
11888         * reflection.c (encode_generic_method_sig): Take a
11889         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
11890         (method_encode_methodspec): Likewise.
11891         (inflated_method_get_object): Likewise. 
11892
11893         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
11894         field with a `MonoGenericMethod *gmethod' one.  
11895
11896 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
11897
11898         * class.h (mono_class_has_parent): add parens to expansion
11899         so you can ! this.
11900
11901 2004-02-08  Martin Baulig  <martin@ximian.com>
11902
11903         * image.h (MonoImage): Removed `generics_cache'.
11904
11905         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
11906         instead of a `MonoType *' argument; removed the `inflate_methods'
11907         argument.  Don't inflate methods here.
11908
11909         * loader.c (find_method): If it's a generic instance, call
11910         mono_class_init() on the `sclass->generic_inst->generic_type'.
11911
11912         * metadata.c (mono_type_size): Make this work on uninitialized
11913         generic instances; call it on the `ginst->generic_type's class.
11914
11915         * reflection.c (mono_reflection_bind_generic_parameters): Call
11916         mono_class_from_generic() to create the `ginst->klass'.
11917
11918 2004-02-08  Martin Baulig  <martin@ximian.com>
11919
11920         * class.h (MonoClass): Changed type of `generic_inst' from
11921         `MonoType *' to `MonoGenericInst *'.
11922
11923 2004-02-08  Martin Baulig  <martin@ximian.com>
11924
11925         * icall.c (ves_icall_Type_BindGenericParameters): Just call
11926         mono_type_get_object(), this is now creating a `MonoGenericInst'
11927         for MONO_TYPE_GENERICINST.
11928         (ves_icall_MonoGenericInst_GetParentType): Likewise.
11929         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
11930
11931         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
11932         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
11933         (inflated_method_get_object): Added `MonoClass *refclass' argument.
11934         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
11935         and reflected type.
11936
11937         * reflection.h (MonoReflectionInflatedMethod): Removed
11938         `declaring_type' and `reflected_type'.
11939
11940 2004-02-08  Martin Baulig  <martin@ximian.com>
11941
11942         * class.h (MonoGenericInst): Added `MonoType *parent' and
11943         `MonoType **ifaces'.
11944
11945         * reflection.h (MonoReflectionGenericInst): Removed `klass',
11946         `parent' and `interfaces'.
11947
11948         * reflection.c (mono_reflection_bind_generic_parameters): Take a
11949         `MonoType *' argument and return a `MonoType *'.
11950
11951         * icall.c
11952         (ves_icall_MonoGenericInst_GetParentType): New interncall.
11953         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
11954
11955 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
11956
11957         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
11958         valuetype marshalling.
11959
11960 2004-02-06  Martin Baulig  <martin@ximian.com>
11961
11962         * class.c
11963         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
11964         (my_mono_class_from_generic_parameter): Likewise.
11965
11966 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
11967
11968         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
11969         contents of the symbol files lazily.
11970
11971         * object.h (MonoThread): Add 'name' and 'name_len' fields.
11972
11973         * threads.h threads.c icall.c: New icalls for getting and setting the
11974         threads name.
11975
11976 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
11977
11978         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
11979         Raise an exception when the domain is not found.
11980
11981 2004-02-03  Martin Baulig  <martin@ximian.com>
11982
11983         * reflection.c (mono_image_get_methodspec_token): Use the
11984         uninflated signature; fixes gen-33.
11985
11986 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
11987
11988         * gc.c threads.c: Make the finalizer thread a normal managed thread so
11989         the finalizer code can use thread functionality.
11990
11991         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
11992         the finalizer thread.
11993
11994         * threads.c: Make some functions more robust.
11995
11996         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
11997
11998         * metadata.h: Add new marshalling conventions.
11999
12000         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
12001         stringbuilder marshalling. Fixes #53700.
12002
12003         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
12004
12005         * reflection.c (mono_image_get_type_info): Save declarative security
12006         info.
12007
12008         * reflection.c (mono_image_get_field_info): Handle uninitialized 
12009         unmanaged fields as well.
12010
12011         * appdomain.c: Bump corlib version.
12012
12013 2004-02-01  Martin Baulig  <martin@ximian.com>
12014
12015         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
12016         method type arguments.  
12017
12018 2004-01-30  Duncan Mak  <duncan@ximian.com>
12019
12020         * marshal.h: Add prototype for
12021         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
12022         and
12023         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
12024         fix the build.
12025
12026 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
12027
12028         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
12029         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
12030
12031 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12032
12033         * marshal.c (mono_marshal_get_native_wrapper): Add support for
12034         custom marshalling of valuetypes.
12035
12036         * marshal.c: Fix some warnings.
12037
12038 2004-01-29  Martin Baulig  <martin@ximian.com>
12039
12040         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
12041         for generic method parameters.
12042
12043         * reflection.c (method_encode_methodspec): Write the uninflated
12044         signature into the methodspec table.
12045         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
12046         is always the uninflated method.
12047         (reflection_methodbuilder_to_mono_method): Copy the generic
12048         parameters from the MethodBuilder into `header->gen_params'.
12049
12050 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12051
12052         * class.c (mono_class_from_generic_parameter): Fix warning.
12053
12054 2004-01-27  Martin Baulig  <martin@ximian.com>
12055
12056         * class.c (mono_class_from_generic_parameter): Don't create
12057         `klass->methods' here.  
12058
12059 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
12060
12061         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
12062         extension since it does not work with libraries named lib<FOO>.dll.so.
12063
12064 2004-01-25  Martin Baulig  <martin@ximian.com>
12065
12066         * class.c (mono_class_inflate_generic_type): Added support for
12067         MONO_TYPE_GENERICINST.
12068
12069         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
12070         inflate methods on open constructed types.      
12071
12072 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12073
12074         * object.c: fire ProcessExit event in the root AppDomain after running
12075         Main. Fixes bug #53299.
12076
12077 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
12078
12079         * socket-io.c: include the new socket-wrappers.h header.
12080         Use the wrappers instead of the unix socket functions to make the code
12081         more clear.
12082
12083 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
12084
12085         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
12086
12087         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
12088         Fixes #22532.
12089
12090 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
12091
12092         * reflection.c (mono_image_create_pefile): Handle the case when the
12093         entry point is not a MethodBuilder.
12094
12095         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12096         field to ReflectionMethod since it is not allways a builder.
12097
12098         * reflection.c (type_get_fully_qualified_name): New helper function to
12099         return the fully qualified name of a type.
12100
12101         * reflection.c (encode_marshal_blob): Always emit the fully qualified
12102         type name for custom marshallers.
12103
12104         * reflection.c (mono_marshal_spec_from_builder): Ditto.
12105
12106         * class.c (mono_class_setup_vtable): If a parent class already 
12107         implements an interface, use the implementing methods from that class.
12108         Fixes #53148.
12109
12110 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12111
12112         * threadpool.c: just return instead of ExitThread to allow for thread
12113         clean up earlier.
12114
12115 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
12116
12117         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
12118         when closing resource modules.
12119
12120         * reflection.c (mono_image_create_pefile): Handle the case when the
12121         entry point is not a MethodBuilder.
12122
12123         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12124         field to ReflectionMethod since it is not allways a builder.
12125
12126 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
12127
12128         * marshal.c (mono_marshal_get_managed_wrapper): 
12129         mono_marshal_alloc takes native int so CONV_I
12130         the arg for 64bits.
12131
12132 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
12133
12134         * reflection.c (fixup_cattrs): New function to fixup the methoddef
12135         tokens in the cattr table. Fixes #53108.
12136
12137 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12138
12139         * loader.c: don't trim ".dll" before looking up in the config file.
12140         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
12141
12142 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
12143
12144         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
12145         Return the module which contains the resource as well.
12146         (ves_icall_System_Reflection_Module_Close): New icall.
12147
12148         * appdomain.c: Bump corlib version number.
12149
12150         * image.c (mono_image_addref): New public function.
12151
12152         * assembly.c: Call mono_image_addref.
12153
12154         * reflection.c (mono_module_get_object): Increase reference count of 
12155         the image.
12156
12157         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
12158         Fixes #22532.
12159
12160         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
12161         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
12162         proper exceptions on DllImport problems.
12163
12164 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
12165
12166         * class.c, metadata.c: eliminate CSIZE macro.
12167
12168 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
12169
12170         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
12171         * object.h: Added async_callback field in MonoAsyncResult.
12172         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
12173         * verify.c: Added async_callback in MonoAsyncResult layout.
12174
12175 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
12176
12177         * reflection.c (mono_reflection_get_custom_attrs): Add support
12178         for Modules.
12179
12180 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
12181
12182         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
12183         marshalling.
12184         (mono_marshal_method_from_wrapper): Add null pointer check.
12185
12186 2004-01-16  Martin Baulig  <martin@ximian.com>
12187
12188         * debug-mono-symfile.h: Set version number to 36 and reflect
12189         latest symbol writer changes.
12190
12191 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
12192
12193         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
12194         multi-dimensional arrays.
12195         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
12196         (mono_class_from_mono_type): Use bounded_array_class_get.
12197         
12198         * class.c (mono_bounded_array_class_get): New function which takes
12199         a 'bounded' bool argument to distinguish vectors from one dimensional
12200         arrays.
12201
12202         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
12203         bounded_array_class_get if the array has bounds.
12204
12205         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
12206         Search modules loaded using AssemblyBuilder:AddModule as well.
12207
12208 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12209
12210         * appdomain.c: increased corlib version.
12211         * filewatcher.c: removed g_print.
12212         * icall.c:
12213         (get_property_info): only allocate what is actually requested.
12214         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
12215
12216 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12217
12218         * Makefile.am: added filewatcher.[ch]
12219         * filewatcher.[ch]: FileSystemWatcher runtime support.
12220         * icall.c: added new FSW icalls.
12221
12222 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
12223
12224         * string-icalls.c: fix stringbuilder regression as suggested by
12225         Iain McCoy <iain@mccoy.id.au>.
12226
12227 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
12228
12229         * process.c (process_read_stringtable_block): Recognize '007f' as
12230         a language neutral stringtable block.
12231
12232 2004-01-12  Patrik Torstensson
12233
12234         * object.h (MonoStringBuilder) : Changed layout to support our
12235         new stringbuilder class.
12236         * marshal.c: Change marshalling to support the new layout of 
12237         string builder.
12238         * appdomain.c: increased version number because new layout of
12239         string builder.
12240
12241 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
12242
12243         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
12244         assembly name as an string instead of an AssemblyName, since it is
12245         easier to extract info from it.
12246
12247         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
12248         the culture subdirectories too. Fixes #52231.
12249
12250 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12251
12252         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
12253         It takes 2 new parameters with an optional name for the method to look
12254         for and case ignoring info.
12255
12256         * threadpool.c: removed unused variable.
12257
12258 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12259
12260         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
12261         It takes 2 new parameters with an optional name for the property to look
12262         for and case ignoring info.
12263         Fixes bug #52753.
12264
12265 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
12266
12267         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
12268         Fix #52451.
12269
12270 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12271
12272         * appdomain.c:
12273         * assembly.c: escape the uri before passing it to g_filename_from_uri.
12274         Fixes bug #52630.
12275
12276 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
12277
12278         * reflection.c: Add support for more than one unmanaged resource.
12279
12280         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
12281         in field->def_value, as done in all other cases.
12282
12283         * reflection.c (mono_reflection_get_custom_attrs): Add support for
12284         TypeBuilders.
12285
12286         * reflection.c (mono_reflection_create_runtime_class): Remove 
12287         errorneous assignment to klass->element_class, since it is already
12288         done in mono_reflection_setup_internal_class.
12289
12290 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12291
12292         * gc.c: added missing LeaveCriticalSection.
12293         * icall.c: indented a couple of lines.
12294         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
12295         if we call EndInvoke inside a callback. Fixes bug #52601.
12296
12297 2004-01-07  Martin Baulig  <martin@ximian.com>
12298
12299         * mono-debug-debugger.h
12300         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
12301
12302 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
12303
12304         * appdomain.c: Use messages in NotImplementedException.
12305
12306         * exception.c (mono_get_exception_not_implemented): Now this takes
12307         a message argument.
12308
12309         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
12310         exception instead of g_asserting an aborting when something is not
12311         implemented.
12312
12313         Add some inline docs.
12314
12315 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
12316
12317         * reflection.h: Update after changes to object layout.
12318
12319         * reflection.c: Implement saving of unmanaged aka win32 resources.
12320
12321         * appdomain.c: Bump version number.
12322
12323         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
12324         Handle missing domains gracefully.
12325
12326 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
12327
12328         * file-io.c : On Windows, there are much more invalid_path_chars.
12329
12330 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
12331
12332         * class.h, object.c: prepare for GetType () speedup.
12333
12334 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
12335
12336         * profiler.c: workaround for --profile null reference exception on
12337           cygwin. Patch by Patrik Torstensson.
12338
12339 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
12340
12341         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
12342         make work for unaligned access.
12343
12344 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
12345
12346         * class.c: small cleanup (class->fields [i] -> field).
12347         * image.c: check address of metadata is valid.
12348
12349 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
12350
12351         * assembly.h assembly.c (mono_assembly_loaded): New public function to
12352         search the list of loaded assemblies.
12353
12354         * reflection.c (mono_reflection_type_from_name): Use 
12355         mono_assembly_loaded instead of mono_image_loaded.
12356
12357         * reflection.c: Fix warnings.
12358
12359 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
12360
12361         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
12362         is dynamic. This is needed since an assembly can contain both dynamic and
12363         non-dynamic images.
12364
12365         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
12366         assembly->dynamic.
12367
12368         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
12369
12370         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
12371         to store modules loaded using AddModule.
12372
12373         * reflection.c (mono_image_fill_file_table): Generalize this so it works
12374         on Modules.
12375
12376         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
12377
12378         * reflection.c (mono_image_fill_export_table_from_module): New function to
12379         fill out the EXPORTEDTYPES table from a module.
12380
12381         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
12382         into a separate function. Also handle loaded non-dynamic modules.
12383
12384         * reflection.c (mono_image_basic_init): Fix memory allocation.
12385
12386         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12387
12388         * assembly.c (mono_assembly_load_references): Make this public.
12389
12390 2003-12-19  Martin Baulig  <martin@ximian.com>
12391
12392         * class.c (mono_class_initialize_generic): Made this static, take
12393         a `MonoGenericInst *' instead of a `MonoClass *'.
12394         (mono_class_from_generic): Call mono_class_initialize_generic()
12395         unless we're already initialized or being called from
12396         do_mono_metadata_parse_generic_inst().
12397
12398         * class.h (MonoGenericInst): Added `initialized' and
12399         `init_pending' flags.
12400
12401         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
12402         `mono_class_init (gklass)' or mono_class_initialize_generic()
12403         here; set `generic_inst->init_pending' while parsing the
12404         `type_argv'.
12405
12406 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
12407
12408         * locales.c: include string.h for memxxx prototypes
12409
12410 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
12411
12412         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
12413         constructor when accessing literal fields.
12414
12415 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
12416
12417         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12418
12419         * reflection.c (assembly_add_resource_manifest): New function to fill
12420         the MANIFESTRESOURCE table.
12421
12422         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
12423
12424         * reflection.h: Update to changes in class layout.
12425
12426         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
12427         Reenable call to mono_runtime_is_shutting_down ().
12428
12429         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
12430         determine if the runtime is shutting down.
12431
12432 2003-12-16  Jackson Harper <jackson@ximian.com>
12433
12434         * icall.c: comment out call to mono_runtime_is_shutting_down to
12435         fix build.
12436         
12437 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
12438
12439         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
12440         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
12441
12442 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
12443
12444         * reflection.c: move definition of swap_with_size
12445         to before its first call
12446
12447 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
12448
12449         * appdomain.c (mono_runtime_is_shutting_down): New public function.
12450
12451         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
12452         icall.
12453
12454         * object.c: Fix warnings.
12455
12456         * icall.c (ves_icall_Type_Get...): Only consider inherited static
12457         members if FlattenHierarchy is set.
12458
12459         * reflection.c (mono_image_add_decl_security): New function to emit
12460         declarative security.
12461
12462         * reflection.h reflection.c: Add support for declarative security.
12463
12464         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
12465         
12466 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
12467
12468         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
12469         
12470         * appdomain.c verify.c: Moved corlib version checking into its own
12471         function in appdomain.c since it needs to create vtables etc.
12472
12473 2003-12-13  Patrik Torstensson <p@rxc.se>
12474
12475         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
12476         instead of unwrapped server.
12477
12478 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
12479
12480         * verify.c (check_corlib): Fix field index.
12481
12482 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
12483
12484         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
12485         GetGacPath icall.
12486
12487 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
12488
12489         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
12490         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
12491         cope with sizeof(size_t) != sizeof(guint32).
12492
12493 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12494
12495         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
12496         in case of failure.
12497
12498 2003-12-10  Mark Crichton <crichton@gimp.org>
12499
12500         * icall.c: removed the GetNonZeroBytes.  We now handle this case
12501         in managed code.
12502
12503         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
12504
12505 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
12506
12507         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
12508         marked as deleted.
12509
12510 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
12511
12512         * verify.c (check_corlib): Handle the case when the version field is 
12513         initialized by a static constructor.
12514
12515 2003-12-08  Patrik Torstensson  <p@rxc.se>
12516
12517     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
12518
12519 2003-12-08  Martin Baulig  <martin@ximian.com>
12520
12521         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
12522         a MonoReflectionGenericParameter, also take the parameter index
12523         and name as arguments.
12524         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
12525         (ves_icall_MonoGenericParam_initialize): New interncall.
12526         (ves_icall_Type_make_byref_type): New interncall.
12527
12528         * reflection.h (MonoReflectionGenericParam): Derive from
12529         MonoReflectionType, not just from MonoObject.  Added `refobj' and
12530         `index' fields.
12531
12532         * reflection.c (mono_reflection_define_generic_parameter): Create
12533         and return a new MonoReflectionGenericParam; don't initialize the
12534         constraints here.
12535         (mono_reflection_initialize_generic_parameter): New public method;
12536         initializes the constraints and creates the `param->pklass'.
12537
12538 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
12539
12540         * reflection.h reflection.c: Use the new fields 'num_types', 
12541         'num_fields' and 'num_methods' to track the number of types etc.
12542
12543         * verify.c (check_corlib): Check corlib version number.
12544
12545 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
12546
12547         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
12548         function works on all methods.
12549
12550 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
12551
12552         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
12553         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
12554         the custom_type_info flag of the transparent proxy.
12555         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
12556         objects that supports IRemotingTypeInfo.
12557         * object.h: Added custom_type_info field in transparent proxy.
12558
12559 2003-12-06  Martin Baulig  <martin@ximian.com>
12560
12561         * class.c (mono_class_create_from_generic): Removed.
12562         (mono_class_from_generic): Check `ginst->klass' before doing
12563         anything else.  This is important to fully support "recursive"
12564         generic types.
12565
12566         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
12567         empty `generic_inst->klass' before doing anything else.
12568
12569 2003-12-06  Dick Porter  <dick@ximian.com>
12570
12571         * verify.c: 
12572         * object.h:
12573         * icall.c:
12574         * locales.c: Use C structs to access class fields.  Don't do a
12575         conversion between MonoString and UChar because both are
12576         platform-endian UTF-16.  Compare now takes startindex and count
12577         parameters.  Add a char overload for IndexOf.  Speed up the
12578         invariant string IndexOf.
12579
12580 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
12581
12582         * Makefile.am (monosn_LDADD): Fix parallel build.
12583
12584 2003-12-04  Martin Baulig  <martin@ximian.com>
12585
12586         * icall.c
12587         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
12588         (ves_icall_Type_make_array_type): New interncall.       
12589
12590 2003-12-04  Martin Baulig  <martin@ximian.com>
12591
12592         * locales.c: also change it in the !HAVE_ICU case.
12593
12594 2003-12-04  Dick Porter  <dick@ximian.com>
12595
12596         * icall.c:
12597         * locales.c: construct_compareinfo is now in CompareInfo, not
12598         CultureInfo.
12599
12600 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
12601
12602         * image.c (mono_image_load_file_for_image): Cache loaded images in the
12603         image->files array.
12604
12605         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
12606         table as well.
12607
12608         * assembly.c (mono_assembly_load_references): Only load references
12609         once.
12610
12611         * class.c (mono_class_from_name): Avoid linear search of the 
12612         EXPORTEDTYPE table.
12613
12614         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
12615
12616 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
12617
12618         * image.h (MonoImage): Add 'field_cache' field.
12619
12620         * loader.c (mono_field_from_token): Cache field lookups.
12621         
12622         * reflection.c (mono_module_get_object): Fix name property.
12623
12624         * icall.c (ves_icall_get_enum_info): Update after changes to 
12625         mono_metadata_get_constant_index ().
12626
12627         * icall.c: Get rid of get_type_info icall, use a separate icall for
12628         each type property to avoid needless memory allocations. Fixes #51514.
12629
12630         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
12631         to avoid needless binary searches.
12632
12633         * class.c (class_compute_field_layout): Move the initialization of
12634         field->def_value to mono_class_vtable ().
12635
12636         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
12637         non-corlib types.
12638
12639         * object.c (mono_object_allocate): Make it inline.
12640
12641         * object.c (mono_object_allocate_spec): Make it inline.
12642         
12643 2003-12-02  Dick Porter  <dick@ximian.com>
12644
12645         * locales.c (create_NumberFormat): NumberFormatInfo construction.
12646         Patch by Mohammad DAMT (mdamt@cdl2000.com).
12647
12648 2003-12-01  Dick Porter  <dick@ximian.com>
12649
12650         * threads.c: Fix signature and call in CreateMutex and
12651         CreateEvent.
12652
12653 2003-12-01  Dick Porter  <dick@ximian.com>
12654
12655         * icall.c: 
12656         * locales.c: Implement string compares and searching
12657
12658         * object.h: Add extra Thread field
12659
12660 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
12661
12662         * reflection.c (fixup_method): Add support for MonoCMethod.
12663
12664 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
12665
12666         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
12667
12668         * reflection.c (assembly_name_to_aname): Allow extra characters in
12669         assembly names. Fixes #51468.
12670
12671 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
12672
12673         * exception.c (mono_exception_from_name_domain): New helper function.
12674
12675         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
12676         exception object in the correct domain.
12677
12678         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
12679         formatting + make a copy a the input data.
12680
12681         * loader.c (mono_get_method_from_token): Methods which contain
12682         native code do not have entries in the ImplMap.
12683
12684         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
12685         Thanks to Gonzalo for spotting this.
12686         
12687         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
12688         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
12689
12690         * assembly.h (mono_assembly_load_from): Split the second part of 
12691         assembly loading into a new public function.
12692
12693         * exception.h (mono_get_exception_bad_image_format): New function.
12694
12695 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
12696
12697         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
12698         Enumerate all modules inside a dynamic assembly. Fixes #51293.
12699         
12700         * icall.c: Add new icall for creating dynamic methods.
12701
12702         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
12703
12704         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
12705
12706         * reflection.c (mono_reflection_create_dynamic_method): New icall to
12707         create a dynamic method.
12708
12709         * reflection.c (resolve_object): New helper function.
12710
12711         * reflection.c: Generalize ReflectionMethodBuilder and the functions
12712         which manipulate it so they can also work on dynamic methods.
12713
12714         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
12715         creating the MonoReflectionMethodAux structure if it is not needed.
12716         
12717         * reflection.h verify.c: Update after changes to object layout.
12718
12719         * reflection.c (method_builder_encode_signature): Fix compilation on
12720         gcc 2.95.x.
12721
12722 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
12723
12724         * appdomain.h: Added support for context static fields. Added static_data
12725           field to MonoAppContext and renamed thread_static_fields to a more
12726           generic special_static_fields in MonoAppDomain, since it can now contain
12727           context static fields.
12728         * domain.c: Updated hashtable name.
12729         * object.c: Replaced field_is_thread_static() for a more generic
12730           field_is_special_static() which also checks for context static attribute.
12731           In mono_class_vtable(), added support for static context fields.
12732         * threads.c: Changed methods that manage thread static fields to more
12733           generic methods so they can be reused both for thread and context static
12734           data.
12735         * threads.h: Declared some new methods.
12736
12737 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
12738
12739         * reflection.h: Update after changes to the managed types.
12740
12741         * reflection.c (encode_custom_modifiers): New helper function.
12742
12743         * reflection.c (method_encode_signature): Emit custom modifiers.
12744
12745         * reflection.c (field_encode_signature): Emit custom modifiers.
12746
12747 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
12748
12749         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
12750
12751         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
12752         implementation.
12753
12754         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
12755         icall.
12756
12757         * object.c (mono_field_get_value_object): New function.
12758
12759         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
12760         specific.
12761
12762 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
12763
12764         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
12765         return a preallocated out-of-memory exception instance.
12766
12767         * object.c (out_of_memory): Use the new function.
12768
12769         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
12770         flag is before the custom modifiers. Fixes #49802.
12771
12772 2003-11-16  Martin Baulig  <martin@ximian.com>
12773
12774         * class.c (mono_class_is_open_constructed_type): Implemented the
12775         MONO_TYPE_GENERICINST case.
12776
12777 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
12778
12779         * assembly.c (mono_assembly_fill_assembly_name): New function to
12780         fill out the MonoAssemblyName structure.
12781         (mono_assembly_open): Use the new function.
12782
12783         * icall.c (fill_reflection_assembly_name): New helper function.
12784
12785         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
12786         new function.
12787
12788         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
12789
12790 2003-11-15  Martin Baulig  <martin@ximian.com>
12791
12792         * class.c (mono_class_is_open_constructed_type): New public
12793         function; checks whether a type is an open constructed type,
12794         ie. whether it still contains type parameters.
12795         (mono_class_inflate_generic_type): If we're a type parameter and
12796         the inflated type is also a MONO_TYPE_(M)VAR, return the original
12797         type.
12798
12799         * class.h (MonoGenericInst): Added `guint32 is_open'.
12800
12801         * loader.c (method_from_methodspec): Check whether we're an open
12802         or closed constructed type and set `ginst->is_open'.
12803
12804         * reflection.c (mono_reflection_bind_generic_parameters): Check
12805         whether we're an open or closed constructed type and set
12806         `ginst->is_open'.
12807         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
12808         from open constructed types.
12809
12810 2003-11-15  Martin Baulig  <martin@ximian.com>
12811
12812         * reflection.c (mono_reflection_bind_generic_parameters): If we're
12813         a generic instance (instead of a generic type declaration) with
12814         unbound generic parameters, bind them to our actual types.
12815
12816 2003-11-14  Martin Baulig  <martin@ximian.com>
12817
12818         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
12819
12820         * reflection.c (mono_reflection_bind_generic_parameters): If we're
12821         an interface type, populate `res->interfaces' with instantiated
12822         versions of all the interfaces we inherit.
12823
12824 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
12825
12826         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
12827         when MONO_PATH is set but doesn't contain the install dir.
12828
12829 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12830
12831         * icall.c:
12832         (ves_icall_Type_GetInterfaces): don't return an interface twice when
12833         it's also implemented in base classes. Fixes bug #50927.
12834
12835 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
12836
12837         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
12838         if this method is called from a finalizer. Fixes #50913.
12839
12840 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
12841
12842         * threads.c: Implement VolatileRead/VolatileWrite
12843
12844         * icall.c: Add new icalls for VolatileRead/VolatileWrite
12845
12846 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
12847
12848         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
12849         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
12850         2.95.3.
12851
12852         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
12853         from Peter Ross (pro@missioncriticalit.com).
12854         
12855 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
12856
12857         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
12858
12859 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
12860
12861         * assembly.c (mono_assembly_load_references): Disable check because it
12862         triggers on older corlibs which lots of people have.
12863
12864 2003-11-12  Jackson Harper  <jackson@ximian.com>
12865
12866         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
12867         load corlib.dll if mscorlib.dll is not found.
12868         * assembly.h: Remove corlib name define.
12869         * class.c:
12870         * domain.c:
12871         * image.c: Change corlib name to mscorlib.
12872         
12873 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
12874
12875         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
12876
12877 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
12878
12879         * appdomain.h: Added loader_optimization here to sync with the C#
12880         code, and add disallow_binding_redirects field.
12881
12882 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
12883
12884         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
12885
12886         * reflection.c (mono_image_build_metadata): Fix crash on modules
12887         with no types.
12888
12889         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
12890
12891         * icall.c (ves_icall_get_method_info): Return callingConvention as
12892         well.
12893
12894         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
12895         namespaces from the EXPORTEDTYPE table as well.
12896
12897         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
12898         from all modules inside the assembly.
12899         
12900 2003-11-11  Martin Baulig  <martin@ximian.com>
12901
12902         * reflection.c (mono_reflection_bind_generic_parameters): Make
12903         this work for interfaces.
12904
12905 2003-11-11  Martin Baulig  <martin@ximian.com>
12906
12907         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
12908
12909 2003-11-11  Martin Baulig  <martin@ximian.com>
12910
12911         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
12912         "MonoInflatedMethod" and "MonoInflatedCtor".
12913
12914 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
12915
12916         * reflection.c (resolution_scope_from_image): Use the assembly table
12917         from the manifest module, since other modules don't have it.
12918
12919         * debug-helpers.c (mono_type_full_name): New helper function.
12920
12921         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
12922
12923         * image.c (mono_image_load_file_for_image): New public function which
12924         is a replacement for the load_file_for_image in class.c.
12925
12926         * assembly.c (mono_assembly_load_module): A wrapper for the function
12927         above which does assembly association and reference loading too.
12928
12929         * class.c (mono_class_from_name): Call mono_assembly_load_module.
12930
12931 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12932
12933         * appdomain.c: not all of the attributes for the full assembly name
12934         are required and the order doesn't matter. Fixes bug #50787.
12935
12936 2003-11-10  Dick Porter  <dick@ximian.com>
12937
12938         * locales.c: Use platform-endian UTF16
12939
12940 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
12941
12942         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
12943         
12944 2003-11-10  Martin Baulig  <martin@ximian.com>
12945
12946         * metadata.c
12947         (mono_metadata_load_generic_params): Make this actually work.
12948
12949         * reflection.c (mono_reflection_bind_generic_parameters): If our
12950         parent is a generic instance, pass all the `types' to it, no
12951         matter whether it has the same number of type parameters or not.
12952
12953 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
12954
12955         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
12956
12957         * assembly.c (mono_assembly_load_references): Move the image<->assembly
12958         assignment code to this function so it gets called recursively for all
12959         modules.
12960
12961         * image.c (load_modules): Remove the assembly assignment since it is
12962         now done by mono_assembly_load_references.
12963         
12964         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
12965         Add 'module' argument.
12966         (mono_module_get_types): New helper function.
12967         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
12968
12969 2003-11-08  Martin Baulig  <martin@ximian.com>
12970
12971         * class.c (mono_class_inflate_generic_method): Interface method
12972         don't have a header.
12973
12974         * reflection.c (mono_image_get_methodspec_token): Take an
12975         additional `MonoGenericInst *' argument instead of reading it from
12976         the header; this is necessary to support interfaces.
12977         (mono_image_create_token): Pass the `MonoGenericInst *' from the
12978         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
12979         (inflated_method_get_object): Take an additional `MonoGenericInst *'
12980         argument.
12981
12982         * reflection.h (MonoReflectionInflatedMethod): Added
12983         `MonoGenericInst *ginst'.
12984
12985 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
12986
12987         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
12988
12989 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
12990
12991         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
12992
12993 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
12994
12995         * reflection.c 
12996         (reflection_methodbuilder_from_method_builder):
12997         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
12998         initialize a ReflectionMethodBuilder structure.
12999         (mono_image_get_methodbuilder_token):
13000         (mono_image_get_ctorbuilder_token): New functions to emit memberref
13001         tokens which point to types in another module inside the same assembly.
13002
13003         * reflection.c: Use the new helper functions.
13004         
13005         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
13006
13007         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
13008         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
13009
13010         * reflection.c (resolution_scope_from_image): Emit a moduleref if
13011         neccesary.
13012
13013         * reflection.c (mono_image_build_metadata): Emit metadata only for the
13014         current module. Emit the manifest only for the main module.
13015
13016         * reflection.c (mono_image_create_token): Add assertion when a 
13017         memberref needs to be created.
13018
13019         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
13020
13021         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
13022         larger buffer for the custom attribute blob. Fixes #50637.
13023         
13024 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13025
13026         * threadpool.c: notify listener on async processing handles after
13027         invoking the async callback. Thanks to Zoltan.
13028
13029 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13030
13031         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
13032         avoid code duplication.
13033
13034         * reflection.h (MonoDynamicImage): New type which is currently unused,
13035         but will be used through the ref.emit code in place of 
13036         MonoDynamicAssembly.
13037
13038         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13039         object layout.
13040
13041         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
13042         a MonoDynamicImage instead of just a MonoImage.
13043         
13044         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
13045         icalls to ModuleBuilder but keep their semantics, so they will work
13046         with moduleb->assemblyb. This will change later.
13047         
13048 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13049
13050         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13051         object layout.
13052
13053         * reflection.c (mono_image_build_metadata): Avoid creation of a default
13054         main module, since it is now done by the managed code.
13055
13056 2003-11-03  Martin Baulig  <martin@ximian.com>
13057
13058         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
13059         `ginst->klass' here.
13060         (method_encode_methodspec): Don't use the `ginst->generic_method's
13061         klass if it's a generic instance, use `ginst->klass' in this case.
13062
13063 2003-11-03  Martin Baulig  <martin@ximian.com>
13064
13065         * reflection.c (mono_image_get_generic_method_param_info):
13066         Removed, use mono_image_get_generic_param_info() instead.
13067         (mono_image_get_type_info): Write the GenericParam table before
13068         the Method table.  This is neccessary because in the GenericParam
13069         table, type parameters of the class (ie. '!0' etc.) must come
13070         before the ones from its generic methods (ie. '!!0' etc).
13071
13072 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13073
13074         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
13075
13076 2003-11-02  Martin Baulig  <martin@ximian.com>
13077
13078         * reflection.c (create_generic_typespec): Take a
13079         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
13080         the generic parameters from it.
13081
13082 2003-11-02  Martin Baulig  <martin@ximian.com>
13083
13084         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
13085         instead of a `MonoClassField *' since we just need the type.
13086         (create_generic_typespec): New static function.  Creates a
13087         TypeSpec token for a generic type declaration.
13088         (mono_image_get_generic_field_token): New static function.
13089         (mono_image_create_token): If we're a FieldBuilder in a generic
13090         type declaration, call mono_image_get_generic_field_token() to get
13091         the token.
13092
13093 2003-11-02  Martin Baulig  <martin@ximian.com>
13094
13095         * reflection.h
13096         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
13097         `MonoReflectionGenericInst *declaring_type' and
13098         `MonoReflectionGenericInst *reflected_type' fields.
13099
13100         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
13101         `MonoReflectionGenericInst *declaring_type' and a
13102         `MonoReflectionGenericInst *reflected_type' argument instead of a
13103         single `MonoReflectionGenericInst *type' one.  Set
13104         `res->declaring_type' and `res->reflected_type' from them.
13105         (mono_reflection_inflate_field): Likewise.      
13106
13107 2003-11-02  Martin Baulig  <martin@ximian.com>
13108
13109         * class.c (mono_class_setup_vtable): Don't store generic methods
13110         in the vtable.  
13111
13112 2003-11-02  Martin Baulig  <martin@ximian.com>
13113
13114         * reflection.h (MonoReflectionGenericInst): Added
13115         `MonoReflectionType *declaring_type'.
13116
13117         * reflection.c (mono_reflection_bind_generic_parameters): Use
13118         `if (tb->parent)' instead of `klass->parent'.
13119
13120 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
13121
13122         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
13123         with an empty ASSEMBLY table.
13124
13125         * reflection.c (mono_image_build_metadata): Avoid using the same loop
13126         variable in the inner and outer loops.
13127
13128 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
13129
13130         * metadata.h (mono_metadata_make_token): Put parentheses around macro
13131         argument.
13132
13133         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
13134         
13135         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
13136         icalls. Instead, do everything in managed code. This is needed since
13137         it is hard to restore the original domain etc. in unmanaged code in the
13138         presence of undeniable exceptions.
13139
13140         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
13141         New icalls to push and pop appdomain refs.
13142
13143 2003-10-31  Martin Baulig  <martin@ximian.com>
13144
13145         * class.c (inflate_generic_type): Renamed to
13146         mono_class_inflate_generic_type() and made it public.
13147
13148         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
13149         New interncall.
13150
13151         * loader.c (mono_field_from_memberref): Also set the retklass for
13152         typespecs.
13153
13154         * fielder.c (mono_image_get_inflated_field_token): New static
13155         method; creates a metadata token for an inflated field.
13156         (mono_image_create_token, fixup_method): Added support for
13157         "MonoInflatedField".
13158         (fieldbuilder_to_mono_class_field): New static function.
13159         (mono_reflection_inflate_field): New public function.
13160
13161         * reflection.h
13162         (MonoReflectionGenericInst): Added `MonoArray *fields'.
13163         (MonoReflectionInflatedField): New typedef.     
13164
13165 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
13166
13167         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
13168         for Solaris and other platforms without s6_addr16
13169
13170 2003-10-30  Martin Baulig  <martin@ximian.com>
13171
13172         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
13173         argument instead of two.
13174         (mono_class_inflate_generic_signature): Likewise.
13175         (inflate_generic_header): Likewise.
13176         (mono_class_inflate_generic_method): Likewise.  In addition, if
13177         `ginst->klass' is set, it becomes the new `method->klass'.
13178
13179         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
13180         field.
13181
13182         * reflection.c (encode_generic_method_sig): Write a 0xa as the
13183         first byte. [FIXME]
13184         (method_encode_methodspec): If we have generic parameters, create
13185         a MethodSpec instead of a MethodRef.
13186         (fixup_method): Added support for "MonoInflatedMethod" and
13187         "MonoInflatedCtor".
13188         (mono_image_create_token): Added support for "MonoInflatedMethod"
13189         and "MonoInflatedCtor".
13190         (inflated_method_get_object): New static function; returns a
13191         managed "System.Reflection.MonoInflatedMethod" object.
13192         (mono_reflection_bind_generic_method_parameters): Return a
13193         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
13194         (mono_reflection_inflate_method_or_ctor): Likewise.
13195         (mono_image_get_generic_method_param_info): Initialize unused
13196         fields to zero.
13197         (mono_image_get_generic_param_info): Likewise.
13198
13199         * reflection.h (MonoReflectionInflatedMethod): New public
13200         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
13201         "S.R.MonoInflatedCtor" classes.
13202
13203         * loader.c (method_from_memberref): If we're a TypeSpec and it
13204         resolves to a generic instance, inflate the method.
13205
13206 2003-10-28  Dick Porter  <dick@ximian.com>
13207
13208         * object.c (mono_runtime_run_main): Convert command-line arguments
13209         into utf8, falling back to the user's locale encoding to do so.
13210
13211 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
13212
13213         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
13214         at this time.
13215
13216         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
13217
13218         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
13219         up icalls at method definition time. Partially fixes #33569.
13220
13221 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
13222
13223         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
13224         marshalling of arrays. Fixes #50116.
13225
13226         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
13227
13228         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
13229         points to a vtable in the dying appdomain.
13230
13231         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
13232         listeners into unmanaged code inside the lock.
13233
13234         * object.c (mono_class_vtable): Turn off typed allocation in non-root
13235         domains and add some comments.
13236
13237 2003-10-25  Martin Baulig  <martin@ximian.com>
13238
13239         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
13240
13241         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
13242
13243         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
13244         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
13245         currently parsing.  Create the generic class and store it in
13246         `generic_inst->klass' before parsing the type arguments.  This is
13247         required to support "recursive" definitions; see mcs/tests/gen-23.cs
13248         for an example.
13249         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
13250         to support recursive typespec entries.
13251
13252         * class.c (mono_class_setup_parent): If our parent is a generic
13253         instance, we may get called before it has its name set.
13254         (mono_class_from_generic): Splitted into
13255         mono_class_create_from_generic() and mono_class_initialize_generic().
13256
13257 2003-10-25  Martin Baulig  <martin@ximian.com>
13258
13259         * icall.c (ves_icall_Type_BindGenericParameters): Return a
13260         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
13261         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
13262         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
13263
13264         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
13265         (create_typespec): Likewise.
13266         (mono_reflection_bind_generic_parameters): Return a
13267         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
13268         (mono_reflection_inflate_method_or_ctor): New public function.
13269
13270         * reflection.h (MonoReflectionGenericInst): New typedef.        
13271
13272 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
13273
13274         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
13275         inside the domain lock. Fixes #49993.
13276         
13277         * object.c (mono_class_vtable): When typed allocation is used, 
13278         allocate vtables in the GC heap instead of in the mempool, since the
13279         vtables contain GC descriptors which are used by the collector even
13280         after the domain owning the mempool is unloaded.
13281
13282         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
13283
13284         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
13285         reflect what it does. Also invalidate mempools instead of freeing
13286         them if a define is set.
13287
13288         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
13289         of the appdomain.
13290         
13291         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
13292         hold the finalizable objects in this domain.
13293
13294         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
13295         appdomain.
13296
13297         * appdomain.c (mono_domain_set): New function to set the current
13298         appdomain, but only if it is not being unloaded.
13299
13300         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
13301         appdomain which is being unloaded.
13302         
13303         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
13304         unloading of the root appdomain.
13305
13306         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
13307         icall to execute a method in another appdomain. Intended as a 
13308         replacement for InternalSetDomain, which can confuse the code 
13309         generation in the JIT.
13310
13311         * appdomain.c (mono_domain_is_unloading): New function to determine
13312         whenever an appdomain is unloading.
13313
13314         * appdomain.c (mono_domain_unload): New function to correctly unload
13315         an appdomain.
13316
13317         * assembly.c (mono_assembly_load_references): Check that an assembly
13318         does not references itself.
13319
13320         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
13321         domain manually, it asks the finalizer thread to do it, then waits for
13322         the result. Also added a timeout.
13323
13324         * icall.c: Register the new icalls.
13325
13326         * threads.h threads.c: Export the mono_gc_stop_world and 
13327         mono_gc_start_world functions.
13328         
13329         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
13330         function to fill out the mempool with 0x2a.
13331
13332 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
13333
13334         * reflection.h (MonoReflectionMethodAux): New structure to store
13335         information which is rarely used, thus is not in the MonoMethod
13336         structure.
13337
13338         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
13339         store the aux info.
13340
13341         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
13342         and marshalling info into the aux structure.
13343
13344         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
13345         from the aux structure.
13346
13347         * loader.c (mono_method_get_param_names): Retrieve the param names from
13348         the aux structure.
13349         
13350 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
13351
13352         * exception.h exception.c: Add AppDomainUnloadedException && fix 
13353         warning.
13354
13355 2003-10-21  Dick Porter  <dick@ximian.com>
13356
13357         * socket-io.c
13358         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
13359         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
13360
13361 2003-10-21  Martin Baulig  <martin@ximian.com>
13362
13363         * reflection.c (mono_reflection_bind_generic_parameters):
13364         `klass->parent' is NULL for interfaces.
13365
13366 2003-10-21  Martin Baulig  <martin@ximian.com>
13367
13368         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13369
13370 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
13371
13372         * exception.c (mono_exception_from_name_msg): New helper function for
13373         creating exceptions and initializing their message field.
13374
13375         * exception.c: Simplify functions using the new helper.
13376
13377         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
13378         New function.
13379
13380         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
13381         mono_raise_exception, since otherwise gcc doesn't generate the function
13382         epilog for raise_exception, confusing the stack unwinding in the JIT.
13383         Fixes #45043.
13384
13385         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
13386         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
13387         Fixes #49499.
13388
13389 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13390
13391         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
13392         utf8.
13393
13394 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
13395
13396         * icall.c: Removed GetUninitializedObject method because
13397           AllocateUninitializedClassInstance does the same.
13398
13399 2003-10-18  Martin Baulig  <martin@ximian.com>
13400
13401         * class.c (inflate_generic_signature): Renamed to
13402         mono_class_inflate_generic_signature() and made it public.
13403         (my_mono_class_from_generic_parameter): New static function; if we
13404         don't already have the generic parameter's MonoClass, create a
13405         very simple one which is just used internally in the runtime and
13406         not passed back to managed code.
13407
13408         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
13409
13410         * metadata.h (MonoMethodSignature): Moved the
13411         `MonoGenericParam *gen_params' to the MonoMethodHeader.
13412         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
13413
13414         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
13415         ves_icall_MonoMethod_GetGenericArguments(); this is now an
13416         interncall on the MonoMethod class, not on MethodInfo.
13417         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
13418         calling mono_reflection_bind_generic_method_parameters() directly.
13419
13420         * loader.c (mono_method_get_signature): If this is a MethodSpec;
13421         return the already computed `method->signature'.
13422         (method_from_methodspec): New static function to load a method
13423         from a MethodSpec entry.
13424         (mono_get_method_from_token): Call the new method_from_methodspec()
13425         for MethodSpec tokens.  
13426         (mono_get_method_from_token): If we're a generic method, load the
13427         type parameters.
13428
13429         * reflection.c (mono_image_get_memberref_token): Allow
13430         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
13431         table.
13432         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
13433         (mono_image_create_token): First check whether it's a generic
13434         method (so we'd need to create a MethodSpec), then do the other
13435         two alternatives.
13436         (mono_reflection_bind_generic_method_parameters): Return a
13437         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
13438         called directly from the interncall.
13439
13440 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
13441
13442         * reflection.c (load_public_key): Move loading of the public key
13443         into managed code.
13444
13445         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
13446
13447         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
13448         fields.
13449
13450         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
13451         culture, hash_alg and public_key. Fixes #49555.
13452
13453 2003-10-17  Martin Baulig  <martin@ximian.com>
13454
13455         * class.h (MonoGenericInst): Moved this declaration here and added
13456         `MonoMethod *generic_method'.
13457
13458         * icall.c
13459         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
13460         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
13461
13462         * metadata.c (mono_metadata_type_equal): Two types of
13463         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
13464         index; ie. don't compare the address of the `MonoGenericParam'
13465         structure.
13466         (mono_metadata_load_generic_params): Removed the `MonoMethod
13467         *method' argument.
13468
13469         * metadata.h (MonoGenericInst): Moved declaration to class.h.
13470         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
13471
13472         * reflection.c (method_encode_signature): Encode the number of
13473         generic parameters.
13474         (encode_generic_method_sig): New static function.
13475         (method_encode_methodspec): New static function; creates an entry
13476         in the MethodSpec table for a generic method.
13477         (mono_image_get_methodspec_token): New static function.
13478         (mono_image_create_token): Call mono_image_get_methodspec_token()
13479         for generic methods.
13480         (mono_reflection_bind_generic_method_parameters): New public
13481         function.  Instantiates a generic method.
13482
13483 2003-10-16  Martin Baulig  <martin@ximian.com>
13484
13485         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
13486         *gen_params' here from MonoMethodHeader.
13487
13488         * metadata.c (mono_metadata_parse_method_signature): If we have
13489         generic parameters, initialize `method->gen_params' and then set
13490         the correct `type->data.generic_param' in all the parameters.
13491
13492 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
13493
13494         * threads.c (mono_threads_get_default_stacksize): New function to 
13495         return the default stacksize.
13496
13497         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
13498         termination of the finalizer thread, since the previous method had
13499         race conditions. Fixes #49628.
13500
13501         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
13502         as for the other managed threads.
13503
13504 2003-10-16  Martin Baulig  <martin@ximian.com>
13505
13506         * class.c (inflate_generic_signature): Copy `generic_param_count'
13507         and `gen_params'.
13508
13509         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
13510         New interncall.
13511
13512         * metadata.c (mono_metadata_parse_method_signature): Actually set
13513         the `method->generic_param_count' here.
13514         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
13515
13516 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
13517
13518         * object.h: Add a new field to TypedRef to simplify the implementation
13519         of the REFANY opcodes in the JIT.
13520
13521         * icall.c: Make use of the new field.
13522
13523         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
13524         dynamically.
13525
13526 2003-10-15  Martin Baulig  <martin@ximian.com>
13527
13528         * class.c (mono_class_from_gen_param): Renamed to
13529         mono_class_from_generic_parameter() and moved most of the
13530         functionality from mono_reflection_define_generic_parameter()
13531         here; ie. we create a "real" class here.
13532         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
13533         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
13534         previously been called.
13535
13536         * class.h (MonoGenericParam): Moved the declaration of this struct
13537         here from metadata.h and added `MonoMethod *method'.
13538
13539         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
13540         interncall.
13541
13542         * loader.c (mono_get_method_from_token): If we have any generic
13543         parameters, call mono_metadata_load_generic_params() to read them
13544         from the MONO_TABLE_GENERICPAR.
13545
13546         * metadata.c (mono_metadata_load_generic_params): Added
13547         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
13548
13549         * metadata.h (MonoMethodSignature): Replaced
13550         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
13551         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
13552
13553         * reflection.c (mono_reflection_define_generic_parameter): Moved
13554         most of the functionality into the new
13555         mono_class_from_generic_parameter(); set the `method' field if
13556         we're a method parameter.       
13557
13558 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
13559
13560         * marshal.c (emit_struct_conv): if native size is 0
13561         emit no code.
13562
13563 2003-10-14  Martin Baulig  <martin@ximian.com>
13564
13565         * icall.c: The generics API has changed in the spec since it was
13566         added to System.Type; these modifications make it match the spec
13567         again.
13568         (ves_icall_Type_GetGenericParameters): Renamed to
13569         `ves_icall_Type_GetGenericArguments'.
13570         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
13571         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
13572         `ves_icall_MonoType_get_HasGenericArguments'.
13573         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
13574         `ves_icall_MonoType_get_IsGenericParameter'.
13575         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
13576         this is no interncall anymore.
13577         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
13578         `ves_icall_TypeBuilder_get_IsGenericParameter'.
13579
13580 2003-10-14  Martin Baulig  <martin@ximian.com>
13581
13582         * reflection.c (mono_reflection_bind_generic_parameters): Also
13583         inflate generic methods if we're reading the class from IL.
13584
13585 2003-10-13  Martin Baulig  <martin@ximian.com>
13586
13587         * reflection.c (mono_reflection_define_generic_parameter): This
13588         method isn't called directly from the icall anymore; take a
13589         `MonoReflectionAssemblyBuilder *' so we can use this for type and
13590         method generic parameters.
13591         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
13592         (method_builder_encode_signature): Encode generic parameters.
13593         (mono_image_get_method_info): Write generic params to the
13594         MONO_TABLE_GENERICPARAM table.
13595
13596         * reflection.h (MonoReflectionMethodBuilder): Added
13597         `MonoArray *generic_params'.
13598
13599         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
13600
13601         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
13602         wrapper for mono_reflection_define_generic_parameter().
13603         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
13604
13605 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
13606
13607         * marshal.h: Add missing function to fix build.
13608
13609         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
13610         the SetLastError pinvoke attribute.
13611
13612         * marshal.c (mono_marshal_set_last_error): New helper function called
13613         by the generated code.
13614         
13615         * marshal.c (mono_mb_emit_branch): New helper function.
13616
13617         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
13618
13619         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
13620         classes as parameters and return values of delegates. Fixes #29256. 
13621
13622 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
13623
13624         * locales.c: use gint32 in non HAVE_ICU case
13625
13626 2003-10-11  Martin Baulig  <martin@ximian.com>
13627
13628         * mono-debug.c (mono_debug_add_method): Added a workaround for
13629         bug #48591.
13630
13631 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
13632
13633         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
13634         delegates passed to native code must use the STDCALL calling 
13635         convention. Fixes #35987.
13636
13637 2003-10-10  Martin Baulig  <martin@ximian.com>
13638
13639         * class.c (inflate_generic_type): If we're inflating for a generic
13640         type instance (and not for a generic method), return
13641         MONO_TYPE_MVAR unchanged.
13642
13643 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13644
13645         * string-icalls.c: Join ignores null strings in the source array.
13646         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
13647         * threads.c: GetAvailableTheads is slightly more accurate.
13648
13649 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
13650
13651         * threads.h threads.c : add mono_threads_set_default_stacksize
13652         and pass default to CreateThread calls.
13653
13654 2003-10-09  Dick Porter  <dick@ximian.com>
13655
13656         * icall.c:
13657         * locales.h:
13658         * locales.c: Internal calls for constructing CultureInfo and
13659         related objects from libicu (if its available.)
13660
13661 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
13662
13663         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
13664
13665 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13666
13667         * threadpool.c: added an argument to async_invoke_thread that is the
13668         item to process, pass the MonoAsyncResult to the thread start function
13669         when creating a new thread. This way we don't need to acquire any lock
13670         when we're creating a new thread. Readded a semaphore for faster
13671         response times (instead of that Sleep i added).
13672
13673 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
13674
13675         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
13676         get daylight change dates better on Windows, fix handling
13677         of platforms without tm_gmtoff.
13678
13679 2003-10-06  Martin Baulig  <martin@ximian.com>
13680
13681         * class.c (inflate_generic_method): Renamed to
13682         mono_class_inflate_generic_method() and made public.
13683         (mono_class_init): Don't inflate the generic methods here.
13684         (mono_class_from_generic): Added `gboolean inflate_methods'
13685         argument.  Inflate the methods here.
13686
13687         * loader.c (mono_method_get_param_names): Ignore instances of
13688         generic types for the moment.
13689
13690         * reflection.c (fixup_method): Added support for inflated methods.
13691         (mono_image_create_token): Use mono_image_get_methodref_token()
13692         for inflated methods.
13693         (mono_custom_attrs_from_param): Ignore instances of generic types
13694         for the moment.
13695         (mono_reflection_bind_generic_parameters): New public function.
13696         Moved all the functionality from
13697         ves_icall_Type_BindGenericParameters() here and added support for
13698         dynamic types.
13699         (mono_reflection_define_generic_parameter): Initialize
13700         `klass->methods' here.
13701
13702         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
13703         functionality into mono_reflection_define_generic_parameter().
13704         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
13705         TypeBuilder, return that TypeBuilder.
13706
13707 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13708
13709         * appdomain.c: removed mono_delegate_semaphore.
13710
13711         * threadpool.c:
13712         (mono_thread_pool_add): moved hash table creation inside and the thread 
13713         creation outside of the critical region.
13714         (mono_thread_pool_finish): removed obsolete code.
13715         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
13716         continue or exit the thread depending on the queue.
13717
13718 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
13719
13720         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
13721         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
13722         handle more bool marshalling options
13723
13724 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
13725
13726         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
13727         arrays of structs. Also add a more descriptive error message when
13728         a structure member is marshalled as LPArray.
13729
13730 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
13731
13732         * marshal.c (mono_marshal_get_native_wrapper): Add support for
13733         marshalling arrays of complex types. Fixes #29098. Also remove an
13734         usused and incomplete function.
13735
13736 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
13737
13738         * gc.c: report heap_size - free_bytes as total memory allocated
13739         (bug#49362).
13740
13741 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
13742
13743         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
13744         fix timezone handling problems on Windows.
13745         
13746         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
13747         asserts when the year is outside the range handled by ms the functions.
13748
13749         * class.c (setup_interface_offsets): If the class is an interface,
13750         fill out its interface_offsets slot.
13751
13752 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13753
13754         * threadpool.c: mark threadpool threads as background.
13755
13756 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
13757
13758         * decimal.c - define DECINLINE to nothing if not using GCC
13759
13760 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
13761
13762         * assembly.c: More refcount fixes.
13763
13764 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13765
13766         * string-icalls.c: if we're not trimming, return the same string.
13767         When not splitting, don't create a new string.
13768
13769 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13770
13771         * image.c:
13772         (mono_image_open): increment the ref_count inside the critical section.
13773
13774 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
13775
13776         * image.c (mono_image_open): Fix reference counting bug.
13777
13778 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
13779
13780         * marshal.c (mono_marshal_type_size) struct alignment changed for 
13781         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
13782         64bits. Avoid leak in mono_marshal_get_native_wrapper when
13783         mono_lookup_pinvoke_call throws.        
13784
13785 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
13786
13787         * reflection.c (mono_reflection_parse_type): Fix #49114.
13788
13789         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
13790         temporary workaround for cygwin header problem.
13791
13792         * object.c (mono_object_isinst): Synchronize this with the code
13793         generated by the JIT for casts.
13794
13795 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
13796
13797         * reflection.c (encode_type): Fix #38332.
13798
13799 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
13800
13801         * marshal.c (mono_marshal_method_from_wrapper): New function to return
13802         the original method from the wrapper method.
13803
13804 2003-09-25  Martin Baulig  <martin@ximian.com>
13805
13806         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
13807         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
13808         (ves_icall_Type_get_IsGenericInstance): New interncall.
13809
13810 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
13811
13812         * object.c: fix cast warning in big endian code.
13813
13814 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
13815
13816         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
13817         
13818 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13819
13820         * assembly.c: don't call check_env from mono_assembly_load. It's
13821         already done once in mono_assemblies_init and may cause headaches when
13822         multiple threads are loading assemblies.
13823
13824 2003-09-19  Martin Baulig  <martin@ximian.com>
13825
13826         * reflection.c (mono_reflection_define_generic_parameter): Don't
13827         allocate `klass->methods', set `klass->flags' to
13828         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
13829
13830 2003-09-18  Martin Baulig  <martin@ximian.com>
13831
13832         * class.c (mono_class_init): Don't create `class->methods' if it's
13833         already initialized.
13834
13835         * metadata.c (mono_metadata_load_generic_params): Make this
13836         actually work.
13837
13838         * reflection.c (mono_reflection_define_generic_parameter): Set
13839         parent class and interfaces from the constraints.
13840
13841         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
13842         to keep this struct in sync with the declaration in TypeBuilder.cs.
13843
13844 2003-09-17  Martin Baulig  <martin@ximian.com>
13845
13846         * metadata.h (MonoType): Replaced the data's `int type_param'
13847         field with `MonoGenericParam *generic_param'.
13848         (MonoGenericParam): Added `MonoClass *klass'.
13849
13850         * class.c (mono_class_from_gen_param): Removed the
13851         `MonoImage *image' and `int type_num' arguments.
13852
13853         * metadata.c (mono_metadata_parse_generic_param): New static
13854         method; creates a MonoGenericParam which just contains the index.
13855         (do_mono_metadata_parse_type): Call
13856         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
13857         MONO_TYPE_MVAR.
13858
13859         * reflection.c (mono_image_typedef_or_ref): Generic type
13860         parameters may be in the same assembly, but never use a typedef
13861         for them.
13862         (mono_reflection_define_generic_parameter): We're now creating a
13863         "real" class for the type parameter; it's now safe to call
13864         mono_class_from_mono_type() on the class'es type, it'll do the
13865         right thing.
13866
13867 2003-09-16  Martin Baulig  <martin@ximian.com>
13868
13869         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
13870         `symfile->range_entry_size' and `symfile->class_entry_size' here;
13871         the `symfile' data structure must be fully initialized before it
13872         gets added to the table.
13873
13874 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
13875
13876         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
13877
13878         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
13879         class init trampolines.
13880
13881 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
13882
13883         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
13884         to the built-in profiler to turn off time and allocation profiling
13885         respectively.
13886
13887 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
13888
13889         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
13890         g_direct_equal.
13891
13892         * debug-helpers.c (mono_method_full_name): Print the wrapper type
13893         in human readable form.
13894
13895 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
13896
13897         * reflection.c icall.c: Fixed warnings.
13898
13899         * image.c (load_class_names): Use a temporary hash table to hold the
13900         namespaces in order to avoid doing many string comparisons.
13901
13902         * image.h: Fix typo.
13903
13904         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
13905         Pass NULL instead of g_direct_equal to the GHashTable constructor 
13906         since the NULL case is short-circuited inside g_hash_table_lookup, 
13907         leading to better performance.  
13908
13909         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
13910         obtain the first custom attribute for a given index. Depends on the
13911         CustomAttribute table being sorted by the parent field.
13912
13913         * reflection.c (mono_custom_attrs_from_index): Use the new function 
13914         for better performance.
13915
13916 2003-09-07  Martin Baulig  <martin@ximian.com>
13917
13918         * class.c (mono_class_init): If we're a generic instance, inflate
13919         all our methods instead of loading them from the image.
13920         (mono_class_from_generic): Set `class->methods = gklass->methods'.
13921
13922 2003-09-07  Martin Baulig  <martin@ximian.com>
13923
13924         * mono-debug-debugger.c: Added support for constructors.
13925
13926 2003-09-06  Martin Baulig  <martin@ximian.com>
13927
13928         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
13929         New interncall.
13930
13931         * reflection.c (mono_reflection_setup_generic_class): Call
13932         ensure_runtime_vtable() to create the vtable.
13933
13934 2003-09-05  Martin Baulig  <martin@ximian.com>
13935
13936         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
13937         MONO_TYPE_MVAR.
13938
13939 2003-09-04  Martin Baulig  <martin@ximian.com>
13940
13941         * reflection.c (mono_reflection_define_generic_parameter): Generic
13942         parameters start with zero.
13943
13944 2003-09-04  Martin Baulig  <martin@ximian.com>
13945
13946         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13947
13948         * reflection.h (MonoReflectionGenericParam): New typedef.
13949         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
13950         the generic parameters from the managed TypeBuilder.
13951
13952         * reflection.c (mono_reflection_define_generic_parameter): New function.
13953         (mono_reflection_create_runtime_class): Encode generic parameters.
13954         (mono_reflection_setup_generic_class): New function; this is
13955         called after adding adding all generic params to the TypeBuilder.
13956         (encode_type): Added MONO_TYPE_VAR.
13957
13958 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
13959
13960         * class.h class.c (mono_class_needs_cctor_run): Moved this method
13961         here from the JIT.
13962
13963         * assembly.h assembly.c: Moved the AOT loading code into an assembly
13964         load hook.
13965
13966 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
13967
13968         * reflection.h reflection.c class.h class.c: Delete duplicate 
13969         definition of mono_type_get_name () from reflection.c and export the
13970         one in class.c.
13971
13972         * class.c: Class loading fixes from Bernie Solomon 
13973         (bernard@ugsolutions.com).
13974
13975         * reflection.c: Endianness fixes from Bernie Solomon 
13976         (bernard@ugsolutions.com).
13977         
13978 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
13979
13980         * assembly.h assembly.c: Define a file format version for AOT
13981         libraries.
13982         
13983         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
13984
13985         * appdomain.h (MonoJitInfo): New field to determine whenever the
13986         code is domain neutral.
13987         
13988 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
13989
13990         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
13991
13992 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
13993
13994         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
13995         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
13996         Avoid caching the result since strings must be domain specific. Fixes
13997         #48050.
13998
13999 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
14000
14001         * marshal.c (mono_marshal_init): Make this callable multiple times
14002         since it is hard to find a correct place to call it.
14003
14004         * object.c (mono_runtime_class_init): Execute static constructors in
14005         the correct appdomain.
14006
14007         * image.c (build_guid_table): Handle the case when multiple images have
14008         the same GUID.
14009
14010 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14011
14012         * icall.c: added a couple of icalls for System.Web.
14013
14014 2003-08-28  Martin Baulig  <martin@ximian.com>
14015
14016         * icall.c (ves_icall_Type_BindGenericParameters): Use
14017         `klass->generic_inst' instead of `&klass->byval_arg' in the
14018         mono_type_get_object() call.  The returned type must be
14019         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
14020
14021 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
14022
14023         * NOTES: New file.
14024
14025         * object.c (mono_class_proxy_vtable): Make it thread safe.
14026
14027         * pedump.c: Fix warning.
14028
14029         * object.c appdomain.h: Get rid of metadata_section. 
14030         It is no longer needed and it was causing deadlocks with domain->lock.
14031
14032         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
14033
14034 2003-08-26  Martin Baulig  <martin@ximian.com>
14035
14036         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
14037
14038 2003-08-26  Martin Baulig  <martin@ximian.com>
14039
14040         * pedump.c (main): Call mono_metadata_init(),
14041         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
14042         and mono_loader_init().
14043
14044 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
14045
14046         * loader.h: Add missing include to fix build.
14047
14048         * image.h: mono_image_load_references is no more.
14049
14050         * assembly.c: Reworked assembly loading to make it really thread safe.
14051         After these changes, the assembly returned by mono_assembly_open is
14052         fully initialized, i.e. all its references assemblies are loaded.
14053
14054         * assembly.c (mono_image_load_references): Renamed to 
14055         mono_assembly_load_references, and made private, since clients no
14056         longer need to call it.
14057
14058         * class.c: Removed calls to mono_assembly_load_references, since it was
14059         a source of deadlocks.
14060
14061         * loader.h loader.c class.h class.c: Protect data structures using a 
14062         new lock, the loader lock.
14063
14064         * class.c (mono_class_setup_vtable): Create temporary hash tables and
14065         GPtrArrays only when needed.
14066
14067         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
14068         into empty structures by mcs. Fixes pinvoke7.cs.
14069         
14070         * domain.c (mono_init): Call a new initialization function.
14071
14072         * appdomain.c (mono_runtime_init): Call the new initializer function
14073         of the marshal module.
14074
14075         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
14076         inserted into empty structures by mcs. Fixes pinvoke7.cs.
14077
14078         * marshal.h marshal.c: Added locks around the wrapper caches to make
14079         this module thread safe.
14080
14081         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
14082         this argument. Fixes pinvoke1.exe.
14083
14084 2003-08-25  Lluis Sanchez <lluis@ximian.com>
14085
14086         * object.h: Added call_type field to MonoMethodMessage and the corresponding
14087         enumeration of values. Removed fields to store remote call output values in
14088         MonoAsyncResult. Not needed any more.
14089         * object.c: Initialize call_type and async_result fields in mono_message_init.
14090         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
14091         dispatching the message.
14092         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
14093         async call to finish. To do it use a message with EndInvoke call type.
14094
14095 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
14096
14097         * loader.h loader.c (mono_method_hash_marhal_info): New function which
14098         determines whenever a method has marshalling info.
14099
14100 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14101
14102         * assembly.c: fix the build on windows.
14103
14104 2003-08-22 Lluis Sanchez <lluis@ximian.com>
14105
14106         * object.cs: Fixed bug #47785.
14107
14108 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
14109
14110         * string-icalls.c (StringReplace): If their are no occurances of
14111         the old string found return a reference to the supplied
14112         string. This saves some memory and matches MS behavoir.
14113         
14114 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14115
14116         * socket-io.c: fixed compilation for systems that define AF_INET6
14117         and don't define SOL_IP/SOL_IPV6.
14118
14119 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
14120
14121         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
14122         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
14123
14124         * rawbuffer.c rawbuffer.h: Make this module thread safe.
14125
14126         * domain.c: Make this module thread safe.
14127
14128         * domain.c (mono_init): Call new initialization function.
14129
14130         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
14131         reference types too. Fixes #38812.
14132
14133         * image.c (mono_image_init): Fixed warnings.
14134
14135         * class.c (mono_class_from_typeref): Handle assembly load failure
14136         correctly.
14137
14138         * appdomain.c (add_assemblies_to_domain): Handle the case when
14139         the references of an assembly are not yet loaded.
14140
14141         * metadata.c image.c assembly.c: Moved initialization of global
14142         variables to a separate function called at startup since lazy 
14143         initialization of these variables is not thread safe.
14144         
14145         * image.c assembly.c: Made this module thread safe by adding locks in 
14146         the appropriate places.
14147
14148         * domain.c (mono_init): Call the new initialization functions of the
14149         three modules.
14150
14151 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
14152
14153         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
14154           make a direct call. It is proxy's work to make the call asynchronous.
14155           mono_delegate_end_invoke(): If the targe is a proxy, just collect
14156           the return values.
14157         * object.cs: mono_method_call_message_new(): read AsyncResult and
14158           state object from parameters list, if this info is requested.
14159         * object.h: Added fields to store remote call output values in
14160           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
14161
14162 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14163
14164         * object.h: add needed fields to MonoThread.
14165         * threads.c, threads.h: allow registering a function to cleanup data
14166         allocated per thread by the JIT.
14167
14168 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14169
14170         * loader.h: portability fix by Bernie Solomon
14171         * <bernard@ugsolutions.com>.
14172
14173 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
14174
14175         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
14176         return a MonoArray. This simplifies the code and also ensures that
14177         the cache allways contains an object reference as a value.
14178
14179         * icall.c (ves_icall_get_parameter_info): Simplified using the new
14180         function.
14181
14182 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14183
14184         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
14185         fixes a problem with byte ordering when getting the address family for
14186         a socket.
14187
14188 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
14189
14190         * .cvsignore: Added monosn.
14191
14192         * reflection.h reflection.c loader.c: Added support for parameter
14193         marshalling to dynamically created types. Fixes #47295.
14194
14195 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
14196
14197         * rand.c: remove useless warnings.
14198
14199 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
14200
14201         * class.c: implemented ldtoken for methods and fieldrefs.
14202
14203 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14204
14205         * threadpool.c: when mono_async_invoke was called, no one took care of
14206         monitoring the queue. So if the method invoked took some time and we
14207         got new async invoke requests after 500 ms (the thread created waited
14208         that long in WaitForSingleObject), the new async invoke was not called
14209         until the previous one finished.
14210
14211         This is fixed now. Thanks to Totte for helping with it.
14212
14213 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14214
14215         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
14216
14217 2003-08-11  Martin Baulig  <martin@ximian.com>
14218
14219         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
14220
14221 2003-08-06  Martin Baulig  <martin@ximian.com>
14222
14223         * mono-debug-debugger.c: Added support for static fields,
14224         properties and methods.
14225
14226 2003-08-06  Martin Baulig  <martin@ximian.com>
14227
14228         * mono-debug-debugger.c: Don't store the MonoString's vtable to
14229         make this work for applications with multiple application domains.
14230
14231 2003-08-04  Martin Baulig  <martin@ximian.com>
14232
14233         * mono-debug-debugger.c: Completely reworked the type support; the
14234         most important thing is that we're now just using one single
14235         `MonoType' instance per type.
14236
14237 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
14238
14239         * mono-endian.h, mono-endian.c, icall.c: Added icall
14240         ves_icall_System_Double_AssertEndianity to assert double word endianity
14241         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
14242
14243 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14244
14245         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
14246         support, icalls and fixes.
14247
14248 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
14249
14250         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
14251         classes that are a punctuation character in .NET is not the same a
14252         g_unichar_ispunct.
14253
14254 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14255
14256         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
14257
14258 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
14259
14260         * icall.c: Add new MemCopy internalcall.
14261         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
14262         Simplified code; It is not necessary to handle all the cases here,
14263         as the C# code takes care of it.  Only handle the case of the name
14264         resource embedded into the assembly.
14265
14266         Changed signature to return the data pointer and the size of the
14267         data. 
14268
14269 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
14270
14271         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
14272         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
14273
14274 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
14275
14276         * socket-io.c: ignore EINTR error in select.
14277
14278 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
14279
14280         * class.h, class.c: removed unused subclasses field in MonoClass.
14281
14282 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
14283
14284         * icall.c: improve fix of get_base_definition(). If the parent class
14285           doesn't have the mehod, look at the parent of the parent.
14286         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
14287           to check if a parameter is an in or out parameter
14288           (PARAM_ATTRIBUTE_IN is not set by default).
14289           mono_method_return_message_restore(): Use mono_class_value_size to
14290           get the size of a value type. mono_type_stack_size (parameterType)
14291           does not return the correct value if parameterType is byRef.
14292           mono_load_remote_field(), mono_load_remote_field_new(),
14293           mono_store_remote_field(), mono_store_remote_field_new():
14294           raise exception if the remote call returns an exception.
14295
14296 2003-07-28  Martin Baulig  <martin@ximian.com>
14297
14298         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
14299         method.  This is a wrapper around mono_runtime_invoke() which
14300         boxes the instance object if neccessary.
14301
14302 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14303
14304         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
14305         metadata.h, row-indexes.h, verify.c: first cut of generics support.
14306
14307 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14308
14309         * icall.c: disable mcs bug workaround.
14310
14311 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
14312
14313         * object.c (mono_runtime_class_init): Take the metadata_section
14314         mutex before obtaining the domain mutex.
14315
14316         * appdomain.h: Added definition of metadata_section mutex here. 
14317
14318         * object.c: define metadata_mutex here.
14319
14320 2003-07-24  Ravi Pratap  <ravi@ximian.com>
14321
14322         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
14323         fixed.
14324
14325 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
14326
14327         * reflection.c: Fix bug #46669
14328
14329 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14330
14331         * exception.c:
14332         * exception.h:
14333         * icall.c:
14334         * object.h: fill in the type name for TypeLoadException.
14335
14336 2003-07-23  Ravi Pratap  <ravi@ximian.com>
14337
14338         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
14339         relationship between TypeBuilders while compiling corlib) and bug
14340         45993 (Array types returned from the runtime while compiling
14341         corlib were from the loaded corlib).
14342
14343 2003-07-22  Martin Baulig  <martin@ximian.com>
14344
14345         * mono-debug-debugger.c: Reworked the type support a bit more;
14346         distinguish between types and classes.
14347
14348 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
14349
14350         * icall.c: add IsArrayImpl icall.
14351
14352 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
14353
14354         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
14355         initializing real_size only once. Also fix bug #46602.
14356
14357 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
14358
14359         * object.c: Renamed mono_metadata_section to metadata_section.
14360
14361 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
14362
14363         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
14364           empty array if the type is an array. Fixed.
14365           ves_icall_MonoMethod_get_base_definition: if the base method
14366           is abstract, get the MethodInfo from the list of methods of
14367           the class.
14368         * reflection.c: ParameterInfo.PositionImpl should be zero-based
14369           and it was 1-based. Fixed in mono_param_get_objects.
14370
14371 2003-07-20  Martin Baulig  <martin@ximian.com>
14372
14373         * mono-debug.h: Set version number to 31.
14374         (mono_debug_init): Added `MonoDomain *' argument.
14375
14376         * mono-debug-debugger.c: Reworked the type support; explicitly
14377         tell the debugger about builtin types; pass the `klass' address to
14378         the debugger.
14379
14380 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
14381
14382         * image.c: Allow new metadata tables to be loaded without a
14383         warning. Also update the warning message to give the new constant value.
14384                 
14385 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
14386
14387         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
14388         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
14389         array type representation changes.
14390
14391 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
14392
14393         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
14394         on Environment.Exit () call.
14395
14396 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
14397
14398         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
14399         requires a matching corlib.
14400
14401 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
14402
14403         * Changelog: My editor decided to add a CR to each line. Sorry about that.
14404           Committed again without the CRs.
14405         
14406 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
14407
14408         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
14409           getting it from the "this" socket instance. Did not work
14410           if the socket is a subclass of Socket.
14411           Also fixed bug #35371.
14412
14413 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
14414
14415         * metadata.c: fixed size for TypedByRef.
14416         * loader.c: when searching for a method, consider the vararg amrker.
14417         * unicode.c, decimal.c: constify some arrays.
14418
14419 2003-07-15  Dick Porter  <dick@ximian.com>
14420
14421         * socket-io.c: Fixed compilation for gcc < 3.2.
14422
14423         Fixed compilation for machines that don't have AF_INET6 (thanks to
14424         Bernie Solomon <bernard@ugsolutions.com> for that part.)
14425
14426         Fixed compile warnings.
14427         
14428         Fixed formatting and line endings.
14429
14430 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
14431
14432         * socket-io.h:
14433         * socket-io.c: Added IPv6 support.
14434
14435 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
14436
14437         * class.c (mono_class_is_assignable_from): New function to implement
14438         the is_assignable_from logic. Used by mono_object_isinst, 
14439         Type::IsAssignableFrom () and the interpreter.
14440
14441         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
14442         Object, even interfaces.
14443         
14444         * object.c (mono_object_isinst): Implement in terms of 
14445         is_assignable_from.
14446
14447         * icall.c (ves_icall_type_is_assignable_from): New icall.
14448
14449 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
14450
14451         * domain.c (foreach_domain): fix compiler warning.
14452
14453 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
14454
14455         * image.c (load_metadata_ptrs): use g_strndup because strndup is
14456         not available on all plattforms
14457
14458 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
14459
14460         * image.h image.c: Store the metadata version string in MonoImage.
14461         * icall.c: New icall to retrieve the image version.
14462         * reflection.c (create_dynamic_image): Fill in the image version field
14463         * reflection.c (build_compressed_metadata): Use the image version
14464         from the image structure.
14465
14466 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14467
14468         * appdomain.c: modified comment.
14469         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
14470         That will be its last iteration when mono_gc_cleanup is called from
14471         mono_runtime_cleanup and before the domain is unloaded.
14472
14473         Fixes bug #45962.
14474
14475 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
14476
14477         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
14478         attributes.
14479
14480 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14481
14482         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
14483         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
14484         Bernie Solomon <bernard@ugsolutions.com>.
14485
14486 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
14487
14488         * object.c, object.h: provide mono_object_new_fast() for faster
14489         allocation in some special cases.
14490
14491 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
14492
14493         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
14494         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
14495
14496 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
14497
14498         * threadpool.c: fix leaks.
14499
14500 2003-07-01  Dick Porter  <dick@ximian.com>
14501
14502         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
14503         using MonoGHashTables.  Fixes threadpool bug posted to list.
14504
14505 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
14506
14507         * image.h, image.c: added support to load an assembly from a byte array.
14508         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
14509         assembly bundle support.
14510
14511 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
14512
14513         * threadpool.c (mono_thread_pool_add): keep a reference to the
14514         AsyncResult to prevent GC
14515
14516 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
14517
14518         * class.c: leak fix.
14519
14520 2003-06-25  Dick Porter  <dick@ximian.com>
14521
14522         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
14523         for the async object, the WaitHandle object will close the handle.
14524         Fixes bug 45321.
14525
14526 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
14527
14528         * class.c: in mono_array_class_get (), lookup from the hash with the
14529         same type we insert: this works around a bug in
14530         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
14531         lluis. The real fix will have to wait for after the release.
14532
14533 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
14534
14535         * icall.c: fix memory leak when getting type members.
14536
14537 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
14538
14539         * reflection.c: added more pubtoken special cases.
14540
14541 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
14542
14543         * class.c: handle field offset correctly when class size
14544         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
14545
14546 2003-06-20  Martin Baulig  <martin@ximian.com>
14547
14548         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
14549         *image' field.
14550
14551 2003-06-20  Martin Baulig  <martin@ximian.com>
14552
14553         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
14554
14555 2003-06-20  Martin Baulig  <martin@ximian.com>
14556
14557         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
14558         just distinguish between variables in registers and variables at
14559         an offset relative to a register.
14560
14561 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14562
14563         * icall.c: #ifdef out latest changes until mcs is fixed.
14564
14565 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14566
14567         * icall.c: return members in metadata order.
14568
14569 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
14570
14571         * icall.c: avoid infinite loop in GetTimeZoneData.
14572
14573 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
14574
14575         * icall.c: added Marshal.Prelink/All icalls.
14576
14577 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
14578
14579         * object.c, object.h: fix warnings and do some overflow checking
14580         when creating arrays.
14581
14582 2003-06-17  Dick Porter  <dick@ximian.com>
14583
14584         * file-io.h:
14585         * file-io.c: File attributes need to be tweaked slightly when
14586         passed from the managed to the w32 world.
14587
14588 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
14589         * profiler.h profiler-private.h profiler.c: Rework last patch
14590         based on suggestion by Paolo.
14591         
14592 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
14593
14594         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
14595         instruction level coverage data collection.
14596         * profiler.h profiler.c (: Added new callback function which can be
14597         used by the profiler to limit which functions should have coverage
14598         instrumentation.
14599         * profiler.c (mono_profiler_load): Call g_module_build_path to
14600         generate the file name of the profiler library.
14601
14602 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14603
14604         * profiler.c, profiler.h, profiler-private.h: added basic block 
14605         coverage profiling API.
14606
14607 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
14608
14609         * reflection.c (mono_reflection_create_runtime_class): Add support
14610         for events in dynamically generated code.
14611
14612         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
14613         not allocated.
14614
14615 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
14616
14617         * icall.c: when getting timezone info, return reasonable values if we
14618         can't get the actual data.
14619
14620 2003-06-14  Dick Porter  <dick@ximian.com>
14621
14622         * threads.c (start_wrapper): Remove the reference to the thread
14623         object in the TLS data, so the thread object can be finalized.
14624         This won't be reached if the thread threw an uncaught exception,
14625         so those thread handles will stay referenced :-( (This is due to
14626         missing support for scanning thread-specific data in the Boehm GC
14627         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
14628
14629 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
14630
14631         * reflection.c: ensure streams and tables are first allocated with
14632         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
14633
14634 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14635
14636         * icall.c: fixed GetElementType for byrefs (bug# 44792).
14637
14638 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
14639
14640         * reflection.c (mono_reflection_create_runtime_class): Add support for
14641         properties to dynamically created classes.
14642         * reflection.c: Fix a few places where non-MonoObjects were inserted
14643         into the tokens hashtable.
14644
14645 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
14646
14647         * object.c: some support to handle out of memory exceptions.
14648
14649 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
14650
14651         * marshal.c (mono_marshal_get_native_wrapper): support reference
14652         return types
14653
14654 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
14655
14656         * object.h, object.c: more portability stuff from Bernie Solomon.
14657         Unexport mono_object_allocate(). Added mono_object_unbox ().
14658         Set exitcode when an unhandled exception is thrown.
14659
14660 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
14661
14662         * marshal.c (mono_marshal_get_native_wrapper): use custom
14663         marshaler for return types.
14664
14665 2003-06-10  Dick Porter  <dick@ximian.com>
14666
14667         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
14668         ip_mreq is available
14669
14670 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
14671
14672         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
14673         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
14674         by Bernie Solomon <bernard@ugsolutions.com>.
14675
14676 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
14677
14678         * gc.c (mono_gc_init): Avoid error message on shutdown when
14679         GC_DONT_GC=1 is used.
14680
14681         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
14682         New icall to return the GUID of a module.
14683
14684 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
14685
14686         * class.c: ensure instance size always includes the parent's size
14687         even whem class size is set explicitly (fixes bug#44294).
14688
14689 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
14690
14691         * profiler.h, profiler.c: made the simple profiler thread-safe,
14692         get more accurate timing info. Allow the loading of an
14693         externally-developed profiler module.
14694
14695 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
14696
14697         * marshal.c (mono_marshal_get_native_wrapper): improved
14698         class/byref arguments.
14699         (mono_marshal_get_native_wrapper): better string marshaling support.
14700
14701 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
14702
14703         * class.c: ensure .pack and .size are handled correctly and
14704         simplified layout of static fields.
14705
14706 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
14707
14708         * appdomain.c
14709         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
14710
14711         * loader.c (mono_lookup_pinvoke_call): look for modules in the
14712         current directory (fix bug 44008)
14713
14714 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
14715
14716         * marshal.c (mono_marshal_get_native_wrapper): started support for
14717         custom marshalers.
14718         (mono_delegate_to_ftnptr): consider marshalling specifications
14719
14720 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
14721
14722         * reflection.c, reflection.h: emit custom marshal info.
14723
14724 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14725
14726         * object.c: free the GError.
14727         * icall.c: added CloseEvent_internal.
14728         * threads.[ch]:
14729         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
14730         call.
14731
14732 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
14733
14734         * loader.c (mono_method_get_signature): Add support for dynamic
14735         assemblies.
14736
14737 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
14738
14739         * reflection.c: fixed bug #43905.
14740
14741 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
14742
14743         * class.c, domain.c, icall.c, metadata.h, object.h: support for
14744         handling TypedReference and ArgIterator.
14745         * loader.c, loader.h: added function to get signature at call site.
14746
14747 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
14748
14749         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
14750         data readonly. Buglets and warning fixes. Some MethodSpec support.
14751
14752 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
14753
14754         * class.h, class.c, object.c: remove relative numbering support.
14755
14756 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
14757
14758         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
14759         free the string, until we get a chance to fix Gtk#
14760
14761 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14762
14763         * marshal.c: revert last patch.
14764
14765 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
14766
14767         * icall.c: updates for new mono_class_vtable() not calling
14768         the type constructor anymore.
14769
14770 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
14771
14772         * object.h, object.c: separate vtable creation from type
14773         initialization. Make running the .cctor thread safe.
14774
14775 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
14776
14777         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
14778
14779 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
14780
14781         * loader.c (mono_get_method): consider calling convention
14782
14783 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
14784
14785         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
14786         to return the invisible global type for a module.
14787
14788         * reflection.c (mono_image_build_metadata): Emit global fields too.
14789
14790 2003-05-20  Peter Williams  <peterw@ximian.com>
14791
14792         * loader.c (mono_lookup_internal_call): Add a few newlines.
14793
14794 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
14795
14796         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
14797         literal strings.
14798
14799         * appdomain.c (set_domain_search_path): Recalculate search path when
14800         AppDomainSetup.PrivateBinPath changes.
14801
14802         * object.c (mono_class_compute_gc_descriptor): It turns out some
14803         parts of the class libs (like System.Thread) holds pointers to
14804         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
14805         to treat native int a pointer type here.
14806         
14807 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
14808
14809         * appdomain.h, domain.c: add hashtable for jump target resolution.
14810
14811 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
14812
14813         * reflection.h reflection.c icall.c: Added new icalls 
14814         GetManifestResourceInfoInternal, GetModulesInternal and support
14815         infrastructure.
14816
14817 2003-05-16  Dick Porter  <dick@ximian.com>
14818
14819         * icall.c:
14820         * file-io.h:
14821         * file-io.c: Implement System.IO.MonoIO::GetTempPath
14822
14823 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
14824
14825         * object.c: mono_store_remote_field: little fix to previous patch.
14826
14827 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14828
14829         * class.c: add constructors to array classes.
14830         * icall.c: special case array construction for InternalInvoke (),
14831
14832 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
14833
14834         * class.h class.c reflection.c object.c: Added support for field
14835         defaults in dynamically generated classes.
14836
14837 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
14838
14839         * reflection.c: properly encode charset for ddlimport.
14840
14841 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
14842
14843         * threads.c: allow compiling without GC.
14844
14845 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
14846
14847         * appdomain.h, object.c, object.h, threads.c, threads.h: added
14848         handling of thread static data.
14849
14850 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14851
14852         * reflection.h, reflection.c: added mono_custom_attrs_free ().
14853
14854 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
14855
14856         * class.c (mono_array_class_get): always set the serializable flags
14857         (mono_array_class_get): always set the SEALED attribute for array types
14858
14859 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
14860
14861         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
14862         attributes (fix for bug 42021).
14863
14864 2003-05-12  Dick Porter  <dick@ximian.com>
14865
14866         * gc.c: Don't run finalizers when the finalizer thread is
14867         finishing up, because the default domain has already been
14868         destroyed.
14869
14870 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
14871
14872         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
14873         value is null, we should throw an exception.   This is slightly
14874         different than the other conventions used for the constructor.
14875
14876 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14877
14878         * socket-io.c: fixed windows build.
14879
14880 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14881
14882         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
14883
14884 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
14885
14886         * object.c (mono_string_new_wrapper): Compatibility fix for MS
14887         compilers.
14888
14889 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
14890
14891         * class.c (mono_class_layout_fields): Add experimental GC aware
14892         auto layout facility. Requires class library changes to work correctly.
14893
14894         (mono_class_setup_vtable): Avoid overriding explicit interface
14895         method implementations. Fixes iface3.exe test.
14896
14897         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
14898         object reference.
14899         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
14900         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
14901
14902         * metadata.h: Add new type classification macro which determines
14903         whenever the type holds an object reference.
14904
14905 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
14906
14907         * marshal.c (mono_marshal_get_native_wrapper): cleanups
14908
14909 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
14910
14911         * gc.c (finalizer_thread): Work around a GC bug.
14912
14913 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
14914
14915         * marshal.c (emit_struct_conv): allow unions
14916
14917         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
14918
14919 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
14920
14921         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
14922
14923 2003-05-06  Martin Baulig  <martin@ximian.com>
14924
14925         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
14926
14927 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14928
14929         * socket-io.c:
14930         (Select_internal): allow NULLs, don't create arrays if not needed.
14931         Coupled with Socket.cs changes.
14932
14933         * threadpool.c:
14934         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
14935         register a finalizer for it that will close the semaphore handle. This
14936         fixes the leak and make Lupus' test run with > 4080 loops.
14937
14938 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
14939
14940         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
14941         Jerome Laban (bug #42287)
14942
14943 2003-05-02  Martin Baulig  <martin@ximian.com>
14944
14945         * debug-mono-symfile.h
14946         (MonoSymbolFile): Moved declaration into mono-debug.h.
14947         (MonoDebugMethodJitInfo): Likewise.
14948         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
14949         argument.
14950         (_mono_debug_address_from_il_offset): Take a
14951         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
14952
14953         * mono-debug.h
14954         (MonoDebugDomainData): New struct.
14955         (mono_debug_get_domain_data): New function.
14956         (mono_debug_add_method): Take an additional `MonoDomain *'
14957         argument.
14958         (mono_debug_source_location_from_address): Likewise.
14959         (mono_debug_il_offset_from_address): Likewise.
14960         (mono_debug_address_from_il_offset): Likewise.
14961
14962 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
14963
14964         * reflection.c: one more check for null type in custom attrs.
14965
14966 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14967
14968         * reflection.c: avoid warning (comparison is always false due to limited
14969         range of data type).
14970
14971 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14972
14973         * icall.c: throw an exception in Type.GetField if the argument 'name'
14974         is NULL.
14975
14976 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
14977
14978         * reflection.c: fixed handling of enums in named arguments to custom
14979         attributes (bug #42123).
14980
14981 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
14982
14983         * reflection.c: use the right array element type and handle
14984         a null for a Type argument, too.
14985
14986 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
14987
14988         * reflection.c: handle arrays as arguments to custom attributes.
14989
14990 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
14991
14992         * reflection.c: handle a string value in a custom attr
14993         ctor that takes an object.
14994
14995 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
14996
14997         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
14998         (fix bug #42063)
14999
15000 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
15001
15002         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
15003
15004 2003-04-27  Martin Baulig  <martin@ximian.com>
15005
15006         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
15007         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
15008         MONO_DEBUGGER_EVENT_BREAKPOINT.
15009         (mono_breakpoint_trampoline_code): Removed.
15010         (mono_debugger_event_handler): The last argument is now a
15011         `guint32'.
15012         (mono_debugger_insert_breakpoint_full): Removed the
15013         `use_trampoline' argument.
15014         (mono_debugger_method_has_breakpoint): Likewise.
15015         (mono_debugger_trampoline_breakpoint_callback): Renamed to
15016         mono_debugger_breakpoint_callback(); take the method and
15017         breakpoint number as arguments.
15018
15019 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
15020
15021         * metadata.c: fix off by one when loading parameters attributes.
15022
15023 2003-04-24  Martin Baulig  <martin@ximian.com>
15024
15025         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
15026
15027 2003-04-24  Martin Baulig  <martin@ximian.com>
15028
15029         * mono-debug-debugger.c: Moved all code which interacts with the
15030         Mono Debugger here.
15031
15032         * debug-mono-symfile.c: This code now just deals with the symbol
15033         file itself, the debugger code is now in mono-debug-debugger.c.
15034
15035 2003-04-23  Martin Baulig  <martin@ximian.com>
15036
15037         * mono-debug.c (mono_debug_source_location_from_il_offset):
15038         New method; like mono_debug_source_location_from_address(), but
15039         takes an IL offset instead of a machine address.
15040
15041 2003-04-23  Martin Baulig  <martin@ximian.com>
15042
15043         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
15044         `line' field; this is now computed by the debugger.
15045
15046 2003-04-23  Martin Baulig  <martin@ximian.com>
15047
15048         * mono-debug.[ch]: New files.  This is the new debugging interface.
15049
15050         * mono-debug-debugger.[ch]: New files.  Moved all code which
15051         interacts with the Mono Debugger here.
15052
15053 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
15054
15055         * domain.c (mono_init): initialize mono_defaults.monitor_class
15056
15057 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
15058
15059         * reflection.c (method_encode_code): Add a spicy exception to help
15060         future compiler authors.
15061
15062 2003-04-21  Martin Baulig  <martin@ximian.com>
15063
15064         * icall.c
15065         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15066         Make this work with relative pathnames; g_filename_to_uri() needs
15067         an absolute filename.
15068
15069 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
15070
15071         * icall.c: Track name changes in Object and ValueType.
15072
15073 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
15074
15075         * metadata.c (mono_type_stack_size): size should be a multiple of
15076         sizeof (gpointer)
15077
15078 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15079
15080         * gc.c:
15081         (internal_domain_finalize): moved into mono_domain_finalize. No need
15082         to create another thread because the finalizers will be run in the
15083         finalizer thread.
15084         
15085         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
15086         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
15087         to be run (MS does this too).
15088
15089 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
15090
15091         * object.c (mono_class_compute_gc_descriptor): Update comment.
15092
15093         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
15094
15095         * image.h: Add synchronized wrapper cache.
15096
15097         * image.c (do_mono_image_open): Initialize cache.
15098
15099         * reflection.c (create_dynamic_mono_image): Initialize cache.
15100
15101 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15102
15103         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
15104         ves_icall_System_Buffer_ByteLengthInternal.
15105
15106 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15107
15108         * reflection.c: setup klass->nested_in earlier. Allow
15109         a dash in the assembly name.
15110
15111 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
15112
15113         * metadata.c (mono_type_to_unmanaged): dont access
15114         type->data.klass for MONO_TYPE_OBJECT
15115         (mono_type_to_unmanaged): consider System.Delegate class
15116
15117 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
15118
15119         * class.c: just setup supertypes in the proper place instead of
15120         initializing the full element class for arrays.
15121
15122 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
15123
15124         * class.c: ensure the element class of arrays is initialized.
15125         Setup the supertype info for array classes, too.
15126
15127 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
15128
15129         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
15130
15131 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15132
15133         * Makefile.am: re-added -m option when running cygpath. This way,
15134         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
15135         separator.
15136         * mono-config.c: same codepath for locating mono config file for WIN32
15137         and the rest.
15138         * assembly.c: if mono_assembly_setrootdir is called, don't override
15139         the value set.
15140
15141 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15142
15143         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
15144         MONO_ASSEMBLIES variable.
15145
15146 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
15147
15148         * icall.c: added Assembly::GetNamespaces() icall.
15149
15150 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15151
15152         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
15153
15154 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
15155
15156         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
15157         * object.c: fixed bug in the construction of vtable for proxies
15158
15159 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
15160
15161         * object.c (mono_array_new): Mark mono_array_new as an icall.
15162
15163 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15164
15165         * class.c: fixed test for public method when overriding interfaces.
15166         Closes bug #40970.
15167
15168 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
15169
15170         * appdomain.h, domain.c: added mono_domain_foreach() to
15171         be able to access the currently loaded appdomains.
15172         * object.c: make string interning work across sppdomains.
15173         Mark some functions for use as icalls.
15174
15175 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
15176
15177         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
15178
15179         * reflection.h reflection.c: Allocate long living data using 
15180         GC_MALLOC_ATOMIC so the collector does not need to scan it.
15181
15182         * reflection.c: Double the allocation size in streams instead of
15183         increasing it, to prevent unneccesary copying on large assemblies.
15184         
15185         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
15186         creation if the assembly does not have the Run flag set.
15187
15188 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
15189
15190         * class.h: avoid the C++ keywords in header files (Jerome Laban
15191         spotted and fixed this).
15192
15193 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15194
15195         * object.c:
15196         (mono_unhandled_exception): fill in the arguments for the
15197         UnhandledException event. Only trigger that event for the default
15198         domain (as MS does).
15199
15200 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
15201
15202         * object.c: Improve typed allocation stuff based on suggestions from
15203         Paolo. Also turn it on if the GC library supports it.
15204
15205 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
15206
15207         * object.c object.h class.h: Added experimental typed allocation
15208         facility using the interfaces in gc_gcj.h.
15209
15210         * os/gc_wrapper.h: Added new include files.
15211         
15212 2003-04-03  Martin Baulig  <martin@ximian.com>
15213
15214         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
15215         which is not yet enabled by default.
15216
15217         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
15218         functions.
15219         (mono_gc_lock, mono_gc_unlock): New static functions.
15220
15221         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
15222         functions; stop/start the world for the garbage collector.  This
15223         is using the windows API; we need to complete the SuspendThread()/
15224         ResumeThread() implementation in the io-layer to make this work on Unix.
15225         (mono_gc_push_all_stacks): New public function; tells the garbage
15226         collector about the stack pointers from all managed threads.
15227
15228 2003-04-03  Martin Baulig  <martin@ximian.com>
15229
15230         * object.h (MonoThread): Added `gpointer stack_ptr'.
15231
15232         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
15233
15234 2003-04-03  Martin Baulig  <martin@ximian.com>
15235
15236         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
15237
15238 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
15239
15240         * reflection.c (typebuilder_setup_fields): Initialize field.first and
15241         field.last.
15242
15243 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
15244
15245         * loader.c (mono_lookup_internal_call): Report the corlib that is
15246         out of sync.
15247
15248 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
15249
15250         * icall.c (ves_icall_type_GetTypeCode): fixed check for
15251         System.DBNull (it's class not valuetype).
15252
15253 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
15254
15255         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
15256         if the array method was already assigned a token (fixes bug#40646).
15257
15258 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
15259
15260         * reflection.c (mono_reflection_get_type): Attempt type resolve even
15261         if no assembly is given.
15262
15263 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
15264
15265         * metadata.h: Added the new tables.
15266
15267         * row-indexes.h: Added definitions for new tables.
15268
15269         * metadata.c: Add schemas for new tables, and add support for
15270         computing the sizes of them.
15271
15272         * class.c: Update for handling the new type cases.
15273
15274 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
15275
15276         * metadata.h (MONO_TYPE_IS_VOID): new macro
15277
15278 2003-03-31  Martin Baulig  <martin@ximian.com>
15279
15280         * threads.h (MonoThreadCallbacks): Added `thread_created'.
15281
15282         * threads.c (mono_thread_new_init): Call `thread_created' in the
15283         mono_thread_callbacks.
15284
15285 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
15286
15287         * loader.h: added marshalbyrefobject_class to mono_defaults
15288         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
15289         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
15290           generation of output parameters.
15291           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
15292         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
15293           contextbound and the target object belongs to the context of the caller.
15294         * object.h: added context and unwrapped_server variables in MonoRealProxy.
15295         * object.c: Implemented support for interfaces and abstract classes
15296           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
15297           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
15298
15299 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
15300
15301         * class.h class.c (mono_class_is_subclass_of): New function.
15302         
15303         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
15304         routines for most common case (calls from ArrayList::ToArray).
15305
15306         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
15307         routine so programs which call Environment::Exit() can be profiled.
15308
15309         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
15310         Added MONO_ARCH_SAVE_REGS.
15311
15312         * icall.c (ves_icall_type_is_subtype_of): Use new function.
15313
15314 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
15315
15316         * blob.h: Add a couple of new MonoType types definitions.
15317
15318         * tabledefs.h: Add a couple of new call convs.
15319
15320 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
15321
15322         * reflection.h (MonoReflectionDynamicAssembly): track changes in
15323         the layout of the class.
15324
15325         * reflection.c (alloc_table): double the size on overflow to avoid
15326         unnecessary copying.
15327
15328         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
15329         avoid filling out metadata tables and blobs. Also set mb->ilgen to
15330         null so it can be garbage collected.
15331         
15332 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
15333
15334         * reflection.c (mono_reflection_get_type): Return the resolved type
15335         only if it is in the assembly we searched.
15336
15337         * reflection.c (ensure_runtime_vtable): Initialize method slots.
15338
15339         * class.c (mono_class_setup_vtable): Set the slot of the overriding
15340         method.
15341
15342 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15343
15344         * appdomain.c:
15345         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
15346         the right one is 'file:///blah', but MS allows it.
15347         * assembly.c:
15348         (mono_assembly_open): allow 'file://blah'
15349
15350         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
15351
15352 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
15353
15354         * socket-io.c: fixes bug #40310.
15355
15356 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
15357
15358         * reflection.c (mono_reflection_parse_type): handle deeply nested
15359         types correctly.
15360
15361         * reflection.c (mono_image_create_token): Use unique token values
15362         since they will be put into a hash table.
15363
15364         * class.c (mono_class_setup_vtable): If a method occurs in more than
15365         one place in the vtable, and it gets overriden, then change the
15366         other occurances too.
15367
15368         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15369         object as return type.
15370
15371 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15372
15373         * icall.c: Deleted "ToString" implementation for double and float
15374         because they are full implemented in managed code.
15375
15376 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15377
15378         * reflection.c, reflection.h: implemented and exported functions
15379         to retrieve info about custom attributes.
15380
15381 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15382
15383         * appdomain.c: moved Uri handling to assembly.c
15384         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
15385         work when using a file Uri in *nix and windows.
15386
15387         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
15388         GetReferencedAssemblies.
15389
15390 2003-03-18  Dick Porter  <dick@ximian.com>
15391
15392         * icall.c: Rename a couple of internal calls
15393
15394         * threads.c: Set the thread state to Stopped when a thread exits.
15395         Fixes bug 39377.
15396
15397 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
15398
15399         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
15400         New icall.
15401
15402         * object.c (mono_class_vtable): fix warning.
15403
15404 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
15405
15406         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
15407
15408         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
15409         memory.
15410         (method_encode_clauses): Create exception info structures in the right
15411         order.
15412         (mono_reflection_setup_internal_class): Initialize supertypes field.
15413
15414         * class.c object.c: Handle interfaces which implement other interfaces 
15415         correctly.
15416
15417         * class.h class.c: Move the supertypes array initialization code into 
15418         a separate function so it can be used for dynamic types too. Also call
15419         it earlier, in mono_class_init(), since it can be used before the
15420         type is initialized.
15421
15422 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15423
15424         * Makefile.am:
15425         * assembly.c:
15426         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
15427
15428         * appdomain.c:
15429         * appdomain.h:
15430         * marshal.c:
15431         * object.c: remove warnings.
15432
15433 2003-03-13  Martin Baulig  <martin@ximian.com>
15434
15435         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
15436         (MonoDebugLexicalBlockEntry): New types.
15437
15438         * debug-mono-symfile.c
15439         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
15440
15441 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15442
15443         * process.c: ret can be any non-zero value accroding to MS doc.
15444
15445 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
15446
15447         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
15448         fixing a warning for a miss-used prototype, would have cause
15449         random memory corruption.
15450
15451 2003-03-07  Martin Baulig  <martin@ximian.com>
15452
15453         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
15454         getting really annoying ....
15455
15456 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
15457
15458         * reflection.c (fixup_method): added support for array methods.
15459
15460 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
15461
15462         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
15463         (pointed out by Michael Adams).
15464
15465 2003-03-04  Dick Porter  <dick@ximian.com>
15466
15467         * icall.c: Temporarily reverted the Double and Single ToString()
15468         change, because it broke nunit.
15469
15470 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
15471
15472         * object.h, threads.h: make include files compatible with C++
15473         (patch by Jerome Laban <jlaban@wanadoo.fr>).
15474
15475 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15476
15477         * icall.c: Erased ToString helper functions for Double and Single.
15478         Now, that implementations ar all in managed code (Double and Single
15479         Formatters).
15480
15481 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
15482
15483         * appdomain.c: Added method for initializing the default context of
15484         a domain. Added internal call for getting the default context.
15485         * appdomain.h: Added context variable in MonoDomain struct.
15486         * domain.c: mono_domain_set also sets the default context of the domain
15487         * icall.c: Mapped internal method InternalGetDefaultContext.
15488         * object.c: mono_object_get_virtual_method returns always a remoting
15489         wrapper if the object is a transparent proxy.
15490         mono_runtime_invoke_array: when creating an object by calling the
15491         constructor, if the created object is a proxy, then the constructor should
15492         be called using the a remoting wrapper.
15493
15494 2003-03-03  Dick Porter  <dick@ximian.com>
15495
15496         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
15497         variable so it compiles on solaris.  Problem spotted by
15498         Christopher Taylor <ct@cs.clemson.edu>
15499
15500 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15501
15502         * appdomain.c:
15503         (get_info_from_assembly_name): don't leak value.
15504
15505         * icall.c:
15506         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
15507         result.
15508
15509 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
15510
15511         * assembly.c: export mono_image_load_references ().
15512         * class.c: handle function pointers. mono_class_from_name() now
15513         supports nested type names directly.
15514
15515 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
15516
15517         * reflection.h reflection.c: Encode already created dynamic methods 
15518         and fields correctly as a DEF instead of a REF.
15519
15520         * reflection.c: Get rid of the force_ref argument to 
15521         mono_image_typedef_or_ref since it was wrong in the first place.
15522
15523         * string-icalls.c: add error checking to string constructors according
15524         to the MSDN docs.
15525
15526         * reflection.c: Emit types in the order their TypeBuilders were 
15527         created. Previously, a new table index was assigned to each type before
15528         the tables were emitted. This was wrong because the signature blob
15529         might already refer to a type by its original table index.
15530
15531 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
15532
15533         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
15534         change.
15535         
15536 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15537
15538         * Makefile.am: make assemblies dir have \ instead of / on windows.
15539
15540 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
15541
15542         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
15543         iterate over the NESTEDCLASS table using a linear search since the
15544         table is not guaranteed to be sorted by the secondary key.
15545
15546         * class.c (mono_class_create_from_typedef): fixed up call to
15547         mono_metadata_nesting_typedef.
15548         
15549 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
15550
15551         * marshal.c (mono_string_to_byvalstr): clear the memory as
15552         suggested by Jerome Laban <jlaban@wanadoo.fr>
15553
15554 2003-02-26  Dick Porter  <dick@ximian.com>
15555
15556         * process.c: Cope with padding in .rsrc blocks
15557
15558 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
15559
15560         * metadata.h: reverted the filter_len change, it breaks reflection
15561         
15562 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
15563
15564         * metadata.h: added a new field to store the filter_len
15565         
15566
15567 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
15568
15569         * reflection.c: handle custom attributes for types and members
15570         created with Reflection.Emit (bug#38422).
15571
15572 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
15573
15574         * reflection.c: define RTSpecialName automatically for constructors for
15575         compatibility with MS.NET.
15576
15577         * reflection.c (mono_reflection_create_runtime_class): initialize
15578         nested_in field of dynamically created classes.
15579
15580 2003-02-22  Martin Baulig  <martin@ximian.com>
15581
15582         * debug-mono-symfile.h: Incremented version number.
15583
15584 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
15585
15586         * object.h icall.c process.c: fix warnings.
15587
15588 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
15589
15590         * appdomain.h appdomain.c:
15591         (mono_domain_try_type_resolve): split the 
15592         name_or_tb argument into a name and a tb argument.
15593         (mono_domain_has_type_resolve): new function to check whenever the
15594         application has registered a TypeResolve event handler.
15595         
15596         * icall.c reflection.h reflection.c: move the type resolve logic into
15597         mono_reflection_get_type () so it will be invoked when 
15598         Assembly::GetType () is called.
15599
15600         * reflection.c:
15601         (mono_reflection_get_type): renamed to get_type_internal.
15602         (mono_reflection_get_type): fixed type name generation so it works 
15603         for nested types too.
15604         (mono_reflection_get_type): call has_type_resolve () to avoid the 
15605         costly type name generation if there is no resolve event handler.
15606
15607 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15608
15609         * class.c, image.c: load exported types from file references.
15610
15611 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
15612
15613         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
15614           used to cache the managed methods used to create proxies and make 
15615           remote invocation of methods.
15616         * class.h: Added in MonoVTable a flag to indicate that a class needs 
15617           to be remotely created.
15618         * object.c: Modified the method mono_class_vtable(). It now initializes 
15619           the remote flag of the vtable. Modified mono_object_new_specific(), 
15620           so now it checks the remote flag.
15621         * icall.c: Added a couple of internal methods, one for enabling instance 
15622           creation interception for a type, and one for creating objects bypassing
15623           the remote check.
15624
15625 2003-02-18  Martin Baulig  <martin@ximian.com>
15626
15627         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
15628         New interncall to get a method's metadata token.
15629
15630         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
15631         New interncall for the debugger.
15632
15633 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
15634
15635         * class.c (mono_class_setup_vtable): allocate supertype array
15636
15637 2003-02-18  Martin Baulig  <martin@ximian.com>
15638
15639         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
15640
15641 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15642
15643         * reflection.c:
15644         (assembly_name_to_aname): jump over unknown properties (i've found
15645         something like: 'type, assembly, version=xxx, custom=null, public...',
15646         so now will ignore custom=null and still get the rest of the values).
15647
15648 2003-02-17  Dick Porter  <dick@ximian.com>
15649
15650         * threads.c: Have Thread.Start() wait for a semaphore to signal
15651         that the thread has set up all its local data.  This fixes bug
15652         34323, where Abort() raced the new thread's TLS data.
15653
15654         Also removes the handle_store() call from start_wrapper, because
15655         threads are now always created suspended and there is no longer a
15656         race between the parent and child threads to store the info.
15657
15658 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
15659
15660         * image.c: explain the #- heap issue in a message, hopefully
15661         avoiding FAQs on mono-list.
15662
15663 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15664
15665         * icall.c:
15666         (GetEntryAssembly): if the domain has not invoked
15667         AppDomain.ExecuteAssembly yet, return the assembly of the default
15668         AppDomain.
15669
15670 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
15671
15672         * class.c (mono_ldtoken): make it work in dynamic assemblies.
15673
15674 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
15675
15676         * metadata.c, reflection.c: simple speedup to type hash
15677         and equals code.
15678
15679 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
15680
15681         * image.c, image.h, class.c, assembly.c: move module loading
15682         to MonoImage. When loading metadata, consider alignemnet from
15683         the start of metadata, not from the metadata address in memory.
15684
15685 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
15686
15687         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
15688         AssemblyBuilder objects. Factored out custom attribute creation into
15689         a separate function.
15690         (create_custom_attr): new function to create custom attributes.
15691
15692 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
15693
15694         * Makefile.am: Got tired of typing the full pathname to pedump.
15695         Until there is another option, am installing this.
15696
15697 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
15698
15699         * class.c (class_compute_field_layout): always set field->parent 
15700         (mono_ldtoken): use mono_defaults.fieldhandle_class;
15701
15702 2003-02-11  Dick Porter  <dick@ximian.com>
15703
15704         * threads-types.h:
15705         * monitor.c: Rewrote Monitor, making lock much faster and
15706         Pulse/Wait work as specified.  Also uses much fewer handles, and only
15707         creates them as needed.
15708
15709         * exception.c: Added SynchronizationLockException
15710
15711         * threads.c: Deleted old Monitor implementation.  The new one is
15712         in a new file.
15713
15714 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
15715
15716         * class.c: handled TypedReference type code. Set the correct size for
15717         class data. Setup interface_offsets for interface classes, too.
15718
15719 2003-02-09  Martin Baulig  <martin@ximian.com>
15720
15721         * debug-mono-symfile.h: Reflect latest symbol writer changes.
15722
15723 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
15724
15725         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
15726         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
15727         * object.c: fixed mono_object_get_virtual_method () for interfaces.
15728         * verify.c: check for code that runs after the end of the method.
15729
15730 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15731
15732         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
15733         "System.Math::Round2".
15734         * sysmath.h: Added Floor, Round and Round2 definitions.
15735         * sysmath.c: Modified certain functions that were not 100% compliant
15736         with MS.NET (math precision) and added the implementation of Floor,
15737         Round and Round2.
15738
15739 2003-02-07  Martin Baulig  <martin@ximian.com>
15740
15741         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
15742
15743 2003-02-07  Martin Baulig  <martin@ximian.com>
15744
15745         * debug-mono-symfile.c: Reflected latest symwriter changes.
15746         (mono_debug_create_mono_symbol_file): Removed.
15747         (mono_debug_open_mono_symbol_file): Take an argument which
15748         specifies whether to create a dynamic symbol file.
15749
15750 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
15751
15752         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
15753
15754 2003-02-05  Martin Baulig  <martin@ximian.com>
15755
15756         * reflection.c (mono_image_build_metadata): Make this public,
15757         protect it against being called multiple times, don't create
15758         resources and don't build the compressed metadata here.
15759         (mono_image_create_pefile): Do this here.
15760
15761         * icall.c
15762         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
15763
15764 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15765
15766         * socket-io.c: fixed bug #36322.
15767
15768 2003-02-06  Piers Haken <piersh@friskit.com>
15769
15770         * appdomain.[ch]:
15771         * class.h:
15772         * debug-mono-symfile.c:
15773         * icall.c:
15774         * loader.c:
15775         * mono-config.c:
15776         * monosn.c:
15777         * reflection.c:
15778         * socket-io.c: warning cleanups
15779
15780 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
15781
15782         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
15783         function. works like remoting invoke, but does a check for the Proxy first.
15784
15785 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
15786
15787         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
15788
15789 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
15790
15791         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
15792         array of pointers.
15793         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
15794         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
15795
15796         * object.c (mono_store_remote_field_new): used by the new jit
15797         instead of mono_store_remote_field
15798         (mono_load_remote_field_new): used by the new jit
15799         instead of mono_load_remote_field
15800
15801 2003-02-05  Patrik Torstensson
15802
15803         * appdomain.c: changed unload to take the domain id instead
15804         of domain
15805         
15806         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
15807
15808
15809 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15810
15811         * appdomain.c: don't look for assemblies in ApplicationBase if
15812         PrivateBinPathProbe is set.
15813
15814 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15815
15816         * object.c: make the first argument in main_args contain the absolute
15817         path to the assembly. Fixes bug #37511.
15818
15819 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15820
15821         * icall.c: get correct UTC offset for countries not using daylight
15822         time saving. Fixes bug #30030.
15823
15824 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15825
15826         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
15827         and 1 are the family).
15828
15829 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
15830
15831         * icall.c (ves_icall_InternalExecute): removed wrong assertion
15832
15833         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
15834
15835 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
15836
15837         * reflection.c: added support for SignatureHelper tokens, which is
15838         needed by the Calli opcode.
15839
15840         * reflection.h: track changes to SignatureHelper class.
15841
15842         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
15843
15844 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15845
15846         * appdomain.c: fixed loading assemblies from PrivateBinPath.
15847
15848 2003-02-03  Patrik Torstensson
15849         * appdomain.[c|h], domain.c : 
15850          - Added support for getting a domain via domain id
15851          - Support for setting and getting domain from System.AppDomain 
15852            (used in cross appdomain channel)
15853          - Added support for get/set for a MonoAppContext on a thread 
15854            (Context class in System.Runtime.Remoting.Contexts),
15855          - Removed hack in Get/SetData and ExecuteAssembly.
15856         
15857         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
15858         the managed world to get control when a proxy is created.
15859
15860         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
15861         
15862 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
15863
15864         * icall.c
15865         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15866         Populate the codebase field as well.
15867
15868 2003-02-02  Martin Baulig  <martin@ximian.com>
15869
15870         * debug-mono-symfile.c
15871         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
15872         (mono_debug_symfile_add_method): Allow interncalls.
15873
15874 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15875
15876         * icall.c: throw parse exception if strtod fails or the string is empty.
15877
15878 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
15879
15880         * marshal.c: handle object type separately from defined
15881         class types.
15882
15883 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
15884
15885         * marshal.c: handle NATIVE_LPSTR for strings when it's
15886         explicitly specified.
15887
15888 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
15889
15890         * reflection.c, reflection.h, icall.c: setup the reflection
15891         handle cache for ModuleBuilders and AssemblyBuilders.
15892
15893 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
15894
15895         * reflection.c (reflection_methodbuilder_to_mono_method): set
15896         pinvoke flag
15897
15898 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15899
15900         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
15901
15902 2003-01-29  Dick Porter  <dick@ximian.com>
15903
15904         * threads.c: No need for the fake_thread kludge now that Thread
15905         doesn't run a class constructor
15906         
15907 2003-01-29  Dick Porter  <dick@ximian.com>
15908
15909         * threads.c: Use g_direct_hash instead of the rather bogus
15910         g_int_hash
15911
15912 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
15913
15914         * marshal.c (mono_marshal_get_native_wrapper): add check for null
15915         (fix pinvoke12.exe)
15916         (mono_marshal_get_struct_to_ptr): generate valid IL code
15917         (mono_marshal_get_ptr_to_struct): generate valid IL code
15918         (*): correctly set sig->pinvoke, we need to memdup the signature
15919         to do that
15920
15921 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15922
15923         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
15924         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
15925
15926 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
15927
15928         * profiler.c: provide more callers information.
15929
15930 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
15931
15932         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
15933
15934         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
15935
15936         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
15937
15938 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
15939
15940         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
15941         exception instead of going into an infinite loop on dates which it 
15942         can't yet handle.
15943
15944         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
15945         out-of-range exception if needed.
15946
15947         * class.c (mono_class_setup_vtable): allow a virtual method to provide
15948         an implementation for an interface method and to override an inherited
15949         method at the same time. 
15950         Imagine a scenario when a virtual method is used to override a
15951         virtual abstract method in a parent class, and this same method 
15952         provides an implementation for an method inherited from an interface. 
15953         In this case, the interface resolution code will set im->slot, which 
15954         means that the virtual method override pass will skip this method 
15955         which means a pointer to the abstract method inherited from the parent
15956         will remain in the vtable of this non-abstract class.
15957
15958         * class.c: (mono_class_setup_vtable): continue search for a real 
15959         method if only an abstract method is found.     
15960
15961 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
15962
15963         * reflection.c: add size to encoding for ByValStr and ByValArray
15964         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
15965
15966 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
15967
15968         * class.c (mono_class_setup_vtable): pass the override info as an
15969         argument.
15970
15971         * class.c (mono_class_setup_vtable): set the slot of overriding methods
15972         correctly.
15973         
15974         * reflection.c (ensure_runtime_vtable); add support for method 
15975         overrides.
15976         
15977 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
15978
15979         * reflection.c (resolution_scope_from_image): Hack to work to work with
15980         dynamic assemblies.
15981
15982         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
15983         added a 'force_ref' argument to force this function to allways return 
15984         a TypeRef. This is needed by mono_image_get_memberref_token ().
15985         
15986 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
15987
15988         * reflection.c (mono_image_get_type_info): interfaces really don't have
15989         a parent.
15990
15991         * reflection.c (mono_image_basic_init): fill out missing fields of
15992         image structure.
15993
15994         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
15995         dynamic assemblies. This is required so dynamic assemblies show up in
15996         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
15997         Type::GetType() etc. This is consistent with MS behaviour.
15998
15999         * image.c image.h reflection.c: add newly created classes to the name 
16000         cache so mono_class_get () will find them.      
16001
16002 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16003
16004         First part of changes to get IKVM.NET running under mono.
16005         
16006         * appdomain.h, appdomain.c: added new function 
16007         mono_domain_try_type_resolve() which will emit TypeResolve events. 
16008         This function will call AppDomain::DoTypeResolve to do the actual work.
16009
16010         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
16011         moved existing code dealing with dynamic tokens to a new function 
16012         called mono_reflection_lookup_dynamic_token (). This function will 
16013         raise TypeResolve events when appropriate. Since reflection.c is not 
16014         part of libmetadata, a new hook function called 
16015         mono_lookup_dynamic_token() is added to class.c which will call this.
16016
16017         * assembly.h assembly.c: make the invoke_load_hook function public,
16018         so it can be called for dynamic assemblies.
16019
16020         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
16021
16022         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
16023         type isn't found.
16024
16025         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
16026         MonoGHashTable, since it contains pointers to objects which the GC 
16027         needs to track.
16028
16029         * assembly.c (search_loaded): remove unused variable.
16030         
16031 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
16032
16033         * object.c: fixed issue exposed by gcc-generated IL programs
16034         that use RVA data for pointers.
16035
16036 2003-01-25  Martin Baulig  <martin@ximian.com>
16037
16038         * threads.c (start_wrapper): Moved the initialization of
16039         `start_func' above the mono_new_thread_init() call to which we
16040         pass it as argument.
16041
16042 2003-01-24  Martin Baulig  <martin@ximian.com>
16043
16044         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
16045         the MonoThread pointer.
16046
16047 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
16048
16049         * icall.c: Rename `PowImpl' to Pow.
16050
16051 2003-01-23  Dick Porter  <dick@ximian.com>
16052
16053         * threads.c (start_wrapper): Create a Thread object if needed, so
16054         the Main() thread can do the class initialisation in a subthread
16055         that has been set up to allow managed code execution.
16056
16057         Pass the thread ID instead of the MonoThread pointer to the thread
16058         start and attach callbacks.  This change is required, because the
16059         jit thread start callback must be called _before_ the Thread
16060         object can be created.
16061         
16062         (mono_thread_init): Removed much object creation code that is no
16063         longer needed.  No managed code is called from here now.
16064
16065         * object.c (mono_runtime_exec_managed_code): Create a subthread
16066         for Main, and call back to the runtime to use it.
16067         Set the exit code when Main exits.
16068
16069         * gc.c: Make sure domain finalisation happens in a subthread.
16070         Re-enable threaded GC, fixing bug 31333 (again).
16071
16072         * environment.c: System.Environment internall calls (so far just
16073         ExitCode is here, the others are still in icall.c)
16074
16075         * appdomain.c (mono_runtime_cleanup): All threads running managed
16076         code should have finished before mono_runtime_cleanup() is
16077         reached, so no need to clean up threads.
16078
16079 2003-01-22  Martin Baulig  <martin@ximian.com>
16080
16081         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
16082         `gpointer func' arguments.      
16083         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
16084         but added `MonoThread *thread' argument.
16085         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
16086
16087         * threads.c (mono_new_thread_init): Added `gpointer func' argument
16088         and pass it to the mono_thread_start_cb callback.
16089         (mono_install_thread_callbacks): New public function to install a
16090         set of callbacks which are set by the debugger.
16091         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
16092
16093 2003-01-22  Martin Baulig  <martin@ximian.com>
16094
16095         * Makefile.am: Install debug-mono-symfile.h.
16096
16097 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
16098
16099         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
16100
16101 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
16102
16103         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
16104         * class.c (mono_ptr_class_get): correctly set access levels of pointers
16105         (mono_array_class_get): correctly set access levels of arrays
16106
16107 2003-01-20      Patrik Torstensson
16108         * image.h (MonoAssemblyName): changed major, minor, build, revision
16109         from signed to unsigned.
16110
16111 2003-01-20  sean kasun <skasun@azstarnet.com>
16112
16113         * reflection.c (load_cattr_value): Now this handles
16114         MONO_TYPE_SZARRAY.  Fixes bug #35629
16115
16116 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
16117
16118         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
16119         integer value
16120
16121 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16122
16123         * decimal.c: fixed bug #26056.
16124
16125 2003-01-17  Martin Baulig  <martin@ximian.com>
16126
16127         * gc.c: Raise an ExecutionEngineException instead of using g_error().
16128
16129 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16130
16131         * exception.[ch]:
16132         (mono_get_exception_type_initialization): new function.
16133
16134         * object.c: throw a TypeInitializationException when an exception is
16135         thrown invoking the class constructor.
16136
16137 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16138
16139         * reflection.c: fixed attribute reading.
16140
16141 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16142
16143         * icall.c:
16144         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
16145         provided, look for the type in the calling assembly and then in
16146         mscorlib; if the assembly name is provided, only try that one.
16147
16148 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
16149
16150         * object.c: register the vtable before there is a chance it's
16151         queried again recursively.
16152
16153 2003-01-13  Duncan Mak  <duncan@ximian.com>
16154
16155         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
16156         gc-internal.h. 
16157         
16158 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
16159
16160         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
16161
16162 2003-01-11  Martin Baulig  <martin@ximian.com>
16163
16164         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
16165         this to 20 for the release.
16166
16167 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
16168
16169         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
16170
16171         * loader.c (mono_method_get_marshal_info): bug fix
16172
16173         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
16174         structures with explicit layout
16175
16176 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
16177
16178         * profiler.c: made the output more readable (and sorted). 
16179         Added caller information for the allocation profiler.
16180
16181 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
16182
16183         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
16184
16185 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16186
16187         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
16188         to get value types.
16189         
16190 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
16191
16192         * object.c, profiler.h, profiler.c, profiler-private.h:
16193         Added object allocation profiler.
16194
16195 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
16196
16197         * reflection.h, reflection.c: handle global methods.
16198         Compress blob entries.
16199
16200 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
16201
16202         * marshal.c: fix compilation.
16203
16204 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
16205
16206         * loader.c (mono_method_get_marshal_info): impl.
16207
16208         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
16209
16210 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16211
16212         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
16213         for reference types.
16214
16215 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
16216
16217         * loader.c: fixed off by one error in loaded parameter names.
16218
16219 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
16220
16221         * marshal.c (mono_marshal_get_icall_wrapper): like
16222         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
16223         instead of a MonoMethod.
16224
16225 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16226
16227         * decimal.c: fixed bug #36537.
16228
16229 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
16230
16231         * marshal.c: throw a missing method exception if a
16232         P/Invoke method is not found.
16233
16234 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
16235
16236         * icall.c: allow a null this for constructors.
16237
16238 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
16239
16240         * icall.c: raise the proper exceptions if the arguments to the
16241         internal Invoke are incorrect.
16242
16243 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
16244
16245         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
16246
16247 2003-01-03  Martin Baulig  <martin@ximian.com>
16248
16249         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
16250
16251 2002-12-31  Martin Baulig  <martin@ximian.com>
16252
16253         * debug-mono-symfile.c: Completely rewrote the type section.
16254         Instead of using individual malloc()ed fields, we use one big
16255         continuous memory area and offsets into this area.
16256         See the comments in the source code for details.
16257
16258 2002-12-30  Martin Baulig  <martin@ximian.com>
16259
16260         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
16261
16262 2002-12-30  Martin Baulig  <martin@ximian.com>
16263
16264         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
16265         line number table in this data blob instead of using an external
16266         pointer.
16267
16268 2002-12-28  Martin Baulig  <martin@ximian.com>
16269
16270         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
16271
16272 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
16273
16274         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
16275         as a boxed return type.
16276
16277 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
16278
16279         * appdomain.c
16280         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
16281         g_build_filename to properly get separators on the filename created.
16282
16283         * object.h: Small change, introduce MonoMarshalByRefObject to
16284         track the layout of that structure in the C# universe as we make
16285         changes there.
16286
16287 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
16288
16289         * object.c: removed assert to allow static fields on interfaces.
16290         * loader.c: a TypeSpec may be used for any type, not just arrays.
16291
16292 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
16293
16294         * class.c, class.h: added mono_class_array_element_size ().
16295         Ignore static methods in interfaces.
16296
16297 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16298
16299         * threads.c: fixed the build under cygwin.
16300
16301 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
16302
16303         * reflection.c: handle nullref constants. Allocate keys for
16304         reflection handles with the GC.
16305
16306 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
16307
16308         * threads.c, threads.h: added mono_thread_get_abort_signal()
16309         to get a suitable signal for thread abort.
16310
16311 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
16312
16313         * metadata.c: fix handling of ExportedType table.
16314
16315 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16316
16317         * icall.c: added WriteWindowsDebugString internal call.
16318
16319 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16320
16321         * reflection.h: added fields to match C# implementation.
16322
16323 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16324
16325         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
16326
16327 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
16328
16329         * gc.h, gc-internal.h: Rename header for GC internal calls to
16330         gc-internal.h from gc.h as to not clash with Boehm GC having its
16331         header installed as <gc.h> in outside include paths.
16332         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
16333         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
16334
16335 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16336
16337         * icall.c: assign minor, build and revision in FillName.
16338
16339 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
16340
16341         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
16342         Added support for running code generated by Reflection.Emit.
16343
16344 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16345
16346         * appdomain.c: check for NULL argument in LoadFrom.
16347
16348 2002-12-10  Dick Porter  <dick@ximian.com>
16349
16350         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
16351
16352 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16353
16354         * appdomain.c: fix buglet when building exe file name.  Handle full
16355         assembly name (needed after latest changes to AssemblyName).
16356         * image.c:
16357         (mono_image_close): free some hashtables.
16358
16359 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
16360
16361         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
16362         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
16363         on some systems (redhat 7.3) 
16364
16365 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
16366
16367         * threads.c: delete the critical section of a sync block,
16368         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
16369
16370 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
16371
16372         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
16373
16374 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16375
16376         * appdomain.[ch]: handle the assembly preload event to try loading the
16377         assemblies using the paths we have in the current domain.
16378
16379         * assembly.[ch]: created an assembly preload hook that is called to try
16380         loading the assembly by other means that the ones provided here.
16381
16382         * domain.c: initialize the domain search path.
16383
16384         From now on, assemblies (TODO: except corlib and System) are loaded
16385         according to these rules when using mono_assembly_load ():
16386
16387                 1. It tries to load the assembly from the ApplicationBase
16388                 of the current domain appending .dll and .exe (TODO: have to
16389                 try loading from name/name.dll and name/name.exe).
16390
16391                 2. It tries the search path specified in PrivateBinPath for the
16392                 current domain (if any).
16393
16394                 3. Previous behavior.
16395
16396 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
16397
16398         * icall.c: implemented GetInterfaceMap() related icall.
16399         * domain.c, loader.h: load MethodInfo in mono_defaults.
16400
16401 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
16402
16403         * gc.c: disable the finalizer thread for now, untill all the issues
16404         with it are resolved.
16405
16406 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
16407
16408         * string-icalls.c: handle embedded nulls in string ctor when the
16409         length is specified.
16410
16411 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
16412
16413         * class.c: look for explicit interface implementation in parent
16414         classes, too.
16415
16416 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
16417
16418         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
16419
16420 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
16421
16422         * gc.c: protect handles with a critical section.
16423
16424 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16425
16426         * icall.c:
16427         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
16428         parameters. If no assembly specified, try getting the type from all
16429         the assemblies in the current domain, else, load the assembly and get
16430         the type from it.
16431
16432 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16433
16434         * marshal.c: applied patch from Aleksey Demakov that fixes
16435         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
16436
16437 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16438
16439         * icall.c: fixed get_location.
16440
16441 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
16442
16443         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
16444         declarations to make it work with older gcc. 
16445
16446         * loader.c (mono_get_method): set signature->pinvoke for native calls
16447
16448 2002-11-20  Dick Porter  <dick@ximian.com>
16449
16450         * threads.c (mono_thread_init): Set the main thread's handle
16451
16452 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
16453
16454         * gc.c: allow compilation without GC support. Changed to match the
16455         mono coding style.
16456
16457 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
16458
16459         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
16460
16461 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
16462
16463         * reflection.c: set a public key token on the core assemblies.
16464
16465 2002-11-18  Dick Porter  <dick@ximian.com>
16466
16467         * threads.c: Split out some thread initialisation so that other
16468         files can set the start callback function.
16469
16470         * gc.c: Run finalisers in a separate thread, to avoid stack
16471         overflow.  Fixes bug 31333.
16472
16473         * appdomain.c: Set up GC finalisation thread.
16474
16475         * reflection.c: 
16476         * object.c: 
16477         * domain.c: Use gc.h macros for GC_malloc
16478         
16479 2002-11-15  Dick Porter  <dick@ximian.com>
16480
16481         * threadpool.c: 
16482         * threads.c:
16483         * appdomain.c: Removed mono_runtime_init_with_attach(),
16484         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
16485         merging the extra parameter with the existing function.  Removed
16486         unneeded code in mono_thread_attach().
16487
16488 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
16489
16490         * image.c (mono_image_loaded_by_guid): a method to get loaded
16491         images by guid. 
16492         (load_metadata_ptrs): we store the guid as string.
16493
16494 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
16495
16496         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
16497
16498         * metadata.c (mono_guid_to_string): imported method form Zoltan
16499         Varga (slightly modified)
16500
16501         * assembly.c (mono_assembly_open): load precompiled code
16502
16503         * loader.h (MonoMethod): we store the method token for use in the
16504         aot compiler. 
16505
16506 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16507
16508         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
16509         the hook function called when an assembly is loaded.
16510         
16511         * domain.c: Modified file.
16512         (mono_domain_assembly_load): removed hash table insertion of assemblies.
16513
16514         Fixes bug #33196.
16515
16516 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
16517
16518         * reflection.c: Map PEFileKind to the value expected by the WinNT
16519         image loader. 
16520
16521 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16522
16523         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
16524         Read until the buffer is filled completely.
16525
16526 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16527
16528         * icall.c: implemented MonoType.InternalGetEvent ().
16529
16530 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16531
16532         * appdomain.c: implemented InitAppDomainSetup. Delayed
16533         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
16534         the entry_assembly.
16535
16536         * assembly.c: base_dir is now an absolute path ending with
16537         G_DIR_SEPARATOR.
16538
16539         * icall.c: modified get_location according to the above changes.
16540
16541         * object.c: init AppDomain.SetupInformation for the default domain after
16542         we have the entry assembly.
16543
16544         * domain.c: when unloading a domain, setup = NULL.
16545
16546 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
16547
16548         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
16549
16550 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
16551
16552         * object.h, object.c: introduced mono_object_get_virtual_method ()
16553         to lookup the method invoked on an object when a callvirt is done on
16554         a method.
16555         * icall.c: make MethodInfo::Invoke() always do a virtual call.
16556
16557 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16558
16559         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
16560         current domain when loaded an assembly and failed to load it.
16561
16562         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
16563
16564 2002-10-31  Dick Porter  <dick@ximian.com>
16565
16566         * icall.c: 
16567         * file-io.h: 
16568         * file-io.c: Return the error status in a parameter, as the
16569         GetLastError() value has long since been blown away if we try and
16570         look it up in a subsequent internal call invocation.  Delete the
16571         GetLastError() internal call, because it's useless.
16572
16573 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
16574
16575         * class.[ch]: added cast_class to fix bug 29517
16576
16577 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
16578
16579         * marshal.c: create valid IL code in the filter clause:
16580         the new JIT is less forgiving:-)
16581
16582 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16583
16584         * icall.c: removed get_property internal call.
16585
16586 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
16587
16588         * appdomain.h domain.c: Added an ID to appdomains.
16589         
16590         * threads.c threads.h icall.c: Implement icall
16591         Thread:GetDomainID(), and remove unused icall 
16592         CurrentThreadDomain_internal.
16593
16594 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16595
16596         * icall.c: Don't recurse through the base types in GetConstructor.
16597         Fixes bug #32063. 
16598
16599 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
16600
16601         * mempool.h, mempool.c: added mono_mempool_empty() and
16602         mono_mempool_stats().
16603
16604 2002-10-23  Dick Porter  <dick@ximian.com>
16605
16606         * file-io.c: 
16607         * file-io.h: 
16608         * icall.c: Added MonoIO.GetFileType internal call
16609
16610 2002-10-17  Dick Porter  <dick@ximian.com>
16611
16612         * appdomain.c (mono_runtime_cleanup): Don't signal the async
16613         delegate semaphore before waiting for all threads to finish,
16614         because new threads can also call async delegates.  Fixes bug
16615         32004.
16616
16617         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
16618         of 3 seconds, in case another async job is queued.  (This part is
16619         needed because the bug fix reintroduced the 3s exit lag.)  This
16620         makes the mono_runtime_shutdown flag superfluous.
16621
16622 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
16623
16624         * reflection.c: include ehader size in method section headers.
16625         Really check for suplicated modules entries.
16626
16627 2002-10-17  Martin Baulig  <martin@gnome.org>
16628
16629         * debug-mono-symfile.c: Added back support for locals.
16630
16631 2002-10-14  Martin Baulig  <martin@gnome.org>
16632
16633         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
16634         MONO_TYPE_VOID.
16635
16636 2002-10-14  Martin Baulig  <martin@gnome.org>
16637
16638         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
16639         mono_class_get() instead of looking in the class cache. 
16640
16641 2002-10-13  Martin Baulig  <martin@gnome.org>
16642
16643         * debug-mono-symfile.c: Set version number to 28, include the
16644         signature in method names.
16645
16646 2002-10-13  Martin Baulig  <martin@gnome.org>
16647
16648         * debug-mono-symfile.h: Set version number to 27.
16649
16650 2002-10-11  Martin Baulig  <martin@gnome.org>
16651
16652         * gc.c: Don't register/unregister NULL pointers as disappearing links.
16653
16654 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
16655
16656         * metadata.c, metadata.h: added helper function to allocate signatures.
16657
16658 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16659
16660         * icall.c: added internal call to get the location of machine.config.
16661
16662 2002-10-08  Martin Baulig  <martin@gnome.org>
16663
16664         * debug-mono-symfile.c: Ignore classes with a pending init for the
16665         moment.
16666
16667 2002-10-03  Dick Porter  <dick@ximian.com>
16668
16669         * threads.c: Freebsd pthread_t is a pointer
16670
16671 2002-10-03  Dick Porter  <dick@ximian.com>
16672
16673         * socket-io.c: Implemented GetHostName_internal
16674
16675 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16676
16677         * mono-config.c:
16678         (mono_config_parse_file): don't leak the text.
16679
16680 2002-10-02  Martin Baulig  <martin@gnome.org>
16681
16682         * debug-mono-symfile.c: Added support for methods.
16683
16684 2002-10-01  Martin Baulig  <martin@gnome.org>
16685
16686         * debug-mono-symfile.c: Don't emit methods and line numbers for
16687         the dynamic symbol file, just write the type table.  We can easily
16688         have an external helper program which creates a symbol file for an
16689         IL file.        
16690
16691 2002-10-01  Dick Porter  <dick@ximian.com>
16692
16693         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
16694         Only add the handle to the cleanup array when we're about to
16695         launch the thread.  Bug 31425 deadlocked when the test was run on
16696         mono under w32.
16697
16698 2002-10-01  Martin Baulig  <martin@gnome.org>
16699
16700         * debug-mono-symfile.c: Added support for properties.
16701
16702 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
16703
16704         * reflection.c: unaligned store fix from Mark Crichton
16705         <crichton@gimp.org>.
16706
16707 2002-09-27  Martin Baulig  <martin@gnome.org>
16708
16709         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
16710         New interncall.
16711
16712 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
16713
16714         * assembly.h, assembly.c: use a sane API to hook into the assembly
16715         loading process instead of a useless special-purpouse hack
16716         (ngen needs a hook, too, for example).
16717
16718 2002-09-27  Dick Porter  <dick@ximian.com>
16719
16720         * threads.c (mono_thread_init): Call GetCurrentProcess() so
16721         io-layer can set up some process handle info.  Not needed on w32,
16722         but doesn't hurt either.
16723
16724         * process.c: Pass the program name in the second parameter to
16725         CreateProcess, so the path is searched.  Include the working
16726         directory. Implemented process name, process enumeration, and some
16727         process detail internal calls.
16728         
16729         * icall.c: Added internal calls for process lookup, and some
16730         process details
16731
16732 2002-09-26  Martin Baulig  <martin@gnome.org>
16733
16734         * assembly.c (mono_install_open_assembly_hook): New global
16735         function to install a function to be invoked each time a new
16736         assembly is loaded.
16737         (mono_assembly_open): Run this callback function if set.
16738
16739         * debug-mono-symfile.c: Put back line numbers for the dynamic
16740         symbol file and also record the .il file as source file.  This
16741         allows us to install the temporary symbol file as `file.dbg' just
16742         like a compiler-generated one.
16743
16744 2002-09-26  Nick Zigarovich <nick@chemlab.org>
16745
16746         * Corrected typo in gc.c (BOHEM vs BOEHM).
16747
16748 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16749
16750         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
16751         GetProperties. Also avoid calling g_slist_length in GetProperties and
16752         GetMethods.
16753
16754 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
16755
16756         * reflection.c: avoid unaligned stores (bug spotted by
16757         Mark Crichton  <crichton@gimp.org>).
16758
16759 2002-09-25  Martin Baulig  <martin@gnome.org>
16760
16761         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
16762         instead of guint64 for addresses and added prologue/epilogue info.
16763
16764 2002-09-25  Martin Baulig  <martin@gnome.org>
16765
16766         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
16767         store line number info.  For the dynamic symbol file, we only need
16768         to provide the JIT generated dynamic line number info for the dynamic
16769         symbol file.
16770
16771 2002-09-25  Martin Baulig  <martin@gnome.org>
16772
16773         * debug-mono-symfile.h: Incremented version number.
16774
16775 2002-09-24  Martin Baulig  <martin@gnome.org>
16776
16777         * class.c (mono_debugger_class_init_func): New global function
16778         pointer variable.
16779         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
16780         call it.
16781
16782         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
16783         function.  This is called via the mono_debugger_class_init_func
16784         hook to add all types to the dynamic type table.
16785         (ves_icall_MonoDebugger_GetType): New interncall to get a class
16786         from its metadata token.
16787
16788         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
16789         New interncall for the debugger.
16790
16791 2002-09-24  Nick Drochak <ndrochak@gol.com>
16792
16793         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
16794         before using it in case it is null.
16795         
16796 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16797
16798         * metadata.c: allow custom modifiers in local var signatures
16799         (bug spotted by Zoltan Varga).
16800
16801 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
16802
16803         * class.c: deal with the <Module> class that may have a NULL vtable.
16804         Eliminate warnings.
16805
16806 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
16807
16808         * image.c, image.h: more strong name helpers.
16809         * monosn.c: more work: convert pem keys to cryptoapi format.
16810
16811 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
16812
16813         * string-icalls.c: speedup IndexOf.
16814
16815 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
16816
16817         * icall.c: updates from Zoltan.2.Varga@nokia.com.
16818
16819 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
16820
16821         * icall.c: cleanup: use mono_object_domain ().
16822
16823 2002-09-23  Martin Baulig  <martin@gnome.org>
16824
16825         * debug-mono-symfile.c: Improved type support.
16826
16827 2002-09-22  Martin Baulig  <martin@gnome.org>
16828
16829         * debug-mono-symfile.c: Added support for reference types and strings.
16830
16831 2002-09-22  Martin Baulig  <martin@gnome.org>
16832
16833         * debug-mono-symfile.c: Started to work on the type table.
16834
16835 2002-09-21  Martin Baulig  <martin@gnome.org>
16836
16837         * debug-mono-symfile.c: Largely reworked the symbol table format.
16838         The symbol table is now incrementally updated each time a new
16839         method is added.  We're now also using our own magic and version
16840         so that you don't need to recompile all your classes if the
16841         dynamic table changes.
16842         (mono_debug_update_mono_symbol_file): Removed.
16843         (mono_debug_symfile_add_method): New function to add a method.
16844
16845 2002-09-21  Martin Baulig  <martin@gnome.org>
16846
16847         * icall.c
16848         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
16849         New interncall.
16850
16851         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
16852         New interncall to get a method from its metadata token.
16853
16854 2002-09-21  Martin Baulig  <martin@gnome.org>
16855
16856         * debug-mono-symfile.c: Create type table.
16857
16858 2002-09-20  Martin Baulig  <martin@gnome.org>
16859
16860         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
16861
16862 2002-09-20  Martin Baulig  <martin@gnome.org>
16863
16864         * debug-mono-symfile.c: Provide information about params and locals.
16865
16866 2002-09-20  Martin Baulig  <martin@gnome.org>
16867
16868         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
16869         New interncall.
16870
16871         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
16872         interncall to get a method from its metadata token.
16873
16874 2002-09-20  Martin Baulig  <martin@gnome.org>
16875
16876         * debug-mono-symfile.c: Added a few checks for method->header
16877         being non-NULL.  This should never happen, but for the moment
16878         let's use a g_warning() rather than a g_assert().
16879
16880 2002-09-19  Mark Crichton  <crichton@gimp.org>
16881
16882         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
16883         even if support for it isn't present.  Added an #ifdef to fix this.
16884
16885         * socket-io.c: Added checks back for Solaris support.
16886
16887 2002-09-19  Martin Baulig  <martin@gnome.org>
16888
16889         * debug-mono-symfile.c (read_string, write_string): Reflect latest
16890         changes in the symbol file format.
16891
16892 2002-09-18  Martin Baulig  <martin@gnome.org>
16893
16894         * debug-mono-symfile.c: Set version number to 21.
16895
16896 2002-09-18  Dick Porter  <dick@ximian.com>
16897
16898         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
16899         on netbsd.  Fixes bug 30051.
16900
16901 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16902
16903         * reflection.c:
16904         (set_version_from_string): little fix.
16905
16906 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
16907
16908         * monosn.c, Makefile.am: added strong name utility.
16909         * reflection.h, reflection.c: implemented delayed signing,
16910         locale, version and hash id assembly attributes.
16911
16912 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
16913
16914         * loader.c, metadata.c: load param attributes in signatures.
16915
16916 2002-09-16  Martin Baulig  <martin@gnome.org>
16917
16918         * debug-mono-symfile.c: Added string table with all method names.
16919
16920 2002-09-14  Martin Baulig  <martin@gnome.org>
16921
16922         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
16923         fast method lookup.
16924
16925 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
16926
16927         * reflection.c: record the public key token of referenced assemblies.
16928
16929 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
16930
16931         * image.c, image.h: added functions to get the strong name and the
16932         public key of an assembly.
16933         * pedump.c: use them.
16934
16935 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
16936
16937         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
16938
16939 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
16940
16941         * marshal.c (mono_marshal_get_managed_wrapper): Added
16942         MONO_TYPE_BOOLEAN 
16943
16944 2002-09-11  Martin Baulig  <martin@gnome.org>
16945
16946         * gc.c: Call GC_unregister_disappearing_link() on all links when
16947         finalizing them, this is necessary to aviod a crash in boehm's
16948         finalize handler.
16949
16950 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
16951
16952         * gc.c: handle GetTarget for finalized objects spotted and fixed by
16953         nick@chemlab.org.
16954
16955 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
16956
16957         * icall.c: implemented MonoType::Module.
16958         * reflection.c, reflection.h: mono_module_get_object () from
16959         Tomi Pakarinen <tomi.pakarinen@welho.com>.
16960
16961 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
16962
16963         * icall.c: ignore overridden methods in GetMethods ().
16964         Fix for FieldInfo::SetValue().
16965         * object.c: handle float/double in runtime invoke.
16966
16967 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
16968
16969         * object.c: allow a constructor to be called again on an object.
16970
16971 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
16972
16973         * class.h, class.c: move field layout code to it's own function and
16974         export it. Get an interface id earlier. Move fields in MonoClass
16975         so they are more cache friendly and align the bitfields.
16976         * loader.c: temporary handle get_param_names() for a runtime method.
16977         * reflection.c, reflection.h: more code to handle runtime creation of
16978         types.
16979
16980 2002-09-09  Martin Baulig  <martin@gnome.org>
16981
16982         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
16983         signature with the pinvoke field being set for the actual call.
16984
16985 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
16986
16987         * icall.c: removed some unused icalls. Start of map of glib charsets
16988         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
16989
16990 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
16991
16992         * debug-helpers.c: break infinite loop (found and fixed by
16993         Holger Arnold <harnold@gmx.de>).
16994
16995 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
16996
16997         * icall.c: target may be null in create_delegate.
16998
16999 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17000
17001         * marshal.c: handle a boolean return type.
17002
17003 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17004
17005         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
17006
17007 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17008
17009         * gc.c: fix weakreferences.
17010
17011 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
17012
17013         * icall.c: added icall to get default codepage.
17014
17015 2002-09-03  Dick Porter  <dick@ximian.com>
17016
17017         * threads.h: 
17018         * threads.c: Use MonoThread instead of MonoObject where
17019         apropriate.
17020
17021         Store running thread objects in a hash table, so that we have all
17022         the info to hand when waiting for them to finish
17023         (means we don't need OpenThread() any more, so mingw builds should
17024         be fully functional again.)
17025
17026         * verify.c:
17027         * object.h: Added thread ID to MonoThread
17028
17029 2002-09-03  Martin Baulig  <martin@gnome.org>
17030
17031         * icall.c (System.Reflection.Assembly::get_location): New interncall.
17032
17033 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17034
17035         * icall.c: fixed leak in get_temp_path. Thanks lupus.
17036
17037 2002-09-03  Martin Baulig  <martin@gnome.org>
17038
17039         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
17040         argument to store the end address of the disassembled instruction.
17041
17042         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
17043         here from debug-symfile.h.
17044         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
17045         JIT into this struct.
17046         (MonoSymbolFile): Added `char *image_file' field.
17047         (MonoDebugGetMethodFunc): Removed.
17048         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
17049         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
17050         (mono_debug_find_method): New method.
17051
17052         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
17053         create a full symbol file.
17054         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
17055         and static symbol files.
17056         (mono_debug_find_method): The symbol file keeps an internal method hash,
17057         call this to get a MonoDebugMethodInfo from a MonoMethod.
17058
17059         * debug-symfile.[ch]: Removed.
17060
17061 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
17062
17063         * image.c (do_mono_image_open): Remove linker version check.
17064
17065 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
17066
17067         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
17068         wrappers for instance methods.
17069         
17070 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17071
17072         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
17073
17074 2002-08-28  Dick Porter  <dick@ximian.com>
17075
17076         * Makefile.am: Export HOST_CC for w32 builds
17077
17078 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17079
17080         * file-io.c process.c: MonoString are null terminated, no
17081         need for mono_string_to_utf16() anymore.
17082
17083 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17084
17085         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
17086
17087 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
17088
17089         * icall.c, reflection.h: speedup System.MonoType.
17090
17091 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17092
17093         * reflection.c: allow null as the value of a string argument in
17094         custom attributes constructors.
17095
17096 2002-08-27  Martin Baulig  <martin@gnome.org>
17097
17098         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
17099         `trampoline_address' field.
17100
17101 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
17102
17103         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
17104         check (fixes bug #29486) 
17105
17106 2002-08-27  Martin Baulig  <martin@gnome.org>
17107
17108         * debug-mono-symfile.c: Changed the file format in a way that allows us
17109         open it read-only and to use a specially malloced area for all the
17110         dynamic data.  We can now also generate a symbol file on-the-fly if we're
17111         debugging IL code and there is no MCS generated symbol file for it.
17112
17113 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
17114
17115         * object.c: added a define for a good string and array
17116         creation speedup (not enabled by default because we need to deal with
17117         the synch stuff).
17118
17119 2002-08-26  Martin Baulig  <martin@gnome.org>
17120
17121         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
17122         function to create a dynamic symbol file.  This is used by the
17123         debugger to create a symbol file for IL code on-the-fly.
17124
17125 2002-08-26  Martin Baulig  <martin@gnome.org>
17126
17127         * loader.c (mono_lookup_pinvoke_call): Include the error message
17128         from g_module_error() in the error message.
17129
17130 2002-08-24  Martin Baulig  <martin@gnome.org>
17131
17132         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
17133         function to update the symbol file.  The symbol file is mmap()ed
17134         writable, but private.  This allows us to install the symbol file
17135         together with the assembly.
17136
17137 2002-08-24  Martin Baulig  <martin@gnome.org>
17138
17139         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
17140         but they can read the new symbol file format which mcs is now creating.
17141
17142         * debug-symfile.c (mono_debug_find_source_location): Moved to
17143         debug-mono-symfile.c; this is now operating on the new symbol file.
17144
17145 2002-08-23  Martin Baulig  <martin@gnome.org>
17146
17147         * debug-helpers.c (mono_method_desc_from_method): New function to get
17148         a MonoMethodDesc from a MonoMethod.
17149
17150 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17151
17152         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
17153         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
17154
17155 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
17156
17157         * string-icalls.[ch]: make helper methods static.
17158
17159 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17160
17161         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
17162         types to it and to SetValueInternal.
17163
17164         * object.c: Moved handle_enum label to its proper place. This was the
17165         f... bug! ;-)
17166
17167         This time i compiled mcs and gtk-sharp and they both work.
17168
17169 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17170
17171         * icall.c: reverted partially my previous patch until 
17172         object.c:set_value handles enums correcly.
17173
17174 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17175
17176         * icall.c:
17177         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
17178         (ves_icall_System_Environment_get_MachineName): removed warning when
17179         compiling under cygwin.
17180
17181 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
17182
17183         * object.c: fixed field_get_value() for reference types.
17184
17185 2002-08-22  Dick Porter  <dick@ximian.com>
17186
17187         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
17188         Don't free a buffer while it's still needed.  Patch from Jonathan
17189         Liger <Jonathan.liger@wanadoo.fr>
17190
17191 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
17192
17193         * icall.c (ves_icall_System_Environment_get_Platform): Add new
17194         internal call.
17195
17196 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
17197
17198         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
17199         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
17200
17201         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
17202         we call unmanaged code which throws exceptions.
17203
17204 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17205
17206         * appdomain.h: added per-domain entry_assembly.
17207         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
17208         arguments.
17209         * icall.c: Assembly::GetEntryAssembly icall.
17210         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
17211         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
17212
17213 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17214
17215         * appdomain.h, gc.c: added mono_domain_finalize ().
17216
17217 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17218
17219         * object.c:
17220         (mono_print_unhandled_exception): changed g_warning by g_printerr
17221         because g_log has a 1024 characters limit (yeah, i got a big stack
17222         trace). Don't print exception name, that should be in ToString 
17223         returned string.
17224
17225 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17226
17227         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
17228         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
17229
17230 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17231
17232         * object.c:
17233         (mono_print_unhandled_exception): after previous commit, i realized
17234         that MS calls ToString on the exception. I changed this function to
17235         do that. This way we get stack_trace for free.
17236
17237 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17238
17239         * object.c:
17240         (mono_print_unhandled_exception): invoke Message property instead of
17241         getting 'message' field from Exception. Don't allocate memory for
17242         'trace' and 'message' if not needed.
17243
17244 2002-08-18  Dick Porter  <dick@ximian.com>
17245
17246         * unicode.c: Fix asserts to match Encoder.cs checks
17247
17248 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17249
17250         * marshal.c: fix unaligned store issue and a few wrong
17251         opcode argument types.
17252
17253 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17254
17255         * icall.c: added GetUninitializedObjectInternal internal call.
17256
17257 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
17258
17259         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
17260         to the right domain.
17261
17262 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
17263
17264         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
17265
17266         * class.c (class_compute_field_layout): set blittable to false for Strings
17267
17268         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
17269
17270 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17271
17272         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
17273         first chunk of code to create types at runtime. Code to
17274         handle ReflectedType/DeclaringType. Make reflection handles
17275         domain specific.
17276
17277 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
17278
17279         * class.c: set correct name in arrays.
17280
17281 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
17282
17283         * appdomain.c (mono_domain_transfer_object): make it work with
17284         valuetypes. bug fixes.
17285
17286 2002-08-12  Dick Porter  <dick@ximian.com>
17287
17288         * object.h: Rename some parameters to avoid c++ keywords (Patch
17289         from Joseph Wenninger <kde@jowenn.at>)
17290
17291 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
17292
17293         * icall.c: added icall to implement Assembly.GetFile*.
17294
17295 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17296
17297         * reflection.h, reflection.c: code to embed managed resources.
17298
17299 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17300
17301         * class.c: move all the type size stuff into
17302         class_compute_field_layout().
17303
17304 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17305
17306         * class.c: ensure enums have always the correct instance size.
17307         * unicode.c: remove wrong assert.
17308
17309 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
17310
17311         * assembly.c: fix mem corruption issue.
17312         * image.h, image.c: added mono_image_get_resource () to access
17313         managed resources.
17314         * icall.c: implemented Assembly.EntryPoint property and some
17315         Managed Resources related internalcalls.
17316
17317
17318 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17319
17320         * image.c, image.h: impemented mono_image_get_entry_point ().
17321         * appdomain.c: use mono_image_get_entry_point.
17322
17323 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17324
17325         * reflection.c: support the object type argument when loading
17326         custom attributes.
17327
17328 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
17329
17330         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
17331         String as return type.
17332
17333 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
17334
17335         * reflection.c: fix encoding of named args for custom attrs to match
17336         the ms implementation. Read them back when instantiating custom
17337         attributes.
17338
17339 2002-08-02  Radek Doulik  <rodo@ximian.com>
17340
17341         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
17342         by Dietmar as quick fix
17343         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
17344         16 as stack size, used on more places as quick fix before Dietmar
17345         will fix it properly
17346
17347 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17348
17349         * object.h, object.c: added accessors for fields and properties.
17350
17351 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17352
17353         * class.c, class.h: made mono_class_get_field_from_name ()
17354         loop on parent types.
17355         Added mono_class_get_property_from_name ().
17356
17357 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17358
17359         * class.c, class.h: move the code to setup the type vtable in its own
17360         function so that it can be reused also for types created at runtime.
17361         Eliminate the "class" identifier from the header file.
17362         * reflection.c: setup the vtable for enums so that we can create
17363         objects for use in SetConstant ().
17364
17365 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
17366
17367         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
17368         instead of the delegate itself as this pointer (bug #28383)
17369
17370 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
17371
17372         * marshal.c (mono_marshal_get_managed_wrapper): added return type
17373         conversions.
17374
17375 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17376
17377         * loader.c: don't set the pinvoke bit on icalls.
17378
17379 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
17380
17381         * debug-helpers.c (mono_method_full_name): only print a number to
17382         indicate wrapper type (so that the output is more readable in traces).
17383
17384 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
17385
17386         * class.c (mono_class_init): include method override patch from Paolo
17387
17388 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
17389
17390         * icall.c: fixed GetTypeCode().
17391
17392 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
17393
17394         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
17395         use real delegate invoke function to make it work with multicast
17396         delegates (fix bug# 28291).
17397
17398 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
17399
17400         * object.c: load constant strings.
17401
17402 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17403
17404         * reflection.c: no magic numbers.
17405         * tabledefs.h: security action enum.
17406
17407 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
17408
17409         * assembly.c: fix possible memory corruption.
17410
17411 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17412
17413         * reflection.h, reflection.c: added support for linking resources.
17414         * verify.c: check we have an updated corlib.
17415
17416 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
17417
17418         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
17419         string arrays.
17420         (mono_marshal_string_array): null terminate unmanaged string arrays.
17421         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
17422
17423 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
17424
17425         * icall.c: Type.GetType () can now return also types from the
17426         calling assembly.
17427
17428 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
17429
17430         * loader.h, loader.c: stack walking support.
17431         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
17432         GetCallingAssembly.
17433
17434 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
17435
17436         * marshal.c: added optimisations for blittable types 
17437
17438         * class.c (mono_array_class_get): do not set blittable attribute on arrays
17439         (mono_class_setup_mono_type): set blittable attribute for single
17440         and double.
17441
17442         * marshal.c (mono_string_utf8_to_builder): impl.
17443         (mono_string_builder_to_utf8): impl.
17444         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
17445
17446 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
17447
17448         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
17449         (mono_marshal_get_managed_wrapper): impl. byref types
17450
17451 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17452
17453         * icall.c:
17454         (search_method): don't display debug message. 
17455
17456 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
17457
17458         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
17459
17460 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
17461
17462         * appdomain.c: set the missing filename when throwing exception.
17463
17464 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
17465
17466         * metadata.c (mono_type_size): code cleanup
17467         (mono_type_stack_size): removed some test code
17468
17469 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
17470
17471         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
17472         mono_get_exception_file_not_found now.
17473
17474         * exception.c (mono_exception_from_name_two_strings): New version
17475         that will call a constructor with two string arguments. 
17476         (mono_get_exception_file_not_found): New helper routine, used to
17477         report file-not-found errors.
17478
17479 2002-07-20  Dick Porter  <dick@ximian.com>
17480
17481         * process.h:
17482         * process.c: Pass file handles to CreateProcess
17483         
17484         * icall.c:
17485         * file-io.h:
17486         * file-io.c: Implemented CreatePipe
17487
17488 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
17489
17490         * metadata.c (mono_get_param_info): set alignment for value types
17491
17492 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17493
17494         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
17495         Constify mono_domain_assembly_open().
17496         * loader.c: handle null namespace in icalls.
17497
17498 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
17499
17500         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
17501         (emit_str_to_ptr_conv): marshal object as structs
17502
17503         * metadata.c (mono_type_to_unmanaged): marshal object as structs
17504
17505         * marshal.c (mono_marshal_get_runtime_invoke): support value types
17506
17507 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
17508
17509         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
17510         (mono_marshal_get_native_wrapper): we an now return value types
17511
17512 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17513
17514         * verify.c: more checks implemented.
17515
17516 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
17517
17518         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
17519         (fix bug #27695)
17520         (mono_marshal_get_native_wrapper): allow byref arguments
17521         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
17522         impl. PtrToStringXXX methods
17523         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
17524         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
17525         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
17526         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
17527         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
17528
17529 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17530
17531         * reflection.c: fix buglet in parsing an assembly name.
17532
17533 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
17534
17535         * marshal.c (emit_ptr_to_str_conv): first impl.
17536
17537 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
17538
17539         * object.c, class.h: cache the vtable in the class as suggested by
17540         vargaz@freemail.hu (Zoltan Varga).
17541
17542 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17543
17544         * class.h, loader.c: added mono_field_from_token().
17545         * verify.c: first cut of type checking code.
17546
17547 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
17548
17549         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
17550
17551 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
17552
17553         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
17554         (fix bug #27782)
17555         (mono_marshal_get_remoting_invoke): impl.
17556         (mono_delegate_begin_invoke): impl.
17557         (mono_mb_emit_save_args): impl.
17558         (mono_delegate_end_invoke): impl.
17559         (mono_marshal_get_delegate_begin_invoke):
17560         (mono_marshal_get_delegate_end_invoke):
17561         (mono_marshal_get_delegate_invoke): generate a special name for
17562         those methods (including the signature) and associate them whith
17563         the delegate class. 
17564
17565 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
17566
17567         * reflection.[ch]: 
17568         (mono_reflection_type_from_name): now it has a MonoImage parameter
17569         which is used as the default image to search the type in. If the image
17570         is NULL or getting the type from it fails, it defaults to corlib.
17571
17572         * icall.c: changed 1 call to mono_reflection_type_from_name to match
17573         new parameter.
17574
17575 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17576
17577         * reflection.c: update the parameter table index.
17578
17579 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17580
17581         * domain.c: don't include the mark byte in the string hash.
17582
17583 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17584
17585         * icall.cs: icall for Type.GetTypeCode ().
17586         * verify: a couple of fixes and disabled local initialization checks.
17587
17588 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
17589
17590         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
17591
17592         * debug-helpers.c (mono_method_full_name): print the type of the
17593         runtime wrapper
17594
17595         * metadata.c (mono_signature_hash): a hash function for signatures
17596         (mono_signature_hash): better hash algorithm
17597
17598         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
17599
17600         * debug-helpers.c (mono_method_full_name): this can now generate
17601         method names with signatures
17602
17603         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
17604         method dont have this pointers.
17605
17606 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
17607
17608         * reflection.c: fixup typebuilder tokens.
17609         * image.c: fix buglet.
17610         * marshal.h: remove whitespace.
17611         * metadata.h, metadata.c: reinstate code that was removed.
17612         * verify.c: handle catch directives and fix another couple of bugs.
17613
17614 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
17615
17616         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
17617         (mono_marshal_get_native_wrapper): make it comp. with the old code
17618         (mono_marshal_get_native_wrapper): support boolean
17619         (mono_marshal_get_managed_wrapper): support more types
17620
17621 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
17622
17623         * class.c (class_compute_field_layout): compute class->blittable attribute.
17624
17625 2002-07-09  Dick Porter  <dick@ximian.com>
17626
17627         * threads.c: Make the thread cleaning up cope with threads that
17628         call ExitThread()
17629
17630 2002-07-08  Radek Doulik  <rodo@ximian.com>
17631
17632         * reflection.c (method_encode_code): use non-translated values to
17633         compute finally_start, this fixes exception handling on ppc, yay!
17634
17635         * decimal.h (struct signscale): fix endianess
17636
17637 2002-07-07  Radek Doulik  <rodo@ximian.com>
17638
17639         * reflection.c: swap box_val and not val
17640
17641 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
17642
17643         * reflection.c, reflection.h: handle full assembly info in type name.
17644         Handle Type arguments when loading custom attributes.
17645         * icall.c: updated to use new mono_reflection_type_from_name () method.
17646
17647 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17648
17649         * loader.c:
17650         (method_from_memberref): also print assembly name when method not found.
17651
17652 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17653
17654         * icall.c:
17655         (ves_icall_TypeGetProperties): fixed bug #27473. 
17656
17657 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17658
17659         * reflection.c: display image name and token when cannot find the
17660         .ctor for an attribute.
17661
17662 2002-07-05  Martin Baulig  <martin@gnome.org>
17663
17664         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
17665
17666 2002-07-04  Dick Porter  <dick@ximian.com>
17667
17668         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
17669         compile on mingw.  This will cause mingw builds to not wait for
17670         subthreads to terminate after the main thread does.  I've lodged a
17671         bug with the mingw developers for them to wrap OpenThread().
17672
17673 2002-07-03  Dick Porter  <dick@ximian.com>
17674
17675         * threads.c: Store thread IDs instead of handles, because
17676         GetCurrentThread() returns a pseudohandle and therefore stores
17677         useless values.  mono_thread_cleanup() continues checking the
17678         array of threads until it is empty, to cope with subthreads
17679         spawning new threads after the main thread has finished.
17680
17681         * profiler.h:
17682         * profiler.c:
17683         * profiler-private.h: Pass the thread ID to thread profiler
17684         functions, instead of a handle
17685
17686 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
17687
17688         * verify.c: fixes to make it more usable.
17689         * pedump.c: added --verify code to verify IL code in an assembly.
17690
17691 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17692
17693         * reflection.c: turn errors into warnings to allow compiling corlib.
17694
17695 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
17696
17697         * reflection.c: add special cases to compile corlib.
17698
17699 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17700
17701         * reflection.c: handle properties with only a set method.
17702
17703 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
17704
17705         * opcodes.h: add enum with opcodes in opval order.
17706
17707 2002-07-01  Dick Porter  <dick@ximian.com>
17708         
17709         * object.h:
17710         * object.c (mono_runtime_run_main): Removed unneeded argument
17711
17712 2002-06-28  Martin Baulig  <martin@gnome.org>
17713
17714         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
17715
17716 2002-06-27  Dick Porter  <dick@ximian.com>
17717
17718         * threads.c: Store the handle in both the parent thread and in the
17719         subthread, to minimise the time between starting a new thread and
17720         storing its ID.
17721
17722 2002-06-26  Dick Porter  <dick@ximian.com>
17723
17724         * appdomain.c (mono_runtime_cleanup): Close the socket library
17725         after all the threads have finished, not before
17726
17727 2002-06-26  Martin Baulig  <martin@gnome.org>
17728
17729         * debug-symfile.c (mono_debug_find_source_location): Added
17730         `guint32 *line_number' argument.  If it's not NULL, store the line number
17731         there and return the file name without the line number.
17732
17733 2002-06-25  Dick Porter  <dick@ximian.com>
17734
17735         * icall.c:
17736         * process.h:
17737         * process.c: Process forking and other support functions
17738
17739 2002-06-25  Dick Porter  <dick@ximian.com>
17740
17741         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
17742         things dont happen when the image is closed.
17743         (mono_image_lookup_resource): Walk the resource section looking
17744         for a particular entry
17745
17746         * cil-coff.h: PE resource section decoding
17747
17748 2002-06-25  Dick Porter  <dick@ximian.com>
17749         
17750         * assembly.h:
17751         * assembly.c: 
17752         (mono_assembly_foreach): Accessor functions to walk the list of
17753         loaded assemblies
17754         (mono_assembly_set_main):
17755         (mono_assembly_get_main): Process methods need to know which
17756         assembly is the "main" one
17757
17758         * object.c (mono_runtime_run_main): Record the main assembly
17759
17760         * debug-helpers.c: Fix typo
17761
17762 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
17763
17764         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
17765         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
17766
17767 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
17768
17769         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
17770
17771 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
17772
17773         * image.c (do_mono_image_open): Initialize reference count,
17774         otherwise we leak the MonoImage.
17775
17776 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17777
17778         * reflection.c: small tweak to handle self-hosting.
17779
17780 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17781
17782         * reflection.c: fix type name parse code.
17783
17784 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17785
17786         * reflection.c: break out of the loop.
17787         * image.c: special case corlib.
17788
17789 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17790
17791         * reflection.c: add all the custom attrs at the end to ensure the
17792         ctors have been properly initialized when the attributes are defined
17793         in the current assembly.
17794
17795 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17796
17797         * reflection.c: handle correctly multiple-nested types.
17798
17799 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
17800
17801         * row-indexes.h: fix typos.
17802         * reflection.c: adjust for typos and fix method_def_or_ref
17803         encoding in MethodImpl table.
17804
17805 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
17806
17807         * reflection.c: fix entry point patching (thanks Serge!).
17808
17809 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
17810
17811         * verify.c: add check for System.Exception
17812
17813 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17814
17815         * image.c, class.c: minifix for code just c&p'ed.
17816         * reflection.c: warning fix.
17817         * object.h, loader.h, domain.c: load also StringBuilder.
17818
17819 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17820
17821         * marshal.h, marshal.c: some support code to handle complex marshaling.
17822
17823 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17824
17825         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
17826         Better signatures with vtable error dump.
17827
17828 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
17829
17830         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
17831
17832 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
17833
17834         * icall.c (ves_icall_Type_GetField): impl.
17835
17836 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17837
17838         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
17839         to retrieve a marshal description blob for a field or param.
17840
17841 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17842
17843         * reflection.h, reflection.c: change order of nested type emission
17844         to avoid table corruption. The NestedTypes table is sorted.
17845         * icall.c: change order of GetConstructor results to workaround mcs bug.
17846
17847 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
17848
17849         * reflection.h, reflection.c: handle field and param marshal
17850         information.
17851
17852 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17853
17854         * icall.c, marshal.c marshal.h: more Marshal class implementation.
17855
17856 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17857
17858         * reflection.c: fix call convention.
17859
17860 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17861
17862         * reflection.h, reflection.c: mono_image_get_memberref_token()
17863         takes a type instead of a class, now. Added
17864         mono_image_get_array_token() to create tokens for the special
17865         multi-dim array methods.
17866
17867 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17868
17869         * assembly.c: handle modules (no assembly table). Split
17870         loading references in its own function.
17871         * class.c: handle moduleref resolution scope.
17872         * image.c, image.h: cache module name in image.
17873
17874 2002-06-07  Martin Baulig  <martin@gnome.org>
17875
17876         * reflection.c (mono_image_get_type_info): Only add a class layout entry
17877         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
17878
17879 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
17880
17881         * icall.c: more signature fixes that used uint instead of int.
17882
17883 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17884
17885         * reflection.c: fixed signature of field refs.
17886
17887 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17888
17889         * class.c, reflection.c: handle typerefs of nested types
17890         (both on read and when writing files).
17891
17892 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
17893
17894         * icall.c: fix method signatures that tried to workaround the previous
17895         typo, d'oh!
17896
17897 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
17898
17899         * debug-helpers.c: fix typo.
17900
17901 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
17902
17903         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
17904         rewrote the PE/COFF writing code (our programs are understood by the
17905         ms runtime, now).
17906
17907 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17908
17909         * gc.c, gc.h, icall.c: weakreference support.
17910
17911 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17912
17913         * Makefile.am, mono-config.c: use $(sysconfdir).
17914
17915 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17916
17917         * icall.c: changed default precision of Double.ToString() to 15.
17918         Fixed memory leak. Unified with Single.ToString.
17919
17920 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
17921
17922         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
17923
17924 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17925
17926         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
17927         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
17928         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
17929         and myself.
17930
17931 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
17932
17933         * debug-symfile.c, sysmath.c: yet more compilation fixes.
17934
17935 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17936
17937         * reflection.c, socket-io.c: more compilation fixes.
17938
17939 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
17940
17941         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
17942         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
17943         unicode.c: warning and compiler compatibility fixes.
17944
17945 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
17946
17947         * class.h, metadata.c: fixed warnings/compilation errors.
17948
17949 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
17950
17951         * Makefile.am, mono-config.c, mono-config.h: configuration file
17952         support routines.
17953         * loader.c, loader.h: make Dll mapping configurable at runtime in the
17954         config file. Export methods to insert and lookup mappings.
17955
17956 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17957
17958         * reflection.c: handle types and boxed objects in custom attr
17959         constructors.
17960
17961 2002-05-30  Martin Baulig  <martin@gnome.org>
17962
17963         * debug-symfile.c
17964         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
17965
17966 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
17967
17968         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
17969         to lookup the implmap row for a P/Invoke method.
17970         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
17971         P/Invoke method from the runtime on an as needed basis.
17972
17973 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
17974
17975         * metadata.c (mono_metadata_parse_signature): impl.
17976
17977 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17978
17979         * class.c: handle .pack directive.
17980
17981 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17982
17983         * object.c: initialize static fields with RVA data.
17984
17985 2002-05-25  Martin Baulig  <martin@gnome.org>
17986
17987         * debug-symfile.c
17988         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
17989
17990 2002-05-24  Martin Baulig  <martin@gnome.org>
17991
17992         * debug-symfile.c
17993         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
17994         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
17995         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
17996
17997 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
17998
17999         * object.c: special case string ctros in invoke.
18000         * gc.c: silly whitespace changes.
18001
18002 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
18003
18004         * threadpool.[ch]: impl. a threadpool that can
18005         be used by mint and mono.
18006
18007 2002-05-22  Martin Baulig  <martin@gnome.org>
18008
18009         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
18010         The first argument is now a `MonoReflectionModuleBuilder *', the return
18011         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
18012         `methods' field to get the method builder.  The `token' argument is the
18013         unfixed token.
18014
18015         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
18016         invalid characters instead of g_assert_not_reached()ing.  This seems
18017         to be the behaviour of mscorlib.
18018
18019 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
18020
18021         * object.c (mono_runtime_invoke_array): applied patch from Rachel
18022         Hestilow to fix bug #25104
18023
18024 2002-05-21  Martin Baulig  <martin@gnome.org>
18025
18026         * debug-symfile.c (mono_debug_find_source_location): New function.
18027         Looks up an IL offset in the line number table and returns the source
18028         location as a string.
18029
18030 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18031
18032         * icall.c:
18033         (mono_double_ToStringImpl): changed %f by %g until we have something
18034         better.
18035
18036 2002-05-21  Nick Drochak  <ndrochak@gol.com>
18037
18038         * icall.c : Use different name for Math.Pow's icall.  Needed to check
18039         parameters first in C#.
18040
18041 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18042
18043         * icall.c, reflection.h: added icall to get info about an event.
18044
18045 2002-05-20  Radek Doulik  <rodo@ximian.com>
18046
18047         * object.c (mono_value_box): don't use memcpy for boxing on BIG
18048         endian
18049         (mono_value_box): don't use memcpy for small sizes on
18050         architectures with unaligned access
18051
18052 2002-05-20  Martin Baulig  <martin@gnome.org>
18053
18054         * reflection.c (mono_reflection_setup_internal_class): Don't crash
18055         if `tb->parent == NULL'.
18056         (mono_reflection_create_internal_class): New function.  This is
18057         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
18058         for enum types.
18059
18060         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
18061         New interncall.
18062
18063 2002-05-19  Martin Baulig  <martin@gnome.org>
18064
18065         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
18066         argument to get the length, don't default to the array length.
18067
18068 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
18069
18070         * assembly.c (mono_assembly_setrootdir): New function used to
18071         override the MONO_ASSEMBLIES directory.
18072
18073 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18074
18075         * icall.c: ValueType_GetHashCode() initialize local var.
18076
18077 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18078
18079         * reflection.c: sort custom attributes table.
18080
18081 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18082
18083         * reflection.c: support named args in custom attributes (write support).
18084
18085 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
18086
18087         * reflection.c: fix finally position calculation.
18088
18089 2002-05-15  Radek Doulik  <rodo@ximian.com>
18090
18091         * reflection.c: fixed endianess at many places
18092
18093         * icall.c (ves_icall_InitializeArray): comment out debug msg
18094
18095 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
18096
18097         * object.c (mono_unhandled_exception): new function to handle
18098         unhandled exceptions.
18099         (mono_unhandled_exception): call the UnhandledException event.
18100         (mono_runtime_delegate_invoke): impl.
18101
18102 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
18103
18104         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
18105         returns the RVA, not the direct pointer to the data. Handle the case
18106         when the class size is fixed.
18107
18108 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18109
18110         * reflection.c: fix some endianess issues.
18111
18112 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
18113
18114         * object.c (mono_runtime_invoke): is now able to catch exceptions.
18115
18116         * threads.c (mono_thread_init): added a callback which is invoked
18117         at thread start.
18118
18119 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
18120         
18121         * icall.c: make GetHashCode return non-negative values.
18122
18123 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
18124
18125         * object.c, icall.c, gc.c: revert to address-based hashcode.
18126
18127 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
18128
18129         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
18130
18131 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18132
18133         * icall.c, class.c: special case <Module>.
18134
18135 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
18136
18137         * icall.c: fix bug in GetNow().
18138
18139 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
18140
18141         * object.c (mono_runtime_class_init): make sure that we call all
18142         static class constructors.
18143
18144 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18145
18146         * reflection.c: sort methodsemantics table.
18147
18148 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18149
18150         * reflection.h, reflection.c: honour init locals setting.
18151
18152 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
18153
18154         * icall.c: copied Double ToStringImpl for Single ToStringImpl
18155
18156 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18157
18158         * reflection.c: support ContructorBuilders in attribute blob creation.
18159
18160 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18161
18162         * reflection.c: some changes to build a binary that can be run
18163         directly in windows.
18164
18165 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
18166
18167         * loader.c: print a big message when an icall can't be found.
18168
18169 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18170
18171         * string-icalls.c: fix bug 24248.
18172
18173 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18174
18175         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
18176         icall.c, reflection.h: separate assembly loading by pathname and by
18177         assembly name. Use the MONO_PATH env var to search for assemblies.
18178
18179 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18180
18181         * assembly.c, image.h: add some support for assemblies
18182         with multiple modules.
18183         * class.c, class.h: export mono_class_from_typeref().
18184         * loader.c: remove duplicated code and use mono_class_from_typeref(),
18185         instead.
18186
18187 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18188
18189         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
18190         documentation says (the ECMA one is correct).
18191
18192 2002-05-02  Dick Porter  <dick@ximian.com>
18193
18194         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
18195         Don't name the synchronisation mutex.
18196
18197 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
18198
18199         * rand.c
18200         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
18201         Make the prototypes match.
18202         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
18203         Same.
18204
18205         * icall.c
18206         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
18207         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
18208         all systems have tm.tm_zone, so use strftime() with %Z to print
18209         the timezone abreviation into a temp string.
18210
18211         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
18212         rather than mono_array_addr() on a MonoString on Big Endian
18213         machines.
18214
18215 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
18216
18217         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
18218         fix bug 24041
18219
18220 2002-04-30  Dick Porter  <dick@ximian.com>
18221
18222         * socket-io.c: Cope with SOCKET being an integer rather than a
18223         pointer now.
18224
18225         * threads.c: Added Thread_free_internal, to deal with thread
18226         handle cleanup.  Moved calls to handle_store() and handle_remove()
18227         to start_wrapper(), so each can only be called once.  Allocate
18228         synchronisation blocks with GC_malloc(), and use GC finalisation
18229         to close the handles.
18230
18231         * icall.c: added System.Threading.Thread::Thread_free_internal
18232
18233 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18234
18235         * icall.c: support Environment.Exit, CommandLineArgs().
18236
18237 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18238
18239         * object.c, object.h: added mono_runtime_run_main () and
18240         mono_runtime_get_main_args () for use in System.Environment.
18241
18242 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18243
18244         * gc.c: fix thinko, enable actual finalization since the jit is now
18245         fixed.
18246
18247 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18248
18249         * gc.c, object.c: take into account that an object may be offset wrt the address
18250         returned by GC_malloc().
18251
18252 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18253
18254         * image.c: handle files without entries in the assembly table (modules).
18255
18256 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
18257
18258         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
18259         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
18260         allowed to be null when it's System.Object class setup.
18261
18262 2002-04-27  Martin Baulig  <martin@gnome.org>
18263
18264         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
18265         if `tb->parent == NULL' rather than crashing.
18266
18267 2002-04-28  Nick Drochak  <ndrochak@gol.com>
18268
18269         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
18270         calling acos() where asin() should have been called.
18271
18272 2002-04-26  Martin Baulig  <martin@gnome.org>
18273
18274         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
18275         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
18276         there's a subdirectory called `System', but we don't want to read that
18277         subdirectory as an assembly.
18278
18279 2002-04-25  Martin Baulig  <martin@gnome.org>
18280
18281         * debug-symfile.c: Reflect latest MonoString changes.
18282
18283 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18284
18285         * rand.c, rand.h: instance method icalls need to have an explicit
18286         this pointer as first argument in the C implementation.
18287
18288 2002-04-25  Nick Drochak <ndrochak@gol.com>
18289
18290         * icall.c: Fix typo in map for GetNonZeroBytes
18291
18292 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18293
18294         * string-icalls.c : String does now passes unit tests without any 
18295         errors, the following changes has been made:
18296         
18297         Implemented replace methods.
18298         Renaming of methods to (try) follow the standard.
18299         Fixed compare ordinal
18300         Made all memory allocated directly to function instead of via icall function.
18301         Small performance fix in is_in_array function
18302                         
18303  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
18304
18305         c (mono_string_Internal_ctor_charp_int_int):
18306         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
18307         sindex < 0, throw ArgumentOutOfRangeException instead of
18308         ArgumentNullException.
18309
18310         Added new check for length == 0, however
18311         I need to make it return String.Empty from the C code.
18312         
18313         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
18314         that calculate the length for us here.
18315         
18316         (mono_string_Internal_ctor_sbytep_int_int): Replaced
18317         mono_string_new_utf16 with mono_string_new, since value is utf8.
18318
18319 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18320
18321         * object.c: register the object for finalization if needed.
18322         Allocate one more char in the string for the terminating 0 char.
18323
18324 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18325
18326         * class.c, class.h, image.c: check if a type implemenst a destructor.
18327         Use the proper key for array class lookups.
18328         * icall.c: register the icalls in the System.GC class.
18329         * gc.c, gc.h: GC-related functions and icalls.
18330
18331 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18332
18333         * icall.c:
18334         * socket-io.c:
18335         * unicode.c: free some strings gotten from mono_string_to_utf8 and
18336         changed a couple of free () by g_free ().
18337
18338         * decimal.c: one-liner in the comments for decimal2string ().
18339
18340 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18341
18342         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
18343
18344 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18345
18346         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
18347         * object.c (mono_runtime_invoke_array) : handle null in params
18348
18349 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18350
18351         * string-icalls.c: fixed bug in split (one off bug)
18352
18353 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18354
18355         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
18356         * icalls.c: added String::Equals as internal method
18357
18358 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18359
18360         * threads.c: fixed bug in the double interlocked functions
18361
18362 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
18363
18364         * threads.c: implemented all of the new interlocked icalls.
18365         * string-icalls.c: fix a bug in insert.
18366         * icalls.c: added the icalls for interlocked, removed old string functions.
18367         
18368 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18369
18370         * loader.c: fix off-by-one error when reading argument names.
18371
18372 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18373
18374         * profiler.c: win32 counter implementation (untested).
18375         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
18376         (the latter needs testing and more complete impl. from win32 folks).
18377
18378 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
18379
18380         * object.c: mono_array_new_full workaround mono_array_class_get
18381         problem.
18382
18383 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18384
18385         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
18386         * object.h (mono_string_chars): Changed casting type.
18387
18388 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18389
18390         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
18391                            method signatures to use gunichar2 instead of gint16.
18392
18393 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
18394
18395         * object.h, object.c: domain-specific versions of mono_object_new and
18396         mono_array_new.
18397
18398 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
18399
18400         * object.c: changed String layout
18401
18402         * string-icalls.c (mono_string_Internal_ctor_chara): added
18403         internal string constructors.
18404
18405 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
18406
18407         * threads.c: pass 'this' to the thread start routine.
18408
18409 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18410
18411         * string-icalls.c: fix IndexOf and LastIndexOf. Now
18412         InternalCompareStr don't call twice mono_string_cmp_char for the last
18413         character. Improved performance in mono_string_cmp_char.
18414
18415 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18416
18417         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
18418         code into its own library: libmonoruntime.
18419
18420 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
18421
18422         * object.h, object.c: changed array format so that szarrays do not
18423         require a bounds structure.
18424         * icall.c, appdomain.c: support for new szarray format.
18425
18426 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
18427
18428         * metadata.c: compare also the retuns type when comparing signatures:
18429         we didn't do this as an optimization since really overloaded methods
18430         must differ also in the arguments, but this doesn't work with
18431         low-level IL code (or when using explicit conversion operators: see
18432         bug#23498 for an example).
18433
18434 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18435
18436         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
18437
18438 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18439
18440         * icall.c: make MonoType::GetElementType its own icall.
18441
18442 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18443
18444         * icall.c: remove MonoMethod_get_Name().
18445         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
18446         object.
18447
18448 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18449
18450         * string-icalls.c: optimized a few methods.
18451
18452 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18453
18454         * icall.c: added all new string internal calls
18455         * string-icalls.c: added, new string internal call implementation.
18456         * object.c: added mono_string_new_size for allocating a string a size
18457
18458 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
18459
18460         * object.c (mono_object_isinst): use the same code as in the
18461         optimized x86 version.
18462
18463 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18464
18465         * profiler.c: TSC-based timer code (faster and more accurate).
18466         Not hooked up in configure, yet (set USE_X86TSC to 1).
18467
18468 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
18469
18470         * profiler.c, profiler.h: track time spent compiling methods.
18471         * threads.c: track thread creation/destruction.
18472
18473 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
18474
18475         * profiler.c, profiler.h, profiler-private.h: profiling interface
18476         and sample implementation. Moved here so that it can be used also by
18477         the jit.
18478
18479 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
18480
18481         * reflection.c, reflection.h: keep types and other handles separate in
18482         the hash tables for referred tokens. Add guid for modules.
18483
18484 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18485
18486         * assembly.c: fix bugs found with valgrind.
18487         * metadata.h, metadata.c: added mono_metadata_guid_heap().
18488
18489 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
18490
18491         * threads: added icall support for getting current domain for
18492                    the thread.
18493  
18494 2002-04-13  Martin Baulig  <martin@gnome.org>
18495
18496         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
18497         (MonoDebugVarInfo): Added `index' field for register based addresses.
18498         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
18499         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
18500         `MonoDebugVarInfo *params' and `guint32 this_offset' with
18501         `MonoDebugVarInfo *this_var'.
18502
18503         * debug-symfile.c (relocate_variable): New static function to write
18504         a location description for a local variable or method parameter.
18505
18506 2002-04-12  Martin Baulig  <martin@gnome.org>
18507
18508         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
18509         stack offset and begin/end scope address of a local variable.
18510         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
18511         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
18512         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
18513
18514         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
18515         Added new relocation types for start/end scope of a local variable.
18516
18517 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18518
18519         * object.h: add mono_object_domain() macro.
18520         * reflection.c: handle typespecs.
18521         * icall.c: MonoMethod::get_Name() implementation.
18522
18523 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18524
18525         * icall.c: String::GetHashCode() icall implementation.
18526
18527 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18528
18529         * icall.c: String::IndexOfAny icall.
18530         * object.c, object.h: make array->max_length more useful.
18531         Intrduced mono_object_class() and mono_string_length() macros.
18532
18533 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18534
18535         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
18536         instead of g_unichar_isdigit.
18537
18538 2002-04-11  Nick Drochak  <ndrochak@gol.com>
18539
18540         * icall.c: Implement a simple Double.ToString().
18541
18542 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18543
18544         * appdomain.h: only io-layer.h is supposed to be included.
18545         * icall.c: explicitly import environ. Fix warning.
18546
18547 2002-04-10  Nick Drochak  <ndrochak@gol.com>
18548
18549         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
18550                 return true even if it's not Daylight Savings time.
18551                 Only return false for the case where the function isn't
18552                 implemented for a plaform (read Windows).
18553
18554 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18555
18556         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
18557         data with a mutex.
18558
18559 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
18560
18561         * mempool.c (mono_mempool_alloc): only use g_malloc when
18562         absolutely necessary.
18563
18564 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
18565
18566         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
18567
18568         * class.c (mono_class_vtable): use domain mempool to allocate vtable
18569         (mono_class_proxy_vtable): use domain mempool
18570
18571 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18572
18573         * appdomain.h, appdomain.c: split initialization that requires the
18574         execution engine support into mono_runtime_init().
18575
18576 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
18577
18578         * class.c (mono_class_init): don't include vtable inside MonoClass
18579         to save some memory, gather some statistics.
18580         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
18581
18582 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18583
18584         * icall.c: internalcall implementation for ValueType.Equals().
18585
18586 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
18587
18588         * object.c (mono_message_init): moved 
18589         (mono_runtime_exec_main): new arch. independent impl.
18590         (mono_runtime_invoke_array): new method - like
18591         mono_runtime_invoke, but you can pass an array of objects.
18592         (mono_remoting_invoke): new arch. independent impl.
18593         (mono_message_invoke): new arch. independent impl.
18594         (mono_runtime_class_init): new arch. independent impl.
18595         (mono_runtime_object_init): new arch. independent impl.
18596
18597 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18598
18599         * metadata.c, object.c, reflection.c: documented the exported
18600         functions.
18601
18602 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
18603
18604         * icall.c: simpler code to pass the assembly builder data to corlib.
18605         Implement GetNestedTypes() internalcall.
18606
18607 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18608
18609         * class.c: warn if a type can't be loaded.
18610
18611 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
18612
18613         * image.h: typedef MonoImageOpenStatus
18614         * types.h: removed unused file
18615         
18616 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
18617
18618         * icall.c: Enum_ToObject accepts enum value arguments.
18619
18620 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18621
18622         * class.c: move initialization of properties, events and nested
18623         classes, so that they happen for interfaces, too.
18624
18625 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18626
18627         * icall.c: cleanup some ugly casts in Array_SetValue*.
18628
18629 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18630
18631         * icall.c: the values array fro enums is of the correct type, now.
18632         Implement (correctly) getFullName instead of assQualifiedName for
18633         MonoType.
18634         * reflection.h, reflection.c: added mono_type_get_name ().
18635
18636 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18637
18638         * assembly.c, image.h: for each MonoImage, record from wich assembly
18639         it was loaded.
18640         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
18641         Make Type.Assembly work.
18642
18643 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
18644
18645         * debug-symfile.h: use char* instead of gpointer to avoid
18646         unnecessary casts.
18647
18648         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
18649
18650         * icall.c (ves_icall_InternalExecute): impl. FielSetter
18651         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
18652
18653 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
18654
18655         * icall.c (mono_message_init): impl. (code cleanup)
18656         (ves_icall_InternalExecute): impl. FieldGetter
18657
18658         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
18659         defined we call all (non-static)methods through the vtable. 
18660
18661 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
18662
18663         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
18664         finalizer even though the memory is still referenced (and the chunk of
18665         memory is not freed).
18666
18667 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
18668
18669         * assembly.c: fix brokeness.
18670
18671 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
18672
18673         * class.c: kill some warnings. Check explicit interface method
18674         implementation also without considering the namespace.
18675         Load also literal strings in static class data.
18676
18677 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
18678
18679         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
18680         (default_assembly_name_resolver): Make the resolver take the
18681         "base" directory where the assembly was originally defined, so we
18682         can load DLLs that are in the same directory as the assembly that
18683         is being referenced.
18684
18685 2002-03-28  Dick Porter  <dick@ximian.com>
18686
18687         * file-io.h: 
18688         * file-io.c:
18689         * socket-io.c: 
18690         * unicode.h: 
18691         * unicode.c: Warning cleanups
18692
18693 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
18694
18695         * object.h, reflection.h: use the correct type instead of MonoObject.
18696
18697 2002-03-28  Martin Baulig  <martin@gnome.org>
18698
18699         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
18700         (mono_debug_update_symbol_file): Initialize classes if necessary.
18701
18702 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
18703
18704         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
18705         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
18706
18707 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
18708
18709         * assembly.h: fix function prototype.
18710         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
18711         * mono-endian.h: use const cast.
18712
18713 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
18714
18715         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
18716
18717 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
18718
18719         * loader.c: don't assert when a typeref can't be loaded, give
18720         a chance to the runtime to trow an exception instead.
18721         * loader.h: fix warning.
18722
18723 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
18724
18725         * class.c (mono_class_proxy_vtable): added proxy support
18726
18727 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
18728
18729         * icall.c: removed last of PAL calls, added System.Environment
18730         * file-io.h, file-io.c: MonoIO implementation
18731         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
18732
18733 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
18734
18735         * appdomain.c: do not use the byte marker in ldstr table lookup.
18736         * debug-helpers.c: allow two ':' to separate class and method name.
18737         * object.c: allocate arrays bounds with the GC, too.
18738         * verify: add a few more checks.
18739
18740 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
18741
18742         * reflection.c: output also literal strings. Allocate parameter data
18743         with GC_malloc() (thanks, Martin, for catching this!).
18744
18745 2002-03-26  Martin Baulig  <martin@gnome.org>
18746
18747         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
18748         include the `this' offset in the `param_offsets'.
18749
18750 2002-03-25  Martin Baulig  <martin@gnome.org>
18751
18752         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
18753         mono_debug_get_class() function to get the classes. Added new
18754         relocation types for arrays and strings.
18755         (mono_debug_get_class): New static function to search in all
18756         referenced assemblies for a metadata token.
18757
18758         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
18759
18760 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18761
18762         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
18763         hold gc-allocated objects. Make the string heap a stream like the
18764         others. Removed duplicated code when writing stream info.
18765         Added asserts to catch possible buffer overflows. Set the sorted map
18766         for tables that need sorting. Added some documentation.
18767
18768 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
18769
18770         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
18771         for interned strings and vtables.
18772
18773 2002-03-24  Martin Baulig  <martin@gnome.org>
18774
18775         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
18776         it in the array since it was created with g_slist_prepend().
18777
18778 2002-03-24  Martin Baulig  <martin@gnome.org>
18779
18780         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
18781         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
18782         (mono_debug_method_from_token): Renamed to
18783         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
18784         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
18785
18786         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
18787         relocation types.
18788
18789         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
18790
18791 2002-03-24  Martin Baulig  <martin@gnome.org>
18792
18793         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
18794         (mono_debug_method_from_token): New func.
18795
18796         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
18797         New interncall, calls mono_debug_local_type_from_signature().
18798         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
18799         calls mono_debug_method_from_token().
18800
18801 2002-03-23  Martin Baulig  <martin@gnome.org>
18802
18803         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
18804         specifies the number of bytes to be converted, not the array size.
18805         Return the number of chars, not the number of bytes.
18806         (ves_icall_iconv_get_chars): The `byteCount' argument
18807         specifies the number of bytes to be converted, not the array size.
18808
18809 2002-03-23  Martin Baulig  <martin@gnome.org>
18810
18811         * reflection.h (MonoReflectionSigHelper): New type.
18812
18813         * reflection.c (mono_reflection_sighelper_get_signature_local),
18814         (mono_reflection_sighelper_get_signature_local): New functions.
18815
18816         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
18817         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
18818         interncalls.
18819
18820 2002-03-23  Martin Baulig  <martin@gnome.org>
18821
18822         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
18823         is_writeable is set.
18824         (mono_raw_buffer_update): New function to write the modified map
18825         back to disk.
18826
18827         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
18828
18829         * debug-symfile.c (mono_debug_update_symbol_file): Call
18830         mono_raw_buffer_update() when done writing.
18831
18832 2002-03-23  Martin Baulig  <martin@gnome.org>
18833
18834         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
18835
18836         * debug-symfile.c: Added support for arguments and local variables.
18837
18838 2002-03-23  Dick Porter  <dick@ximian.com>
18839
18840         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
18841         protected by ifdefs, hence breaking the w32 build.
18842
18843 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18844
18845         * object.c: implement is_interned() the right way.
18846
18847 2002-03-21  Martin Baulig  <martin@gnome.org>
18848
18849         * debug-symfile.[ch]: New files to handle debugging information
18850         files. There's also support to dynamically update these symbol
18851         files to include machine dependent information.
18852
18853 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
18854
18855         * threads.c (mono_thread_create): new function to create thread
18856         from C
18857
18858 2002-03-20  Martin Baulig  <martin@gnome.org>
18859
18860         * icall.c (ves_icall_InternalInvoke): Create a new object if the
18861         method is a constructor.
18862         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
18863         points to ves_icall_InternalInvoke().
18864
18865 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
18866
18867         * file-io.c: Flush shouldn't throw exceptions.
18868
18869 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
18870
18871         * file-io.c: FileStream flush support; FileSetLength now
18872         restores file pointer.
18873
18874 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
18875
18876         * class.c: set image for pointer classes.
18877
18878 2002/03/19  Nick Drochak <ndrochak@gol.com>
18879
18880         * sysmath.c: Forgot one.
18881
18882 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
18883
18884         * sysmath.c: Avoid redefining existing names.
18885
18886 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
18887
18888         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
18889         handled by runtime as icall rather than dllimport from libm.so
18890         * file-io.c, file-io.h: fixed handle argument type.
18891
18892 2002-03-18  Dick Porter  <dick@ximian.com>
18893
18894         * reflection.c (mono_image_get_type_info): rename interface to
18895         iface, because of "#define interface struct" on windows.
18896
18897 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
18898
18899         * class.c, class.h: rename and export mono_ptr_class_get().
18900         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
18901         * reflection.c, reflection.h, icall.c: better/saner type name
18902         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
18903         method signatures.
18904
18905 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
18906
18907         * class.c (mono_class_init): removed hardcoded GHC_SLOT
18908
18909         * icall.c (ves_icall_InternalInvoke): impl.
18910
18911 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
18912
18913         * reflection.c: output the interface map table, too.
18914
18915 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
18916
18917         * class.c (class_compute_field_layout): separate computation of 
18918         static field layout
18919
18920 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
18921
18922         * icall.c: added System.Buffer support.
18923         * file-io.c: moved file icalls from PAL to FileStream.
18924
18925 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
18926
18927         * icall.c (ves_icall_System_Object_GetHashCode): impl.
18928
18929 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
18930
18931         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
18932
18933 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
18934
18935         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
18936
18937 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
18938
18939         * debug-helpers.{c,h}: moved here from monograph some useful functions
18940         to locate a method by name/signature in a class or image. Included
18941         also a small and flexible IL disassembler.
18942
18943 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
18944
18945         * reflection.c: fixup tokens in methods with small header size, too.
18946
18947 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
18948
18949         * object.c (mono_string_to_utf8): remove assert(!error), instead
18950         print a warning. 
18951
18952 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
18953
18954         * icall.c: update to the new mono_Array_class_get interface.
18955
18956 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
18957
18958         * appdomain.c, object.c: Boehm-GC enable.
18959         * icall.c: make get_data_chunk() support split data requests.
18960         Ensure a class is initialized in more cases. Return only the first
18961         property found in GetProperties() or the compiler gets confused. 
18962         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
18963         * reflection.h, reflection.c: add fixup mechanism for field and method
18964         tokens. Initialize assembly->typeref in a single place. Output
18965         properties after events. Support custom attributes for events, too.
18966         Typo fix for paramter custom attrs.
18967
18968 2002-03-07  Martin Baulig  <martin@gnome.org>
18969
18970         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
18971
18972 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
18973
18974         * class.c (mono_array_class_get): fix. for multi. dim. arrays
18975
18976 2002-03-06  Martin Baulig  <martin@gnome.org>
18977
18978         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
18979         non-zero lower bounds. See testcases #F10-#F13.
18980
18981 2002-03-05  Martin Baulig  <martin@gnome.org>
18982
18983         * exception.c (mono_get_exception_argument_out_of_range): New exception.
18984
18985         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
18986         ves_icall_System_Array_GetValue(), only calculate the absolute array position
18987         here.
18988         (ves_icall_System_Array_SetValue): Likewise.
18989         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
18990         as argument and does the actual work. This function is used when copying a
18991         multi-dimensional array.
18992         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
18993         now do all the widening conversions of value types.
18994         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
18995
18996 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18997
18998         * class.c: remove some magic numbers and use the smbolic names,
18999         instead. Added init_events() to load event info at class init time.
19000         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
19001         and mono_metadata_methods_from_event().
19002         * reflection.h, reflection.c: added support for writing out the evnets
19003         related information.
19004
19005 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19006
19007         * reflection.h, icall.c: use a different method (GetInterfaces)
19008         to gather interface info and add isbyref, isprimitive and
19009         ispointer to the ves_icall_get_type_info() return value.
19010
19011 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19012
19013         * class.h: stared adding support for events.
19014         * icall.c: split find_members implementation. Added debug icall to get
19015         the address of an object.
19016         * reflection.c: handle TypeBuilders in mono_type_get_object().
19017
19018 2002-03-01  Martin Baulig  <martin@gnome.org>
19019
19020         * icall.c (ves_icall_System_Array_GetLength): This must throw an
19021         ArgumentOutOfRangeException(), not an ArgumentException().
19022         (ves_icall_System_Array_GetLowerBound): Likewise.
19023         (ves_icall_System_Array_GetValue): Improved argument checking.
19024         (ves_icall_System_Array_SetValue): Improved argument checking.
19025
19026 2002-03-01  Martin Baulig  <martin@gnome.org>
19027
19028         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
19029         called with invalid arguments rather than just dying with g_assert().
19030         (ves_icall_System_Array_SetValue): Likewise.
19031         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
19032         raise a NotImplementedException instead.
19033         (ves_icall_System_Array_GetLength): Added argument checking.
19034         (ves_icall_System_Array_GetLowerBound): Added argument checking.
19035
19036 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
19037
19038         * object.h (mono_assert): new macros mono_assert and
19039         mono_assert_not_reached
19040
19041 2002-02-28  Martin Baulig  <martin@gnome.org>
19042
19043         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
19044         and "System::String::IsInterned" to "System::String::_IsInterned".
19045
19046 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
19047
19048         * icall.c: remove hacks for typebuilder. Added icall to create a
19049         modified type from a tybebuilder.
19050         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
19051         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
19052         to create a backing MonoClass for a TypeBuilder.
19053
19054 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19055
19056         * class.c, class.h: more refactoring of class init.
19057         Export mono_class_setup_mono_type() and mono_class_setup_parent().
19058
19059 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
19060
19061         * marshal.c, marshal.h: start of marshaling interface.
19062
19063 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19064
19065         * icall.c: fix order in assembly qualified name icall.
19066
19067 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19068
19069         * class.c: do not free str, since we store it in the hash table.
19070         * reflection.h: add label field to MonoILExceptionInfo.
19071         * reflection.c: handle references to more than one assembly. Handle
19072         case when there isn't a module created in the assembly.
19073
19074 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19075
19076         * class.c: Fix typo. Start refactoring of class init code.
19077
19078 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
19079
19080         * appdomain.c: exit with 1 on error.
19081         * class.c: we already have the name in MonoClassField.
19082         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
19083         MonoStreamHeader instead of an offset of image->raw_metadata.
19084
19085 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
19086
19087         * appdomain.c (mono_init): Be even more descriptive about the error.
19088
19089 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
19090
19091         * appdomain.c: give the user an informative message when corlib can't
19092         be loaded.
19093
19094 2002-02-26  Martin Baulig  <martin@gnome.org>
19095
19096         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
19097         New icall to get the time zone data.
19098
19099 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19100
19101         * reflection.c: set virtual and raw size of section correctly.
19102         * threads.c: transfer domain information to newly created threads.
19103
19104 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
19105
19106         * class.c: when instancing a class in a domain, load the default
19107         vaules for static fields from the constant table. Fix System.Enum to
19108         not be an enum.
19109         * icall.c: implement Object::GetType() internalcall. Implemented
19110         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
19111         Fixed checking of binding flags in find_members().
19112         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
19113         * reflection.c: handle enumerations when writing to the constant
19114         table. Use a different object cache for types.
19115
19116
19117 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
19118
19119         * object.c (mono_object_isinst): fix for arrays
19120
19121         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
19122
19123 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
19124
19125         * object.c: don't use mprotect ()  and fix intern pool hash table
19126         lookup for big endian systems.
19127
19128 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19129
19130         * icall.c: change type_is_subtype_of () signature.
19131
19132 2002-02-21  Mark Crichton  <crichton@gimp.org>
19133
19134         * rand.c, rand.h: Added random number generator for
19135         System.Security.Cryptography classes.
19136
19137         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
19138
19139         * icall.c: Added System.Security.Cryptography calls.
19140
19141 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
19142
19143         * class.c, icall.c, metadata.c: better support for pointer types.
19144         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
19145         * reflection.c: Add support for getting custom attrs for properties
19146         and simplify some code.
19147
19148 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19149
19150         * icall.c: change getToken () and add custom attribute GetBlob()helper
19151         method.
19152         * reflection.h: add custom attrs array to the reflection builder structures.
19153         * reflection.c: encode and emit custom attributes for all the relevant
19154         reflection objects. Cache fieldref and methodref tokens. Change
19155         mono_image_create_token() interface to take a MonoDynamicAssembly.
19156         More complete custom attributes decoder. Load custom attributes for
19157         Assembly, Field, Method and Constructor objects, too. Make the
19158         returned array an Attribute[] one, not object[]. Added
19159         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
19160         custom attribute constructor.
19161
19162 2002-02-20  Dick Porter  <dick@ximian.com>
19163
19164         * icall.c:
19165         * rawbuffer.c:
19166         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
19167         problem code out for now).
19168
19169 2002-02-19  Radek Doulik  <rodo@ximian.com>
19170
19171         * object.c (mono_ldstr): use hash table to avoid multiple swapping
19172
19173 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
19174
19175         * icall.c: register the GetCustomAttributes method.
19176         * object.c, object.h: add mono_string_new_len ().
19177         * reflection.h, reflection.c: added mono_runtime_invoke(),
19178         mono_install_runtime_invoke(). Added
19179         mono_reflection_get_custom_attrs () to load custom attributes and
19180         create the attribute objects.
19181
19182 2002-02-19  Dick Porter  <dick@ximian.com>
19183         * threads-dummy-types.c:
19184         * threads-dummy-types.h:
19185         * threads-dummy.c:
19186         * threads-dummy.h:
19187         * threads-pthread-types.c:
19188         * threads-pthread-types.h:
19189         * threads-pthread.c:
19190         * threads-pthread.h:  Deleted obsolete files
19191
19192 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
19193
19194         * class.c (mono_class_vtable): runtime init the class when we
19195         allocate static class data.
19196
19197         * icall.c (ves_icall_System_Array_SetValue): check for null values.
19198
19199         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
19200         and String - but we will need generic marshalling support in the
19201         future. 
19202         (mono_init): set the domain name in a ms compatible way
19203
19204         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
19205         String[].
19206
19207 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
19208
19209         * object.c (mono_array_clone): use alloca() instead of g_malloc  
19210         for sizes
19211
19212         * appdomain.c (mono_domain_unload): impl.
19213
19214 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19215
19216         * appdomain.c, object.c: fix intern pool implementation.
19217         * class.c: fix alignment code.
19218
19219 2002-02-16  Radek Doulik  <rodo@ximian.com>
19220
19221         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
19222         and s2 > s1, just copy lower bytes to be compatible with little
19223         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
19224         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
19225
19226         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
19227         force big_endian to be 1 for big endian machines 
19228         (ves_icall_iconv_new_decoder): ditto
19229
19230 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
19231
19232         * socket-io.c (convert_sockopt_level_and_name): If the system
19233         doesn't define SOL_IP or SOL_TCP, get them by hand using
19234         getprotobyname() and caching the values (because this could be a
19235         slow operation).
19236         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
19237         Use the appropriate struct when the system does support it. Ie,
19238         not all systems have struct ip_mreqn so use struct ip_mreq when
19239         appropriate.
19240
19241 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
19242
19243         * reflection.c: handle finally clauses.
19244
19245 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
19246
19247         * socket-io.c: use g_snprintf() instead of snprintf.
19248
19249 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
19250
19251         * reflection.c (mono_param_get_objects): Cast second argument to
19252         mono_method_get_param_names to a const char** to silence the
19253         compiler warning.
19254
19255         * appdomain.c (mono_domain_assembly_open): Put parens around the
19256         truth statement in the for-loop.
19257
19258         * unicode.c (iconv_convert): Got rid of a compiler warning about
19259         int i being unused when the system has a new iconv.
19260         (iconv_get_length): Same.
19261
19262         * image.c (load_class_names): Cast the second argument to
19263         g_hash_table_insert() to char* to hush compiler warnings about the
19264         arg being a const.
19265         (mono_image_open): Same here.
19266
19267         * socket-io.c: Don't conditionally include sys/filio.h or
19268         sys/sockio.h here anymore since we now get them from
19269         io-layer/io-layer.h
19270         (inet_pton): If the system doesn't support inet_aton, implement
19271         using inet_addr and also #define INADDR_NONE if it isn't defined
19272         by the system.
19273
19274 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
19275
19276         * metadata.c, metadata.h: added function to get packing and size info
19277         of a typedef.
19278         * reflection.h, reflection.c: handle field RVA data. Save info about
19279         the table layout if needed. Assign typedef indexes to all the types
19280         before dumping the info about them to avoid forward reference problems.
19281
19282 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
19283
19284         * socket-io.c (convert_sockopt_level_and_name): ifdef
19285         SO_ACCEPTCONN because it is not defined on my system (old debian)
19286
19287 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19288
19289         * opcode.c: use stddef.h to get NULL.
19290
19291 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
19292
19293         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
19294         for FIONBIO, FIONREAD and SIOCATMARK.
19295         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
19296         define INADDR_NONE and besides, inet_addr() is deprecated and
19297         should not be used. Use inet_pton() instead - it also has the
19298         added bonus that it can easily handle IPv6 addresses as well.
19299         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
19300
19301 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
19302
19303         * decimal.c: remove _MSC_VER conditional.
19304
19305 2002-02-13  Dick Porter  <dick@ximian.com>
19306
19307         * socket-io.c: 
19308         * icall.c: Internal calls for Blocking, Select, Shutdown,
19309         GetSocketOption and SetSocketOption
19310
19311 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19312
19313         * assembly.cs: better resolver: use it instead of some kludgy
19314         code.
19315
19316 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
19317
19318         * reflection.c: the best way to speed-up the compiler is to avoid
19319         infinite loops.
19320
19321 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
19322
19323         * class.c (mono_class_vtable): changed the object layout
19324         (obj->vtable->class). 
19325         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
19326
19327 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19328
19329         * assembly.c: look for assemblies in the assembly dir, too.
19330
19331 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19332
19333         * class.c: fix thinko in mono_class_from_type().
19334
19335 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19336
19337         * exception.h, exception.c: added TypeLoadException.
19338         * object.h, object.c: added mono_array_clone ().
19339         * icall.c: handle throwOnError in AssemblyGetType().
19340         Added Array.Clone().
19341         * opcode.h, opcode.c: use a single value for the opcode val.
19342         Compile fix for non-gcc compilers.
19343
19344 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
19345
19346         * opcodes.c, opcodes.h: export interesting info about opcodes.
19347
19348 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
19349
19350         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
19351         icalls. 
19352
19353         * class.c (class_compute_field_layout): set element_class for enums
19354         (mono_class_create_from_typedef): set element_class for normal classes
19355
19356         * icall.c (ves_icall_System_Enum_get_value): impl.
19357
19358         * class.c (mono_class_create_from_typedef): do not set valuetype
19359         flag for System.ValueType and System.Enum
19360
19361 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
19362
19363         * unicode.c (iconv_convert): fix big endian problem.
19364
19365 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19366
19367         * class.c: add asserts if we are ever going to scribble over memory.
19368         * socket-io.c: not all systems have AF_IRDA defined.
19369
19370 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
19371
19372         * class.c (class_compute_field_layout): do not consider static
19373         fields to compute alignment
19374
19375 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
19376
19377         * appdomain.c (mono_appdomain_get): impl.
19378         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
19379
19380 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19381
19382         * icall.c: ignore "file://" prefix when loading an assembly.
19383
19384 2002-01-23  Dick Porter  <dick@ximian.com>
19385
19386         * socket-io.c:
19387         * icall.c:
19388         * Makefile.am: Added socket support
19389
19390 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
19391
19392         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
19393         code back.  This should return the assemblies that are loaded by
19394         the runtime on behalf of an application domain. 
19395
19396         The current implementation is still broken, it just returns every
19397         assembly loaded, but until we get real applications domain this
19398         will do.
19399
19400 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
19401
19402         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
19403         AppDomain object.
19404
19405 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
19406
19407         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
19408         the mono_class_from_name lookup.
19409         (ves_icall_get_parameter_info): ditto.
19410         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
19411         method.
19412         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
19413
19414 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
19415
19416         * class.c: load also nested classes on class init.
19417         System.ValueType instance methods gets passed boxed
19418         values, unless methods in derived classed that get a pointer to the
19419         data.
19420         * icall.c: use better name parsing code in GetType().
19421         * image.c, image.h: add mono_image_loaded ().
19422         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
19423         * reflection.c, reflection.h: added mono_reflection_parse_type().
19424
19425 2002-01-22  Veronica De Santis <veron78@interfree.it>
19426
19427         * icall.c : Added mapping of internal calls for Manual and Auto reset events
19428         * threads.c : Added the implementation of internal calls for events
19429         * threads.h : Added prototypes of internal calls for events
19430         
19431 2002-01-21  Radek Doulik  <rodo@ximian.com>
19432
19433         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
19434
19435 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
19436
19437         * class.c (mono_class_init): set min_align to 1 (instead of 0)
19438         (mono_class_value_size): use min_align
19439
19440 2002-01-20  Dick Porter  <dick@ximian.com>
19441
19442         * threads.h:
19443         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
19444         so it compiles on w32.
19445
19446 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
19447
19448         * metadata.c (mono_type_stack_size): impl.
19449
19450         * class.c (mono_class_get_field): impl. memberref token
19451
19452 2002-01-16 Veronica De Santis <veron78@@interfree.it>
19453
19454         * icall.h : Added the internal calls mapping for CreateMutex_internal
19455                     and ReleaseMutex_internal.
19456         * threads.h : Added the prototype of mutexes internal calls.
19457         * threads.c : Added the implementations of mutexes internal calls.
19458
19459 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
19460
19461         * metaparse.h: removed unused file.
19462         * reflection.c, reflection.h: added stream_data_align () function 
19463         to align data in streams and keep stream aligned. Add support for
19464         exception support in method headers.
19465
19466 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
19467
19468         * unicode.c: make iconv_convert () return the number of bytess written
19469         in the output buffer.
19470
19471 2002-01-15  Dick Porter  <dick@ximian.com>
19472         * threads.c: Make the runtime's idea of infinite timeouts coincide
19473         with the class library's
19474
19475         Fix a particularly egregious bug in mono_thread_cleanup(). That
19476         code was so utterly bogus it must have been written on a Monday.
19477
19478 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19479
19480         * reflection.h: add subtypes field to TypeBuilder.
19481         * reflection.c: encode constants for literal fields.
19482         Handle subtypes. Fix user string token (and add a zero byte)
19483         at the end.
19484         
19485 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
19486
19487         * class.c (mono_class_init): bug fix: assign slot numbers for
19488         abstract methods.
19489
19490 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19491
19492         * reflection.c: don't try to output a code RVA for abstract methods.
19493         Small fixes for method header format. Output parameter info to the
19494         ParamDef table. Save method overriding info to MethodImpl table.
19495         Fix property support. Allow typedef.extends to be a type in the
19496         building assembly.
19497         * verify.c: fix off-by-one error.
19498
19499 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
19500
19501         * class.c: fix mono_class_from_mono_type () for szarray types.
19502         Remove unused cache check in mono_class_from_type_spec().
19503         * icall.c: *type_from_name () functions handle simple arrays and byref.
19504         * reflection.c: handle byref and szarray types. Handle methods without
19505         body (gets P/Invoke compilation working). Handle types and fields in
19506         get_token ().
19507         * reflection.h: add rank to MonoTypeInfo.
19508
19509 2002-01-10  Dick Porter  <dick@ximian.com>
19510
19511         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
19512         internal calls
19513
19514 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
19515
19516         * icall.c: initialize class in type_from_handle ().
19517         Loop also in parent classes for get_method ().
19518         * reflection.c: properly encode class and valuetype types.
19519         Start on encoding TypeBuilder types. Handle fieldrefs.
19520         Use correct length when registering a user string.
19521         Handle ConstructorBuilder and MonoMethod in get_token ().
19522         Make mono_type_get_object () aware of cached types.
19523         * object.c: back out change to mono_string_new ().
19524
19525 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
19526         * object.c: mono_string_new should return a NULL when the string 
19527         passed in is NULL -- not try to deference it.
19528         
19529 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
19530
19531         * icall.c: hack to make IsSubType work for TypeBuilders.
19532         * reflection.c: emit constructors before methods.
19533         Retrieve param names in mono_param_get_objects().
19534
19535 2002/01/05  Nick Drochak  <ndrochak@gol.com>
19536
19537         * Makefile.am: fix list of headers and sources so automake 1.5
19538         doesn't complain. Removed \# at end of list.
19539
19540 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19541
19542         * reflection.c: get token for a method ref. Set return type of
19543         constructor to void.
19544         * loader.c: debug message.
19545         * class.c: typo fix.
19546
19547 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
19548
19549         * icall.c: fix array init with rank > 1. FindMembers
19550         loops in parent class as well.
19551         * image.c: do not insert nested types in name cache.
19552         * reflection.c: warning fix.
19553         * reflection.h: add override method (for interface impl).
19554
19555 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
19556
19557         * metadata.c: fix customattr decoding.
19558
19559 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
19560
19561         * rawbuffer.cs: Added native Win32 implementation, avoids using
19562         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
19563
19564 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
19565
19566         * class.c: make the low-level routines handle the cache.
19567
19568 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
19569
19570         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
19571
19572 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
19573
19574         * class.c: fix mono_array_element_size() for objects.
19575         * class.h, class.c: add properties to MonoClass and load them
19576         at init time.
19577         * icall.c: check with isinst() when assigning a value to an array
19578         instead of requiring the classes to match exactly.
19579         Implemented icall for System.Type::GetType().
19580         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
19581         enums. Handle bindingflags when looking for methods and fields.
19582         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
19583         and mono_metadata_methods_from_property().
19584         * reflection.h, reflection.c: added structures for propreties,
19585         parameters and enums. Implemented mono_property_get_object() and
19586         mono_param_get_objects().
19587
19588 2001-12-18  Dick Porter  <dick@ximian.com>
19589
19590         * file-io.c: Use mono_string_to_utf16() instead of
19591         mono_string_chars()
19592
19593         * object.c: Added mono_string_to_utf16(), which copies the non
19594         NULL-terminated MonoString into a new double-null-terminated
19595         buffer.
19596
19597 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
19598
19599         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
19600
19601 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
19602
19603         * file-io.c: raise exceptions if handle is invalid.
19604
19605 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
19606
19607         * assembly.c: yet another check for mscorlib.
19608         * class.c, class.h: load nesting info for classes.
19609         * icall.c: many new functions to support the Reflection classes.
19610         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
19611         * reflection.h, reflection.c: mono_image_create_token(),
19612         mono_assembly_get_object(), mono_type_get_object(),
19613         mono_method_get_object(), mono_field_get_object(): methods to return
19614         objects that parallel the C representation of assemblies, types,
19615         methods, fields.
19616
19617 2001-12-11  Dick Porter  <dick@ximian.com>
19618
19619         * icall.c:
19620         * file-io.c: Internal calls for file IO.
19621
19622 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
19623
19624         * tabledefs.h: missing FileAttributes.
19625         * verify.h, verify.c: use is_valid_string () to simplify and check for
19626         valid strings more correctly. Fix warnings and speeling.
19627         Check more tables: Filed, File, ModuleRef, StandAloneSig.
19628         Check code: branches, maxstack, method calls.
19629
19630 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
19631
19632         * object.c (mono_object_allocate): removed static, so that the jit
19633         can allocate value types.
19634
19635         * icall.c (ves_icall_System_DateTime_GetNow): impl.
19636
19637 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19638
19639         * class.c: init enum types right away and register the
19640         token->MonoClass map in mono_class_create_from_typedef ().
19641         * verify.h, verify.c: first cut of the verifier.
19642         * pedump.c: add --verify switch to verify metadata tables.
19643         * tabledefs.h: add some missing enums.
19644
19645 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
19646
19647         * class.c (mono_install_runtime_class_init): impl.
19648         (mono_class_init): renamed mono_class_metadata_init to
19649         mono_class_init, also removed the metadata_inited flag
19650
19651         * object.c (mono_object_isinst): use faster algorithm
19652
19653 2001-11-30  Radek Doulik  <rodo@ximian.com>
19654
19655         * mono-endian.h: reverted last change
19656         added function prototypes
19657
19658         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
19659         add mono-endian.c back
19660
19661         * mono-endian.c: returned back, as Paolo pointed out, it's needed
19662         for unaligned access, I've mistaked it with endianess. I am
19663         sorry.
19664         (mono_read16): fix reverted endianess
19665         (mono_read64): ditto
19666         (mono_read32): ditto
19667
19668 2001-11-30  Dick Porter  <dick@ximian.com>
19669
19670         * exception.c: Implement mono_exception_from_name()
19671
19672 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
19673
19674         * metadata.h, metadata.c: remove params_size and locals_size and their
19675         calculation from the metadata code: they are only usefult to the
19676         interp.
19677
19678 2001-11-29  Radek Doulik  <rodo@ximian.com>
19679
19680         * object.c (mono_ldstr): swap bytes here, it's probably not the
19681         best place, but works for me now, I'll redo it once I know mono
19682         better, also note that I add PROT_WRITE and don't reset back, also
19683         note that it's only affects big endians, so x86 should be OK
19684
19685         * mono-endian.h (read16): use just glib macros for both endians
19686
19687         * mono-endian.c: removed as glib macros are used in in
19688         mono-endian.h so we don't need to care about endianess for read
19689         macros as glib does that for us already
19690
19691 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
19692
19693         * class.h, class.h: take minimum alignment into consideration so
19694         that the fields of a class remain aligned also when in an array.
19695
19696 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19697
19698         * loader.h, loader.c: add mono_method_get_param_names().
19699         * class.c: 0-init class fields.
19700
19701 2001-11-26  Dick Porter  <dick@ximian.com>
19702
19703         * icall.c:
19704         * threads-types.h:
19705         * threads.c: New file that handles System.Threading on all platforms
19706
19707         * object.c: 
19708         * object.h: Remove the synchronisation struct from MonoObject,
19709         replace it with a pointer that gets initialised on demand
19710
19711         * Makefile.am: Replace all the system-specific threading code with
19712         a single file that uses the new wrapper library
19713
19714 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
19715
19716         * class.c, class.h: add mono_install_trampoline() so that the runtime
19717         can register a function to create a trampoline: removes the ugly
19718         requirement that a runtime needed to export arch_create_jit_trampoline.
19719         * object.h, object.c: added mono_install_handler() so that the runtime
19720         can install an handler for exceptions generated in C code (with
19721         mono_raise_exception()). Added C struct for System.Delegate.
19722         * pedump.c: removed arch_create_jit_trampoline.
19723         * reflection.c: some cleanups to allow registering user strings and
19724         later getting a token for methodrefs and fieldrefs before the assembly
19725         is built.
19726         * row-indexes.h: updates and fixes from the new ECMA specs.
19727
19728 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
19729
19730         * class.h, class.c: add enum_basetype field to MonoClass.
19731         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
19732         to get index in the constant table reated to a field, param or
19733         property.
19734         * reflection.h, reflection.c: handle constructors. Set public-key and
19735         version number of the built assembly to 0.
19736         * row-indexes.h: update from new ECMA spec.
19737
19738 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
19739
19740         * class.h, class.c: add a max_interface_id to MonoClass.
19741         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
19742         since it's used to do that. Added mono_type_type_from_obj().
19743         Make GetType() return NULL instead of segfaulting if the type was not
19744         found. Handle simple arrays in assQualifiedName.
19745         * object.h: add a struct to represent an Exception.
19746         * reflection.c: output call convention in method signature.
19747         Add code to support P/Invoke methods and fixed offsets for fields.
19748
19749 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
19750
19751         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
19752         the value.
19753         * icall.c: use mono_array_addr instead of array->vector: fixes the
19754         reflection image writing.
19755         * reflection.c: init call convention byte to 0 in method signature.
19756         Encode the property signature. Don't output property-related methods
19757         twice. Really process the properties for a type (don't cast a field to
19758         a property, my mom always told me that).
19759         Fix 64 bit issues in pointer alignment in a different and more
19760         readable way.
19761
19762 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
19763
19764         * loader.h: Removed type class from MonoDefaults, added monotype
19765
19766         * loader.c: Loaded MonoType, removed loading of Type
19767
19768         * icall.c (my_mono_new_object): Now returns a System.MonoType,
19769         and fills in System.Type._impl with a RuntimeTypeHandle rather
19770         than the actual MonoClass *
19771
19772         (ves_icall_type_from_handle): change from type_class to
19773         monotype_class
19774
19775         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
19776         implemented
19777
19778         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
19779         implemented
19780
19781         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
19782
19783         (ves_icall_System_Reflection_Assembly_GetType): implemented
19784
19785         (ves_icall_System_MonoType_assQualifiedName): implemented
19786
19787         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
19788
19789 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
19790
19791         * assembly.c (mono_assembly_open): Implement a cache for the
19792         assemblies. 
19793
19794         (mono_assembly_close): only destroy the assembly when the last
19795         reference is gone.
19796         
19797 2001-11-09  Dick Porter  <dick@ximian.com>
19798
19799         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
19800
19801 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
19802
19803         * class.c (mono_class_metadata_init): bug fix: compute the right slot
19804
19805 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
19806
19807         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
19808         from Martin Weindel.
19809         * object.h: add mono_string_chars ().
19810
19811 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
19812
19813         * reflection.c (build_compressed_metadata): Eliminates warnings
19814         and uses 64-bit clean code.
19815
19816         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
19817         (mono_type_equal): Change signature to eliminate warnings.
19818
19819 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19820
19821         * icall.c, loader.c: remove the internalcall array constructors.
19822         Changes to match the new MonoArray structure.
19823         * object.h, object.c: an array object doesn't allocate an extra
19824         vector. Add mono_array_new_full () to create jagged arrays easily.
19825
19826 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
19827
19828         * metadata.h, metadata.c: add mono_metadata_field_info () to
19829         retreive all the info about a field from vairous tables.
19830         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
19831         * class.h, class.c: augment MonoClassField with more info.
19832         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
19833         policy and load a field's RVA if needed.
19834
19835 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
19836
19837         * class.c (mono_class_metadata_init): create a trampoline for all
19838         virtual functions instead of actually compiling them.
19839
19840 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
19841
19842         * class.h, class.c: include name in MonoClassField.
19843         * class.c: fix fundamental type of System.Object and System.String.
19844         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
19845         tokens in ldtoken.
19846         * icall.c: remove internalcalls for the Reflection stuff that is now
19847         done in C# code.
19848         * loader.c: mono_field_from_memberref () implementation.
19849         * mono-endian.c: thinko (s/struct/union/g).
19850         * object.c, object.h: make the mono_string_* prototypes actually use
19851         MonoString instead of MonoObject.
19852         * reflection.c, reflection.h: updates for changes in the reflection
19853         code in corlib: we use C structures that map to the actual C# classes.
19854         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
19855         fat method header if needed and use the info from the ILGenerator for
19856         methods. Handle fields in types. Misc fixes.
19857
19858 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
19859
19860         * class.c (mono_class_metadata_init): bug fix: always allocate
19861         space for static class data
19862
19863 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
19864
19865         * class.c (mono_compute_relative_numbering): use relative
19866         numbering to support fast runtime type checks.
19867
19868 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
19869
19870         * class.c (mono_class_create_from_typeref): added debugging output
19871         to print class name when MonoDummy is returned instead of real class
19872
19873 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
19874
19875         * class.c (mono_class_metadata_init): interface offset table now
19876         contains pointers into the vtable - this is more efficient for the jit
19877
19878 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
19879
19880         * class.c (mono_class_metadata_init): use a temporary vtable (the
19881         old algorithm only worked for the interpreter, but not for the jit)
19882
19883 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
19884
19885         * loader.c (method_from_memberref): use mono_class_get to get the
19886         class of an array instead of using System.Array directly.
19887         (mono_get_method): also add MEMBERREF methods to the method cache
19888         which usefull for arrays.
19889
19890 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
19891
19892         * pedump.c (arch_compile_method): added to compute vtable entry
19893
19894         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
19895         number of interfaces.
19896         
19897         * class.h: merged MonoArrayClass into MonoClass
19898
19899         * class.c (mono_class_create_from_typedef): compute the vtable size and
19900         allocate space to include the vtable inside MonoClass
19901         (mono_class_metadata_init): initialize the vtable
19902
19903 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
19904
19905         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
19906         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
19907         * image.c: endian fixes by Laurent Rioux.
19908         * object.h, object.c: rename MonoStringObject to MonoString and
19909         MonoArrayObject to MonoArray. Change some function names to conform to
19910         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
19911         guint16* as first argument, so don't use char*.
19912         Provide macros to do the interesting things on arrays in a portable way.
19913         * threads-pthread.c: updates for the API changes and #include <sched.h>
19914         (required for sched_yield()).
19915         * icall.c: updates for the API changes above.
19916         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
19917         platforms that need them.
19918
19919 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
19920
19921         * class.c: set the correct type for all the fundamental
19922         type when loading the class.
19923
19924 2001-10-05  Dick Porter  <dick@ximian.com>
19925
19926         * threads-pthread.c (pthread_mutex_timedlock): Simple
19927         compatibility version for C libraries that lack this call.
19928
19929 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
19930
19931         * class.c: MonoTypes stored in MonoClass are stored as
19932         fundamental MonoTypes when the class represents a
19933         fundamental type (System.Int32, ...).
19934         The TypeHandle return by ldtoken is a MonoType*.
19935         * icall.c: ves_icall_get_data_chunk () write out all the
19936         PE/COFF stuff. Implement ves_icall_define_method (),
19937         ves_icall_set_method_body (), ves_icall_type_from_handle ().
19938         * image.c: properly skip unknown streams.
19939         * loader.h, loader.c: add type_class to mono_defaults.
19940         * metadata.c, metadata.h: export compute_size () as
19941         mono_metadata_compute_size () with a better interface.
19942         Typo and C&P fixes.
19943         * pedump.c: don't try to print the entry point RVA if there is no entry point.
19944         * reflection.c, reflection.h: many cleanups, fixes, output method
19945         signatures and headers, typedef and typeref info, compress the metadata
19946         tables, output all the heap streams, cli header etc.
19947         * row-indexes.h: typo fixes.
19948
19949 2001-10-04  Dick Porter  <dick@ximian.com>
19950
19951         * object.h: Add a synchronisation mutex struct to MonoObject
19952
19953         * object.c (mono_new_object): Initialise the object
19954         synchronisation mutexes
19955
19956         * icall.c: System.Threading.Monitor internal calls
19957         
19958         * threads-pthread.h:
19959         * threads-pthread.c: System.Threading.Monitor internal calls
19960
19961         * threads-types.h: New file, includes the system-specific thread
19962         structures
19963         
19964         * threads-pthread-types.h:
19965         * threads-pthread-types.c: New files, handle pthread-specific
19966         synchronisation types
19967
19968         * threads-dummy-types.h: 
19969         * threads-dummy-types.c: New files of dummy support for
19970         thread-specific types
19971
19972         * metadata.c:
19973         * image.c:
19974         * pedump.c: include mono-endian.h not endian.h
19975         
19976         * Makefile.am: More threads files.
19977         Name mono-endian.h not endian.h
19978
19979 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
19980
19981         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
19982         stuff and implement a few more bits.
19983         * icall.c: a field needs to be dereferenced twice. Do not use the same
19984         name for two variables in the same scope.
19985         * image.c, image.h: cleanups.
19986
19987 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
19988
19989         * class.c (mono_class_metadata_init): bug fix: compute the right size
19990
19991 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
19992
19993         * icall.c: implemented some of the Reflection internalcalls.
19994         * image.c, image.h: start writing out the PE/COFF image.
19995         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
19996         that does the reverse than decode_blob_size ().
19997         * object.c: use mono_metadata_encode_value (). Move here
19998         temporary implementation of mono_string_to_utf8 ().
19999         * rawbuffer.c: make malloc_map static.
20000
20001 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20002
20003         * metadata.c: fix type comparison for arrays.
20004         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
20005         Added a couple of new classes to monodefaults.
20006         * icall.c: added a couple of Reflection-related internalcalls.
20007         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
20008         Added a byval_arg MonoType to MonoClass.
20009
20010 2001-09-28  Dick Porter  <dick@ximian.com>
20011
20012         * icall.c:
20013         * threads-pthread.h: 
20014         * threads-pthread.c: Implemented internal calls for
20015         LocalDataStoreSlot operations.  Applied mutexes around all shared
20016         data.  Reworked the thread creation and Start() operations to
20017         avoid a race condition.
20018         
20019         * threads-dummy.h:
20020         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
20021
20022 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
20023
20024         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
20025
20026 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
20027
20028         * class.c, loader.c: warn and return NULL instead of erroring out.
20029         * icall.c: added System.AppDomain::getCurDomain().
20030         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
20031
20032 2001-09-25  Dick Porter  <dick@ximian.com>
20033
20034         * threads-pthread.h:
20035         * threads-pthread.c: Implemented timed thread joining and added
20036         System.Threading.Thread::Join_internal internal call
20037
20038         * icall.c: Added System.Threading.Thread::Join_internal internal call
20039
20040         * threads-dummy.h:
20041         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
20042
20043 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
20044
20045         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
20046         mono_string_intern () to implement the semantics of the ldstr opcode
20047         and the interning of System.Strings.
20048         * icall.c: provide hooks to make String::IsIntern and String::Intern
20049         internalcalls.
20050
20051 2001-09-23  Dick Porter  <dick@ximian.com>
20052
20053         * threads-dummy.c: 
20054         * threads-dummy.h: New files of dummy threading routines
20055
20056         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
20057         support code based on system specifics
20058
20059         Rename PTHREAD_LIBS to THREAD_LIBS
20060         
20061 2001-09-23  Dick Porter  <dick@ximian.com>
20062
20063         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
20064         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
20065         internal calls.
20066         (mono_thread_init): Set up a Thread object instance to return when
20067         the main thread calls Thread.CurrentThread
20068         (mono_thread_cleanup): Wait for all subthreads to exit
20069
20070         * icall.c: New internal calls for System.Threading.Thread::Sleep
20071         (including Schedule) and CurrentThread
20072
20073         * threads.h: New file, to insulate thread-specific stuff from the
20074         rest of the code
20075
20076 2001-09-21  Dick Porter  <dick@ximian.com>
20077
20078         * threads-pthread.h: 
20079         * threads-pthread.c: New file, for handling pthreads-style
20080         threading support.  Start() now starts a new thread and executes
20081         the ThreadStart delegate instance.
20082
20083         * icall.c: Added the internalcall for
20084         System.Threading.Thread::Start_internal
20085
20086         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
20087
20088 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
20089
20090         * loader.c: work around the different signatures for delegates
20091         constructors csc generates in compiled code vs the ones compiled in mscorlib.
20092
20093 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20094
20095         * class.h, class.c: add mono_class_get_field_from_name ().
20096         * *: Fix C comments and other ANSI C issues.
20097
20098 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
20099
20100         * endian.h, assembly.c: fix some endianness issues.
20101
20102 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
20103
20104         * loader.h, load.c: add delegate_class to mono_defaults.
20105         Handle runtime provided methods in mono_get_method ().
20106
20107 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
20108
20109         * loader.c (mono_get_method): use pinvoke for internal call
20110
20111         * icall.c: use pinvoke for internal call
20112
20113         * loader.c (method_from_memberref): set the method name
20114
20115 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
20116
20117         * metadata.c: help the compiler generate better code for
20118         mono_class_from_mono_type ().
20119
20120 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
20121
20122         * class.c (mono_class_metadata_init): delayed computing of the
20123         class size to mono_class_metadata_init ()
20124
20125 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
20126
20127         * class.c, class.h: add an interfaces member to MonoClass.
20128         * image.c, image.h: add assembly_name field to MonoImage
20129         from the assembly table.
20130         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
20131
20132 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
20133
20134         * class.c: Handle Array in mono_class_from_mono_type ().
20135         * metadata.c, pedump.c: some endian fixes.
20136
20137 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
20138
20139         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
20140         * metadata.c: fix small problem introduced with the latest commit.
20141
20142 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
20143
20144         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
20145         We don't need a MonoMetadata pointer anymore to compare signatures in
20146         mono_metadata_signature_equal (), update callers.
20147         Reduced memory usage an number of allocations for MonoMethodHeader and
20148         MonoMethodSignature.
20149
20150 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
20151
20152         * metadata.c: added compare for szarray.
20153
20154 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
20155
20156         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
20157         and add a couple more types to it and mono_defaults. Give an hint on
20158         classes that need implementing in our corlib and are referenced
20159         in mscorlib.
20160
20161 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
20162
20163         * class.h, class.c: keep track if a class is also an Enum.
20164         * loader.c: Implement a couple more types for use in libffi
20165         marshalling. Gives better diagnostics when failing to dlopen
20166         a library. Set method->klass for P/Invoke methods, too.
20167
20168 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
20169
20170         * class.c, class.h: add a MonoType this_arg to MonoClass that
20171         represents a pointer to an object of the class' type that
20172         can be used by the interpreter and later the type cache.
20173         Add best guess alignment info for valuetype objects.
20174
20175 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
20176
20177         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
20178         into MonoType: one less level of indirection and allocation and
20179         simplifies quite a bit of code. Added cache for MonoTypes that are
20180         used frequently, so that we don't need to allocate them all the time.
20181
20182 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
20183
20184         * class.c (mono_class_create_from_typedef): System.Enum is also a
20185         value type, although it does not derive from System.ValueType
20186         (maybe a bug in the ms compiler?)
20187
20188         * metadata.c (mono_type_size): return the right size for value types
20189
20190         * loader.c (mono_get_method): only initialize method header if not abstract
20191
20192         * class.c (mono_class_from_mono_type): use mono_default values. 
20193
20194 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
20195
20196         * *: use MonoClass pointers instead of <type_tokens>
20197         
20198         * class.h: new flag: metadata_inited.
20199
20200         * class.c (mono_class_metadata_init): impl.
20201         (mono_class_instance_size): impl.
20202         (mono_class_data_size): impl.
20203
20204 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20205
20206         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
20207         MonoClass now has the name and name_space fields. 
20208         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
20209         mono_get_method () takes and optional MonoClass as argument.
20210         Removed mono_typedef_from_name() and added mono_class_token_from_name()
20211         instead that takes advantage of a map from class names to typedef
20212         tokens in MonoImage.
20213
20214 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
20215
20216         * metadata.c: zero is not a valid alignment boundary.
20217         Merge MONO_TYPE_VOID in default decoding code.
20218
20219 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
20220
20221         * image.h: merged MonoMetadata into MonoImage
20222
20223         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
20224         identify the type of elements.
20225
20226 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
20227
20228         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
20229         * cil-coff.h: split MonoMSDOSHeader and add size info.
20230         * image.c: add some consistency checks.
20231         * metadata.c: fix row size computation: one programmer
20232         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
20233         add explanation for the locator routine.
20234         Fix decoding of size in method header.
20235         
20236 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
20237
20238         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
20239         (g_concat_dir_and_file): Bring g_concat_dir_and_file
20240         function from gnome-libs.  This uses the right path separator
20241         based on the OS, and also works around a bug in some systems where
20242         a double slash is not allowed. 
20243         (default_assembly_name_resolver): Use g_concat_dir_and_file
20244         (mono_assembly_open): ditto.
20245
20246 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
20247
20248         * metadata.c (mono_metadata_signature_equal): impl.
20249
20250         * *: void is now a realy MonoType (instead of using NULL)
20251         
20252         * metadata.c (do_mono_metadata_parse_type): use
20253         mono_metadata_parse_type to parse void value.
20254
20255 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
20256
20257         * metadata.c, metadata.h: in the signature and method header store
20258         only the space required for holding the loca vars and incoming arguments.
20259
20260 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
20261
20262         * metadata.c (do_mono_metadata_parse_type): treat void like any
20263         other type (instead of assigning NULL);
20264
20265 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
20266
20267         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
20268
20269 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
20270
20271         * image.c (do_mono_image_open): added a cache for arrays.
20272
20273 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
20274
20275         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
20276         decode a single column from a row in a metadata table and changes
20277         to take advantage of it in the typedef locator (gives a nice speed up).
20278         Store offset info for function params.
20279
20280 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
20281
20282         * image.h (MONO_IMAGE_IS_CORLIB): removed 
20283
20284 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
20285
20286         * assembly.c: how could mono_assembly_close () had ever worked?
20287         * metadata.c, metadata.h: provide offset info for local vars.
20288         Implement mono_type_size () to take care of alignment as well
20289         as size (it was mono_field_type_size in cli/class.c before).
20290
20291 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
20292
20293         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
20294
20295         * assembly.h (CORLIB_NAME): set to corlib.dll
20296
20297         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
20298
20299 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
20300
20301         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
20302         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
20303         tokentype.h: massive namespace cleanup.
20304
20305 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
20306
20307         * metadata.h, metadata.c: decode exception clauses when parsing method header.
20308
20309 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
20310
20311         * metadata.c (mono_metadata_free_type): added check for type !=
20312         NULL (void) before calling mono_metadata_free_type()
20313
20314 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
20315
20316         * metadata.h, row_indexes.h: added header with enumerations to use
20317         to index in the columns from tables in metadata and to decode coded
20318         tokens: we should start using this instead of embedding magic numbers
20319         all over the code.
20320
20321 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
20322
20323         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
20324         Move metadata_t info from cli_image_info_t to MonoImage, where
20325         it's easily accessible. Changed all the uses accordingly.
20326         Added the method and class caches to MonoImage.
20327         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
20328         and mono_metadata_decode_value () signature to be more consistent
20329         with the other parse functions (and simplify code). Taken advantage
20330         of zero-length array allocation with GCC. Removed reduntant (and
20331         wrong) MonoFieldType struct and use MonoParam instead. Changed
20332         mono_metadata_parse_field_type () to use common code for parsing.
20333         Added mono_metadata_typedef_from_field () and
20334         mono_metadata_typedef_from_method () to lookup a typedef index from a
20335         field or method token.
20336         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
20337
20338 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
20339
20340         * metadata.c (mono_metadata_parse_field_type): Implement. 
20341         (do_mono_metadata_parse_type): Split engine from
20342         mono_metadata_parse_type, so that we can create smaller structures
20343         for things that just have one pointer to the MonoType (look at
20344         the MonoFieldType)
20345
20346 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
20347
20348         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
20349         as Jan Gray found out, it is incorrect. 
20350
20351 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
20352
20353         * assembly.c: Implement asssembly loading.  This loads an image
20354         and loads all the referenced assemblies.  Come to think of it, we
20355         could always do lazy loading of the assemblies. 
20356
20357         * image.c (mono_image_open): Keep loaded images in a hashtable.
20358
20359         * image.h (MonoImage): Add reference count.
20360
20361 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
20362
20363         * assembly.c (mono_assembly_open): Keep track of the file name in
20364         case the assembly has no ASSEMBLY table.
20365
20366         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
20367         from get.c here.
20368
20369 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
20370
20371         * metadata.c, metadata.h: decode local vars in method header
20372         parse function. Change callers accordingly.
20373
20374 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
20375
20376         * metadata.h, cil-coff.h: protect against multiple inclusion.
20377         Added some new structures to hold information decoded from metadata:
20378         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
20379         and relevant decoding/free functions.
20380         * metadata.c: implement decoding functions. Add warning for out of bounds
20381         index in mono_metadata_locate(). Implement mono_get_method () to retreive
20382         all the info about a method signature and invocation. Remove check on
20383         uninitialized local var in parse_mh() and fix memory leak.
20384
20385 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
20386
20387         * metadata.h: More macros.
20388
20389         * tokentype.h: New file.
20390
20391 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
20392
20393         * assembly.c: added a consistency check and initialize
20394         some structures with g_new0().
20395         * metadata.c: fixed a couple more bugs in table size computation
20396         and add other checks for out-of bound access to metadata.
20397
20398 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
20399
20400         * metatada.c: fix bugs computing table sizes. Spew a
20401         warning when index in string heap is out of bounds.
20402
20403 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
20404
20405         * metadata.h: Add a couple of macros to manipulate tokens. 
20406
20407 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20408
20409         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
20410         cli_section_tables).
20411
20412 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
20413
20414         * metadata.c (mono_metadata_user_string): New function, provides
20415         access to the UserString heap. 
20416
20417 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
20418
20419         * metadata.c: Add inline documentation.
20420
20421 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
20422
20423         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
20424         files. 
20425
20426 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
20427
20428         * typeattr.h: New file, TypeAttribute flags. 
20429
20430 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
20431
20432         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
20433         mono_assembly_ensure_section): Section loading code.
20434         (load_section_tables): Load the sections.
20435
20436         * mono/metadata/metadata.c (mono_metadata_locate_token,
20437         mono_metadata_locate): Functions to locate the information
20438         definition given a token or a table and an index.
20439         (mono_metadata_compute_table_bases): New.
20440         (compute_size): New function to compute the sizes of the various
20441         tables.
20442
20443         * mono/metadata/metadata.h: Finish listing the different index
20444         types. 
20445
20446         * mono/metadata/pedump.c: Improve to dump new information.
20447
20448 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
20449
20450         * mono/metadata/metadata.c: Entered all the tables matching
20451         Beta2. 
20452
20453         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
20454
20455
20456